diff --git a/package.json b/package.json index 1c2da9238..a62fa1e2a 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "dependencies": { "@appquality/languages": "1.4.3", - "@appquality/unguess-design-system": "4.0.23", + "@appquality/unguess-design-system": "4.0.26", "@headwayapp/react-widget": "^0.0.4", "@reduxjs/toolkit": "^1.8.0", "@sentry/react": "^8.32.0", @@ -104,7 +104,7 @@ "playwright-i18next-fixture": "^1.0.0", "prettier": "^2.6.2", "ts-node": "^10.9.2", - "vite": "^5.2.13", + "vite": "^5.4.12", "vite-tsconfig-paths": "^4.3.2" }, "config": { diff --git a/src/assets/empty-archive.svg b/src/assets/empty-archive.svg new file mode 100644 index 000000000..88d18b47f --- /dev/null +++ b/src/assets/empty-archive.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/common/Pages.tsx b/src/common/Pages.tsx index 87a88abc8..d946eb845 100644 --- a/src/common/Pages.tsx +++ b/src/common/Pages.tsx @@ -19,6 +19,7 @@ import LoginPage from 'src/pages/LoginPage'; import NotFound from 'src/pages/NotFound/NotFound'; import MediaNotFound from 'src/pages/NotFound/MediaNotFound'; import Service from 'src/pages/Service'; +import Template from 'src/pages/Template'; import Catalog from 'src/pages/Services'; import Manual from 'src/pages/Manual'; import Videos from 'src/pages/Videos'; @@ -85,6 +86,10 @@ const Pages = () => { path={`/${langPrefix}/services/:templateId`} element={} /> + } + /> } diff --git a/src/common/components/BugDetail/BugDuplicates/index.tsx b/src/common/components/BugDetail/BugDuplicates/index.tsx index c4e047170..455989014 100644 --- a/src/common/components/BugDetail/BugDuplicates/index.tsx +++ b/src/common/components/BugDetail/BugDuplicates/index.tsx @@ -1,7 +1,6 @@ -import { Accordion, LG, Button } from '@appquality/unguess-design-system'; +import { Button, AccordionNew } from '@appquality/unguess-design-system'; import { useState } from 'react'; import { Trans, useTranslation } from 'react-i18next'; -import { appTheme } from 'src/app/theme'; import { useBugPreviewContext } from 'src/pages/Bugs/Content/context/BugPreviewContext'; import { useSiblings } from './useSiblings'; import { BugDuplicatesList } from './BugDuplicatesList'; @@ -31,29 +30,20 @@ export const BugDuplicates = ({ }; return ( - - - - - - - {t('__BUGS_PAGE_BUG_DETAIL_DUPLICATES_ACCORDION_TITLE')} - - - - + + }> + + + ) : null} - - - + + + ); }; diff --git a/src/common/components/BugDetail/Details.tsx b/src/common/components/BugDetail/Details.tsx index ae3457a3c..04aa09f91 100644 --- a/src/common/components/BugDetail/Details.tsx +++ b/src/common/components/BugDetail/Details.tsx @@ -1,8 +1,7 @@ -import { Accordion, LG } from '@appquality/unguess-design-system'; +import { AccordionNew } from '@appquality/unguess-design-system'; import { useTranslation } from 'react-i18next'; import { Bug, BugAdditionalField } from 'src/features/api'; import styled from 'styled-components'; -import { appTheme } from 'src/app/theme'; import { ReactComponent as DetailsIcon } from 'src/assets/icons/details-icon.svg'; import { useBugPreviewContext } from 'src/pages/Bugs/Content/context/BugPreviewContext'; import DetailsItems from './DetailsItems'; @@ -12,15 +11,6 @@ const Container = styled.div` width: 100%; margin-bottom: ${({ theme }) => theme.space.lg}; `; -const Title = styled.div` - display: flex; - justify-content: flex-start; - align-items: center; - - > svg { - fill: ${({ theme }) => theme.palette.grey[600]}; - } -`; export default ({ bug, @@ -47,32 +37,23 @@ export default ({ return ( - - - - - - <DetailsIcon - style={{ - marginRight: appTheme.space.base * 3, - color: appTheme.palette.grey[600], - }} - /> - <LG isBold>{t('__BUGS_PAGE_BUG_DETAIL_DETAILS_LABEL')}</LG> - - - - + + }> + + + - - - + + + ); }; diff --git a/src/common/components/LayoutWrapper.tsx b/src/common/components/LayoutWrapper.tsx index 53d4448d3..e01821627 100644 --- a/src/common/components/LayoutWrapper.tsx +++ b/src/common/components/LayoutWrapper.tsx @@ -1,3 +1,4 @@ +import React from 'react'; import styled from 'styled-components'; const Container = styled.div<{ @@ -5,13 +6,13 @@ const Container = styled.div<{ }>` width: 100%; box-sizing: border-box; - padding: 0 ${({ theme }) => theme.space.xxl}; + padding: 0 ${({ theme }) => theme.space.md}; margin: 0 auto; max-width: ${({ theme, isNotBoxed }) => isNotBoxed ? '100%' : theme.breakpoints.xxl}; - @media (max-width: ${({ theme }) => theme.breakpoints.sm}) { - padding: 0 ${({ theme }) => theme.space.md}; + @media (min-width: ${({ theme }) => theme.breakpoints.sm}) { + padding: 0 ${({ theme }) => theme.space.xxl}; } `; diff --git a/src/common/components/ScrollingGrid.tsx b/src/common/components/ScrollingGrid.tsx new file mode 100644 index 000000000..e98c47415 --- /dev/null +++ b/src/common/components/ScrollingGrid.tsx @@ -0,0 +1,253 @@ +import { appTheme } from 'src/app/theme'; +import styled from 'styled-components'; +import { ReactComponent as ArrowLeft } from '@zendeskgarden/svg-icons/src/16/chevron-left-stroke.svg'; +import { ReactComponent as ArrowRight } from '@zendeskgarden/svg-icons/src/16/chevron-right-stroke.svg'; +import { useCallback, useEffect, useRef, useState } from 'react'; + +const scrollingContainerItemsGap = appTheme.space.md; + +const StyledGrid = styled.div` + width: 100%; + container-type: inline-size; + container-name: scrollingContainer; + flex-wrap: nowrap; + display: flex; + gap: ${scrollingContainerItemsGap}; + overflow-x: auto; + padding-bottom: ${(p) => p.theme.space.xl}; + scroll-snap-type: x mandatory; + scroll-behavior: smooth; + + // Hide scrollbar + &::-webkit-scrollbar { + display: none; + } + -ms-overflow-style: none; + scrollbar-width: none; +`; + +const StyledItem = styled.div` + overflow: visible; + flex: 0 0 auto; + width: calc( + 100% - ${(p) => p.theme.space.md}*2 - ${scrollingContainerItemsGap} + ); + scroll-snap-align: start; + scroll-margin: ${(p) => p.theme.space.md}; + + &:first-child { + margin-left: ${(p) => p.theme.space.xxl}; + } + &:last-child { + margin-right: ${(p) => p.theme.space.xxl}; + scroll-snap-align: end; + } + + @media (min-width: ${(p) => p.theme.breakpoints.sm}) { + scroll-margin: ${(p) => p.theme.space.xxl}; + } + + @container scrollingContainer (min-width: 500px) { + width: calc( + ( + 100% - ${scrollingContainerItemsGap} - ${(p) => p.theme.space.xxl} - + ${(p) => p.theme.space.xxl} + ) / 2 + ); + } + @container scrollingContainer (min-width: 900px) { + width: calc( + ( + 100% - ${scrollingContainerItemsGap}*2 - ${(p) => p.theme.space.xxl} - + ${(p) => p.theme.space.xxl} + ) / 3.1 + ); + } + @container scrollingContainer (min-width: 1410px) { + width: calc( + ( + 100% - ${scrollingContainerItemsGap}*3 - ${(p) => p.theme.space.xxl} - + ${(p) => p.theme.space.xxl} + ) / 3.2 + ); + } +`; + +const GridContainer = styled.div` + position: relative; + margin-right: -${(p) => p.theme.space.md}; + margin-left: -${(p) => p.theme.space.md}; + .navigation-left, + .navigation-right { + display: none; + } + + @media (min-width: ${(p) => p.theme.breakpoints.sm}) { + margin-right: -${(p) => p.theme.space.xxl}; + margin-left: -${(p) => p.theme.space.xxl}; + } + @media (min-width: ${(p) => p.theme.breakpoints.md}) { + .navigation-left, + .navigation-right { + // reset button properties + appearance: none; + border: none; + background: none; + padding: 0; + cursor: auto; + + display: flex; + justify-content: center; + align-items: center; + position: absolute; + top: 0; + bottom: ${(p) => p.theme.space.xl}; + width: ${(p) => p.theme.space.xxl}; + min-width: ${(p) => p.theme.space.xxl}; + opacity: 0; + transition: opacity 0.3s; + z-index: 2; + + &:hover:not(.disabled) { + opacity: 1; + pointer-events: auto; + cursor: pointer; + } + } + .navigation-left { + left: 0; + background: linear-gradient( + to left, + rgba(255, 255, 255, 0.5), + ${(p) => p.theme.palette.grey[100]} + ); + } + .navigation-right { + right: 0; + background: linear-gradient( + to right, + rgba(255, 255, 255, 0.5), + ${(p) => p.theme.palette.grey[100]} + ); + } + } + @media (min-width: ${(p) => p.theme.breakpoints.xxl}) { + &::after, + &::before { + position: absolute; + z-index: 1; + display: block; + content: ''; + top: 0; + bottom: 0; + width: ${(p) => p.theme.space.xxl}; + min-width: ${(p) => p.theme.space.xxl}; + pointer-events: none; + } + &::after { + right: 0; + background: linear-gradient( + to right, + rgba(255, 255, 255, 0), + ${(p) => p.theme.palette.grey[100]} + ); + } + &::before { + background: linear-gradient( + to left, + rgba(255, 255, 255, 0), + ${(p) => p.theme.palette.grey[100]} + ); + left: 0; + } + } +`; + +const ScrollingGridComponent = ({ + children, + ...props +}: React.HTMLAttributes) => { + const scrollingContainer = useRef(null); + const wrapperContainer = useRef(null); + const [isLeftDisabled, setIsLeftDisabled] = useState(true); + const [isRightDisabled, setIsRightDisabled] = useState(true); + const scrollLeft = () => { + if (scrollingContainer.current) { + scrollingContainer.current.scrollBy({ + left: -(scrollingContainer.current.offsetWidth / 2), + behavior: 'smooth', + }); + } + }; + const scrollRight = () => { + if (scrollingContainer.current) { + scrollingContainer.current.scrollBy({ + left: scrollingContainer.current.offsetWidth / 2, + behavior: 'smooth', + }); + } + }; + + const handleScroll = useCallback(() => { + if (scrollingContainer.current) { + if (scrollingContainer.current.scrollLeft === 0) { + setIsLeftDisabled(true); + } else { + setIsLeftDisabled(false); + } + if ( + Math.ceil( + scrollingContainer.current.scrollLeft + + scrollingContainer.current.offsetWidth + ) >= Math.ceil(scrollingContainer.current.scrollWidth) + ) { + setIsRightDisabled(true); + } else { + setIsRightDisabled(false); + } + } + }, []); + + useEffect(() => { + handleScroll(); + if (scrollingContainer.current) { + scrollingContainer.current.addEventListener('scroll', handleScroll); + } + return () => { + if (scrollingContainer.current) { + scrollingContainer.current.removeEventListener('scroll', handleScroll); + } + }; + }, []); + + return ( + + + {children} + + + ); +}; + +export const ScrollingGrid = + ScrollingGridComponent as typeof ScrollingGridComponent & { + Item: typeof StyledItem; + }; + +ScrollingGrid.Item = StyledItem; diff --git a/src/common/components/SectionTitle.tsx b/src/common/components/SectionTitle.tsx index ec9e1a38b..4846c8493 100644 --- a/src/common/components/SectionTitle.tsx +++ b/src/common/components/SectionTitle.tsx @@ -23,6 +23,10 @@ export const SectionTitle = ({ > {title} {children} - {subtitle && {subtitle}} + {subtitle && ( + + {subtitle} + + )} ); diff --git a/src/common/components/ServiceTiles/index.tsx b/src/common/components/ServiceTiles/index.tsx new file mode 100644 index 000000000..df322803a --- /dev/null +++ b/src/common/components/ServiceTiles/index.tsx @@ -0,0 +1,94 @@ +import { ServiceTile, SM, Tag } from '@appquality/unguess-design-system'; +import { t } from 'i18next'; +import { useAppDispatch } from 'src/app/hooks'; +import { appTheme } from 'src/app/theme'; +import { + openDrawer, + openWizard, + setExpressTemplateId, + setExpressTypeId, +} from 'src/features/express/expressSlice'; +import { useCampaignTemplates } from 'src/hooks/useCampaignTemplates'; +import { useFeatureFlag } from 'src/hooks/useFeatureFlag'; +import { ExpressWizardContainer } from 'src/pages/ExpressWizard'; +import { ExpressDrawer } from 'src/pages/ExpressWizard/drawer'; +import styled, { useTheme } from 'styled-components'; +import { ScrollingGrid } from 'src/common/components/ScrollingGrid'; + +const AdditionalInfoTag = styled(Tag)` + img { + width: 12px; + margin-right: ${({ theme }) => theme.space.xs}; + } +`; + +const ServiceTiles = () => { + const { data } = useCampaignTemplates(); + const { hasFeatureFlag } = useFeatureFlag(); + const theme = useTheme(); + const dispatch = useAppDispatch(); + + if (!hasFeatureFlag('express')) return null; + + return ( + <> + { + dispatch(openWizard()); + }} + /> + + + {data.map((template) => { + const icon = {template.title; + const superscript = template?.Price?.previous_price; + const outputs = (template.output || []).map((output) => { + const { text, iconUrl } = output; + return ( + + icon + {text} + + ); + }); + + return ( + + {outputs} + } + onClick={() => { + dispatch(setExpressTypeId(template.expressId)); + dispatch(setExpressTemplateId(template.templateId)); + dispatch(openDrawer()); + }} + /> + + ); + })} + + + {t('__EXPRESS__SERVICE_TILES_DISCLAIMER')} + + + ); +}; + +export { ServiceTiles }; diff --git a/src/common/components/navigation/workspacesDropdown/index.tsx b/src/common/components/navigation/workspacesDropdown/index.tsx index 10ba2827f..483e4e1a0 100644 --- a/src/common/components/navigation/workspacesDropdown/index.tsx +++ b/src/common/components/navigation/workspacesDropdown/index.tsx @@ -6,7 +6,6 @@ import { retrieveComponentStyles, } from '@appquality/unguess-design-system'; import { useRef, useState } from 'react'; -import TagManager from 'react-gtm-module'; import { useNavigate } from 'react-router-dom'; import { useAppDispatch, useAppSelector } from 'src/app/hooks'; import { ReactComponent as WorkspacesIcon } from 'src/assets/icons/workspace-icon.svg'; @@ -17,6 +16,7 @@ import { closeSidebar, setWorkspace, } from 'src/features/navigation/navigationSlice'; +import { useSendGTMevent } from 'src/hooks/useGTMevent'; import { selectWorkspaces } from 'src/features/workspaces/selectors'; import { useActiveWorkspace } from 'src/hooks/useActiveWorkspace'; import { useLocalizeRoute } from 'src/hooks/useLocalizedRoute'; @@ -92,21 +92,15 @@ export const WorkspacesDropdown = () => { const [inputValue, setInputValue] = useState(''); const dispatch = useAppDispatch(); const { isSingle, options } = useOptions(); - const { userData: user } = useAppSelector((state) => state.user); const navigate = useNavigate(); const homeRoute = useLocalizeRoute(''); + const sendGTMEvent = useSendGTMevent(); - const toggleGtmWorkspaceChange = (workspaceName: string) => { - TagManager.dataLayer({ - dataLayer: { - event: 'workspace_change', - role: user.role, - wp_user_id: user.tryber_wp_user_id, - tester_id: user.id, - name: user.name, - email: user.email, - company: workspaceName, - }, + const toggleGtmWorkspaceChange = () => { + sendGTMEvent({ + event: 'workspaces-action', + category: '', + action: 'workspace_change', }); }; @@ -115,7 +109,7 @@ export const WorkspacesDropdown = () => { saveWorkspaceToLs(workspace); API.workspacesById(workspace.id).then((ws) => { dispatch(setWorkspace(ws)); - toggleGtmWorkspaceChange(ws.company); + toggleGtmWorkspaceChange(); dispatch(closeSidebar()); navigate(homeRoute, { replace: true }); }); diff --git a/src/constants.ts b/src/constants.ts index 69bfabbdb..365e61227 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -2,7 +2,6 @@ export const FEATURE_FLAG_EXPRESS = 'exploratory-express'; export const FEATURE_FLAG_SKY_JOTFORM = 'sky-custom-jotform'; export const FEATURE_FLAG_CATALOG = 'catalog-pages'; export const FEATURE_FLAG_TAGGING_TOOL = 'tagging-tool'; -export const FEATURE_FLAG_AI_TRANSLATION = 'ai-transcript-translations'; export const EXPRESS_1_CAMPAIGN_TYPE_ID = 46; export const EXPRESS_2_CAMPAIGN_TYPE_ID = 51; export const EXPRESS_3_CAMPAIGN_TYPE_ID = 52; diff --git a/src/features/backoffice/config.ts b/src/features/backoffice/config.ts index e575f767d..6451acc7c 100644 --- a/src/features/backoffice/config.ts +++ b/src/features/backoffice/config.ts @@ -10,6 +10,7 @@ const config: ConfigFile = { /express/i, /express-types/i, /manuals/i, + /templates/i, ], outputFile: 'index.ts', exportName: 'unguessStrapi', diff --git a/src/features/backoffice/index.ts b/src/features/backoffice/index.ts index c1e23627a..a61e517e5 100644 --- a/src/features/backoffice/index.ts +++ b/src/features/backoffice/index.ts @@ -268,6 +268,121 @@ const injectedRtkApi = api.injectEndpoints({ body: queryArg.serviceLocalizationRequest, }), }), + getTemplates: build.query({ + query: (queryArg) => ({ + url: `/templates`, + params: { + sort: queryArg.sort, + pagination: queryArg.pagination, + fields: queryArg.fields, + populate: queryArg.populate, + }, + }), + }), + postTemplates: build.mutation< + PostTemplatesApiResponse, + PostTemplatesApiArg + >({ + query: (queryArg) => ({ + url: `/templates`, + method: 'POST', + body: queryArg.templateRequest, + }), + }), + getTemplatesById: build.query< + GetTemplatesByIdApiResponse, + GetTemplatesByIdApiArg + >({ + query: (queryArg) => ({ url: `/templates/${queryArg.id}` }), + }), + putTemplatesById: build.mutation< + PutTemplatesByIdApiResponse, + PutTemplatesByIdApiArg + >({ + query: (queryArg) => ({ + url: `/templates/${queryArg.id}`, + method: 'PUT', + body: queryArg.templateRequest, + }), + }), + deleteTemplatesById: build.mutation< + DeleteTemplatesByIdApiResponse, + DeleteTemplatesByIdApiArg + >({ + query: (queryArg) => ({ + url: `/templates/${queryArg.id}`, + method: 'DELETE', + }), + }), + postTemplatesByIdLocalizations: build.mutation< + PostTemplatesByIdLocalizationsApiResponse, + PostTemplatesByIdLocalizationsApiArg + >({ + query: (queryArg) => ({ + url: `/templates/${queryArg.id}/localizations`, + method: 'POST', + body: queryArg.templateLocalizationRequest, + }), + }), + getUseCaseTemplates: build.query< + GetUseCaseTemplatesApiResponse, + GetUseCaseTemplatesApiArg + >({ + query: (queryArg) => ({ + url: `/use-case-templates`, + params: { + sort: queryArg.sort, + pagination: queryArg.pagination, + fields: queryArg.fields, + populate: queryArg.populate, + }, + }), + }), + postUseCaseTemplates: build.mutation< + PostUseCaseTemplatesApiResponse, + PostUseCaseTemplatesApiArg + >({ + query: (queryArg) => ({ + url: `/use-case-templates`, + method: 'POST', + body: queryArg.useCaseTemplateRequest, + }), + }), + getUseCaseTemplatesById: build.query< + GetUseCaseTemplatesByIdApiResponse, + GetUseCaseTemplatesByIdApiArg + >({ + query: (queryArg) => ({ url: `/use-case-templates/${queryArg.id}` }), + }), + putUseCaseTemplatesById: build.mutation< + PutUseCaseTemplatesByIdApiResponse, + PutUseCaseTemplatesByIdApiArg + >({ + query: (queryArg) => ({ + url: `/use-case-templates/${queryArg.id}`, + method: 'PUT', + body: queryArg.useCaseTemplateRequest, + }), + }), + deleteUseCaseTemplatesById: build.mutation< + DeleteUseCaseTemplatesByIdApiResponse, + DeleteUseCaseTemplatesByIdApiArg + >({ + query: (queryArg) => ({ + url: `/use-case-templates/${queryArg.id}`, + method: 'DELETE', + }), + }), + postUseCaseTemplatesByIdLocalizations: build.mutation< + PostUseCaseTemplatesByIdLocalizationsApiResponse, + PostUseCaseTemplatesByIdLocalizationsApiArg + >({ + query: (queryArg) => ({ + url: `/use-case-templates/${queryArg.id}/localizations`, + method: 'POST', + body: queryArg.useCaseTemplateLocalizationRequest, + }), + }), getUseCaseTemplateCategories: build.query< GetUseCaseTemplateCategoriesApiResponse, GetUseCaseTemplateCategoriesApiArg @@ -529,6 +644,88 @@ export type PostServicesByIdLocalizationsApiArg = { id: string; serviceLocalizationRequest: ServiceLocalizationRequest; }; +export type GetTemplatesApiResponse = /** status 200 OK */ TemplateListResponse; +export type GetTemplatesApiArg = { + /** Sort by attributes ascending (asc) or descending (desc) */ + sort?: string; + pagination?: { + withCount?: boolean; + page?: number; + pageSize?: number; + start?: number; + limit?: number; + }; + /** Fields to return (ex: title,author) */ + fields?: string; + /** Relations to return */ + populate?: string; +}; +export type PostTemplatesApiResponse = /** status 200 OK */ TemplateResponse; +export type PostTemplatesApiArg = { + templateRequest: TemplateRequest; +}; +export type GetTemplatesByIdApiResponse = /** status 200 OK */ TemplateResponse; +export type GetTemplatesByIdApiArg = { + id: string; +}; +export type PutTemplatesByIdApiResponse = /** status 200 OK */ TemplateResponse; +export type PutTemplatesByIdApiArg = { + id: string; + templateRequest: TemplateRequest; +}; +export type DeleteTemplatesByIdApiResponse = /** status 200 OK */ number; +export type DeleteTemplatesByIdApiArg = { + id: string; +}; +export type PostTemplatesByIdLocalizationsApiResponse = + /** status 200 OK */ TemplateLocalizationResponse; +export type PostTemplatesByIdLocalizationsApiArg = { + id: string; + templateLocalizationRequest: TemplateLocalizationRequest; +}; +export type GetUseCaseTemplatesApiResponse = + /** status 200 OK */ UseCaseTemplateListResponse; +export type GetUseCaseTemplatesApiArg = { + /** Sort by attributes ascending (asc) or descending (desc) */ + sort?: string; + pagination?: { + withCount?: boolean; + page?: number; + pageSize?: number; + start?: number; + limit?: number; + }; + /** Fields to return (ex: title,author) */ + fields?: string; + /** Relations to return */ + populate?: string; +}; +export type PostUseCaseTemplatesApiResponse = + /** status 200 OK */ UseCaseTemplateResponse; +export type PostUseCaseTemplatesApiArg = { + useCaseTemplateRequest: UseCaseTemplateRequest; +}; +export type GetUseCaseTemplatesByIdApiResponse = + /** status 200 OK */ UseCaseTemplateResponse; +export type GetUseCaseTemplatesByIdApiArg = { + id: string; +}; +export type PutUseCaseTemplatesByIdApiResponse = + /** status 200 OK */ UseCaseTemplateResponse; +export type PutUseCaseTemplatesByIdApiArg = { + id: string; + useCaseTemplateRequest: UseCaseTemplateRequest; +}; +export type DeleteUseCaseTemplatesByIdApiResponse = /** status 200 OK */ number; +export type DeleteUseCaseTemplatesByIdApiArg = { + id: string; +}; +export type PostUseCaseTemplatesByIdLocalizationsApiResponse = + /** status 200 OK */ UseCaseTemplateLocalizationResponse; +export type PostUseCaseTemplatesByIdLocalizationsApiArg = { + id: string; + useCaseTemplateLocalizationRequest: UseCaseTemplateLocalizationRequest; +}; export type GetUseCaseTemplateCategoriesApiResponse = /** status 200 OK */ UseCaseTemplateCategoryListResponse; export type GetUseCaseTemplateCategoriesApiArg = { @@ -1141,47 +1338,110 @@ export type CategoryListResponse = { attributes?: {}; }[]; }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { + templates?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + icon?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -1197,14 +1457,6 @@ export type CategoryListResponse = { }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -1214,397 +1466,12183 @@ export type CategoryListResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }[]; - }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { data?: { id?: string; - attributes?: {}; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { + }; + requirements?: { id?: string; - title?: string; description?: string; - suggestions?: { + list?: { id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; + item?: string; }[]; }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { + why?: { + id?: string; + reasons?: { id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }; + }; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + meta?: { + pagination?: { + page?: number; + pageSize?: number; + pageCount?: number; + total?: number; + }; + }; +}; +export type Error = { + data?: ((object | null) | (any | null)) | null; + error: { + status?: number; + name?: string; + message?: string; + details?: object; + }; +}; +export type CategoryResponse = { + data?: { + id?: string; + attributes?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }; + }; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + meta?: object; +}; +export type CategoryRequest = { + data?: { + Name?: string; + Slug?: string; + }; +}; +export type CategoryLocalizationResponse = { + id?: string; + Name?: string; + Slug?: string; + Description?: string; + services?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }; + }; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; +}; +export type CategoryLocalizationRequest = { + Name?: string; + Slug?: string; +}; +export type ExpressListResponse = { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + meta?: { + pagination?: { + page?: number; + pageSize?: number; + pageCount?: number; + total?: number; + }; + }; +}; +export type ExpressResponse = { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + meta?: object; +}; +export type ExpressRequest = { + data?: { + name?: string; + slug?: string; + }; +}; +export type ExpressTypeListResponse = { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + meta?: { + pagination?: { + page?: number; + pageSize?: number; + pageCount?: number; + total?: number; + }; + }; +}; +export type ExpressTypeResponse = { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + meta?: object; +}; +export type ExpressTypeRequest = { + data?: { + title?: string; + description?: string; + webhook_url?: string; + }; +}; +export type ExpressTypeLocalizationResponse = { + id?: string; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; +}; +export type ExpressTypeLocalizationRequest = { + title?: string; + description?: string; + webhook_url?: string; +}; +export type ManualListResponse = { + data?: { + id?: string; + attributes?: { + title?: string; + content?: string; + campaignId?: number; + token?: string; + help_links?: { + data?: { + id?: string; + attributes?: { + title?: string; + url?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + meta?: { + pagination?: { + page?: number; + pageSize?: number; + pageCount?: number; + total?: number; + }; + }; +}; +export type ManualResponse = { + data?: { + id?: string; + attributes?: { + title?: string; + content?: string; + campaignId?: number; + token?: string; + help_links?: { + data?: { + id?: string; + attributes?: { + title?: string; + url?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + meta?: object; +}; +export type ManualRequest = { + data?: { + title?: string; + content?: string; + campaignId?: number; + token?: string; + }; +}; +export type ManualLocalizationResponse = { + id?: string; + title?: string; + content?: string; + campaignId?: number; + token?: string; + help_links?: { + data?: { + id?: string; + attributes?: { + title?: string; + url?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; +}; +export type ManualLocalizationRequest = { + title?: string; + content?: string; + campaignId?: number; + token?: string; +}; +export type ServiceListResponse = { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }; + }; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + meta?: { + pagination?: { + page?: number; + pageSize?: number; + pageCount?: number; + total?: number; + }; + }; +}; +export type ServiceResponse = { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }; + }; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + meta?: object; +}; +export type ServiceRequest = { + data?: { + campaign_type?: string; + title?: string; + description?: string; + service_slug?: string; + is_functional?: boolean; + is_featured?: boolean; + sort_order?: number; + }; +}; +export type ServiceLocalizationResponse = { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; }; - }[]; - meta?: { - pagination?: { - page?: number; - pageSize?: number; - pageCount?: number; - total?: number; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; }; }; -}; -export type Error = { - data?: (object | any) | null; - error: { - status?: number; - name?: string; - message?: string; - details?: object; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; }; -}; -export type CategoryResponse = { - data?: { + why?: { id?: string; - attributes?: { - Name?: string; - Slug?: string; - Description?: string; - services?: { + reasons?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { - icon?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + }; }; createdAt?: string; updatedAt?: string; @@ -1623,8 +13661,6 @@ export type CategoryResponse = { }; }[]; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -1640,6 +13676,16 @@ export type CategoryResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -1651,91 +13697,95 @@ export type CategoryResponse = { }; }; }; - campaign_type?: string; - title?: string; - description?: string; - duration_in_days?: number; - environment?: string; - output_image?: { + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + }; }; createdAt?: string; updatedAt?: string; @@ -1754,8 +13804,6 @@ export type CategoryResponse = { }; }[]; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -1771,6 +13819,16 @@ export type CategoryResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -1782,346 +13840,524 @@ export type CategoryResponse = { }; }; }; - requirements?: { - id?: string; - description?: string; - list?: { + updatedBy?: { + data?: { id?: string; - item?: string; - }[]; + attributes?: {}; + }; }; - why?: { - id?: string; - reasons?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - title?: string; - description?: string; - }[]; - advantages?: { - id?: string; - item?: string; - }[]; - }; - what?: { - id?: string; - description?: string; - goal_text?: string; - }; - how?: { - id?: string; - timeline?: { + }; + requirements?: { id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; - }; - title?: string; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; description?: string; - }[]; - }; - service_slug?: string; - is_functional?: boolean; - categories?: { - data?: { + goal_text?: string; + }; + how?: { id?: string; - attributes?: { - Name?: string; - Slug?: string; - Description?: string; - services?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { + timeline?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -2140,6 +14376,8 @@ export type CategoryResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -2155,16 +14393,6 @@ export type CategoryResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -2176,120 +14404,231 @@ export type CategoryResponse = { }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }[]; - }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { - data?: { + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { id?: string; - attributes?: {}; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + }; }; createdAt?: string; updatedAt?: string; @@ -2308,8 +14647,6 @@ export type CategoryResponse = { }; }[]; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -2325,6 +14662,16 @@ export type CategoryResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -2336,187 +14683,139 @@ export type CategoryResponse = { }; }; }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { + updatedBy?: { + data?: { id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + attributes?: {}; + }; }; + localizations?: {}[]; + locale?: string; }; - localizations?: {}[]; - locale?: string; }; }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }; - meta?: object; -}; -export type CategoryRequest = { - data?: { - Name?: string; - Slug?: string; - }; -}; -export type CategoryLocalizationResponse = { - id?: string; - Name?: string; - Slug?: string; - Description?: string; - services?: { - data?: { - id?: string; - attributes?: { - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; }; createdAt?: string; updatedAt?: string; + publishedAt?: string; createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: { + icon?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -2535,6 +14834,8 @@ export type CategoryLocalizationResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -2550,16 +14851,6 @@ export type CategoryLocalizationResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -2571,83 +14862,91 @@ export type CategoryLocalizationResponse = { }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - campaign_type?: string; - title?: string; - description?: string; - duration_in_days?: number; - environment?: string; - output_image?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -2666,6 +14965,8 @@ export type CategoryLocalizationResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -2681,16 +14982,6 @@ export type CategoryLocalizationResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -2702,90 +14993,98 @@ export type CategoryLocalizationResponse = { }; }; }; - updatedBy?: { - data?: { + requirements?: { + id?: string; + description?: string; + list?: { id?: string; - attributes?: {}; - }; + item?: string; + }[]; }; - }; - }; - }; - requirements?: { - id?: string; - description?: string; - list?: { - id?: string; - item?: string; - }[]; - }; - why?: { - id?: string; - reasons?: { - id?: string; - icon?: { - data?: { + why?: { id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + reasons?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -2804,131 +15103,131 @@ export type CategoryLocalizationResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - title?: string; - description?: string; - }[]; - advantages?: { - id?: string; - item?: string; - }[]; - }; - what?: { - id?: string; - description?: string; - goal_text?: string; - }; - how?: { - id?: string; - timeline?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -2947,6 +15246,8 @@ export type CategoryLocalizationResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -2962,16 +15263,6 @@ export type CategoryLocalizationResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -2983,242 +15274,226 @@ export type CategoryLocalizationResponse = { }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; + title?: string; + description?: string; + }[]; }; - }; - title?: string; - description?: string; - }[]; - }; - service_slug?: string; - is_functional?: boolean; - categories?: { - data?: { - id?: string; - attributes?: { - Name?: string; - Slug?: string; - Description?: string; - services?: { + template_slug?: string; + is_functional?: boolean; + categories?: { data?: { id?: string; attributes?: {}; }[]; }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { + sort_order?: number; + express?: { data?: { id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + attributes?: {}; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; }; }; + label?: string; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }[]; - }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: {}; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; }; createdAt?: string; updatedAt?: string; @@ -3237,8 +15512,6 @@ export type CategoryLocalizationResponse = { }; }[]; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -3254,6 +15527,16 @@ export type CategoryLocalizationResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -3265,50 +15548,18 @@ export type CategoryLocalizationResponse = { }; }; }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { + updatedBy?: { + data?: { id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; }; }; - }; + Text?: string; + }[]; + background?: string; createdAt?: string; updatedAt?: string; publishedAt?: string; @@ -3324,8 +15575,10 @@ export type CategoryLocalizationResponse = { attributes?: {}; }; }; + localizations?: {}[]; + locale?: string; }; - }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -3347,6 +15600,14 @@ export type CategoryLocalizationResponse = { }; }[]; }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; createdAt?: string; updatedAt?: string; publishedAt?: string; @@ -3365,91 +15626,213 @@ export type CategoryLocalizationResponse = { localizations?: {}[]; locale?: string; }; -export type CategoryLocalizationRequest = { - Name?: string; - Slug?: string; +export type ServiceLocalizationRequest = { + campaign_type?: string; + title?: string; + description?: string; + service_slug?: string; + is_functional?: boolean; + is_featured?: boolean; + sort_order?: number; }; -export type ExpressListResponse = { +export type TemplateListResponse = { data?: { id?: string; attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { + icon?: { data?: { id?: string; attributes?: { - express?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; - publishedAt?: string; createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + }; }; createdAt?: string; updatedAt?: string; @@ -3468,8 +15851,6 @@ export type ExpressListResponse = { }; }[]; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -3485,6 +15866,16 @@ export type ExpressListResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -3496,270 +15887,393 @@ export type ExpressListResponse = { }; }; }; - title?: string; - description?: string; - tags?: { + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; - }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; }; }; - localizations?: {}[]; - locale?: string; }; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { + title?: string; + description?: string; + }[]; + advantages?: { id?: string; - attributes?: {}; - }; + item?: string; + }[]; }; - updatedBy?: { - data?: { + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { id?: string; - attributes?: {}; - }; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; }; - }; - }[]; - meta?: { - pagination?: { - page?: number; - pageSize?: number; - pageCount?: number; - total?: number; - }; - }; -}; -export type ExpressResponse = { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { + template_slug?: string; + is_functional?: boolean; + categories?: { data?: { id?: string; attributes?: { - express?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { data?: { id?: string; attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { + icon?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -3778,6 +16292,8 @@ export type ExpressResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -3793,16 +16309,137 @@ export type ExpressResponse = { }; }; }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; }[]; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { data?: { id?: string; - attributes?: {}; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; }; }; updatedBy?: { @@ -3814,303 +16451,422 @@ export type ExpressResponse = { }; }; }; - updatedBy?: { - data?: { + requirements?: { + id?: string; + description?: string; + list?: { id?: string; - attributes?: {}; - }; + item?: string; + }[]; }; - }; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - meta?: object; -}; -export type ExpressRequest = { - data?: { - name?: string; - slug?: string; - }; -}; -export type ExpressTypeListResponse = { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -4119,124 +16875,406 @@ export type ExpressTypeListResponse = { attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; + localizations?: {}[]; + locale?: string; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; }; createdAt?: string; updatedAt?: string; publishedAt?: string; createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + templates?: { + data?: { + id?: string; + attributes?: { + icon?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -4255,6 +17293,8 @@ export type ExpressTypeListResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -4270,16 +17310,6 @@ export type ExpressTypeListResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -4291,583 +17321,544 @@ export type ExpressTypeListResponse = { }; }; }; - updatedBy?: { - data?: { + requirements?: { + id?: string; + description?: string; + list?: { id?: string; - attributes?: {}; - }; + item?: string; + }[]; }; - localizations?: {}[]; - locale?: string; - }; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }[]; - meta?: { - pagination?: { - page?: number; - pageSize?: number; - pageCount?: number; - total?: number; - }; - }; -}; -export type ExpressTypeResponse = { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; - }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { + title?: string; + description?: string; + }[]; + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; + attributes?: {}; }[]; }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { + sort_order?: number; + express?: { data?: { id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + attributes?: {}; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; }; }; + label?: string; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + output?: { + id?: string; + Icon?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -4883,14 +17874,6 @@ export type ExpressTypeResponse = { }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -4900,191 +17883,128 @@ export type ExpressTypeResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; + localizations?: {}[]; + locale?: string; }; - }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; }[]; }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { + sort_order?: number; + express?: { data?: { id?: string; attributes?: {}; }; }; - updatedBy?: { - data?: { + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }; - meta?: object; -}; -export type ExpressTypeRequest = { - data?: { - title?: string; - description?: string; - webhook_url?: string; - }; -}; -export type ExpressTypeLocalizationResponse = { - id?: string; - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: {}; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + }; }; createdAt?: string; updatedAt?: string; @@ -5103,8 +18023,6 @@ export type ExpressTypeLocalizationResponse = { }; }[]; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -5120,6 +18038,16 @@ export type ExpressTypeLocalizationResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -5131,33 +18059,46 @@ export type ExpressTypeLocalizationResponse = { }; }; }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { + updatedBy?: { + data?: { id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }; + }; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; }[]; }; createdAt?: string; updatedAt?: string; - publishedAt?: string; createdBy?: { data?: { id?: string; @@ -5235,274 +18176,144 @@ export type ExpressTypeLocalizationResponse = { createdAt?: string; updatedAt?: string; createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; + localizations?: {}[]; + locale?: string; }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + meta?: { + pagination?: { + page?: number; + pageSize?: number; + pageCount?: number; + total?: number; }; }; - localizations?: {}[]; - locale?: string; }; -export type ExpressTypeLocalizationRequest = { - title?: string; - description?: string; - webhook_url?: string; -}; -export type ManualListResponse = { +export type TemplateResponse = { data?: { id?: string; attributes?: { - title?: string; - content?: string; - campaignId?: number; - token?: string; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { + icon?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -5521,6 +18332,8 @@ export type ManualListResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -5536,16 +18349,6 @@ export type ManualListResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -5557,73 +18360,91 @@ export type ManualListResponse = { }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }[]; - meta?: { - pagination?: { - page?: number; - pageSize?: number; - pageCount?: number; - total?: number; - }; - }; -}; -export type ManualResponse = { - data?: { - id?: string; - attributes?: { + campaign_type?: string; title?: string; - content?: string; - campaignId?: number; - token?: string; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -5642,6 +18463,8 @@ export type ManualResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -5657,16 +18480,6 @@ export type ManualResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -5678,209 +18491,404 @@ export type ManualResponse = { }; }; }; - updatedBy?: { - data?: { + requirements?: { + id?: string; + description?: string; + list?: { id?: string; - attributes?: {}; - }; + item?: string; + }[]; }; - localizations?: {}[]; - locale?: string; - }; - }; - meta?: object; -}; -export type ManualRequest = { - data?: { - title?: string; - content?: string; - campaignId?: number; - token?: string; - }; -}; -export type ManualLocalizationResponse = { - id?: string; - title?: string; - content?: string; - campaignId?: number; - token?: string; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; -}; -export type ManualLocalizationRequest = { - title?: string; - content?: string; - campaignId?: number; - token?: string; -}; -export type ServiceListResponse = { - data?: { - id?: string; - attributes?: { - icon?: { - data?: { + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + }; + title?: string; + description?: string; + }[]; + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + icon?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -5896,14 +18904,6 @@ export type ServiceListResponse = { }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -5913,105 +18913,113 @@ export type ServiceListResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - campaign_type?: string; - title?: string; - description?: string; - duration_in_days?: number; - environment?: string; - output_image?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -6027,14 +19035,6 @@ export type ServiceListResponse = { }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -6044,112 +19044,263 @@ export type ServiceListResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { + requirements?: { + id?: string; + description?: string; + list?: { id?: string; - attributes?: {}; - }; + item?: string; + }[]; }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - requirements?: { - id?: string; - description?: string; - list?: { - id?: string; - item?: string; - }[]; - }; - why?: { - id?: string; - reasons?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { + description?: string; + goal_text?: string; + }; + how?: { id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + timeline?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -6165,210 +19316,346 @@ export type ServiceListResponse = { }; }; }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - title?: string; - description?: string; - }[]; - advantages?: { - id?: string; - item?: string; - }[]; - }; - what?: { - id?: string; - description?: string; - goal_text?: string; - }; - how?: { - id?: string; - timeline?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { + before_starting_info?: string; + start_reasons?: { id?: string; - attributes?: {}; + item?: string; }[]; - }; - permissions?: { - data?: { + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { + id?: string; + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; + localizations?: {}[]; + locale?: string; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; + localizations?: {}[]; + locale?: string; }; - }; + }[]; }; - }; - title?: string; - description?: string; - }[]; - }; - service_slug?: string; - is_functional?: boolean; - categories?: { - data?: { - id?: string; - attributes?: { - Name?: string; - Slug?: string; - Description?: string; - services?: { + templates?: { data?: { id?: string; attributes?: { @@ -6592,54 +19879,197 @@ export type ServiceListResponse = { attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; }; - }; - }; - requirements?: { - id?: string; - description?: string; - list?: { + title?: string; + description?: string; + }[]; + advantages?: { id?: string; item?: string; }[]; }; - why?: { + what?: { id?: string; - reasons?: { + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { id?: string; icon?: { data?: { @@ -6770,19 +20200,28 @@ export type ServiceListResponse = { title?: string; description?: string; }[]; - advantages?: { + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { id?: string; - item?: string; + attributes?: {}; }[]; }; - what?: { - id?: string; - description?: string; - goal_text?: string; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; }; - how?: { + Price?: { id?: string; - timeline?: { + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { id?: string; icon?: { data?: { @@ -6910,141 +20349,75 @@ export type ServiceListResponse = { }; }; }; - title?: string; - description?: string; - }[]; - }; - service_slug?: string; - is_functional?: boolean; - categories?: { - data?: { - id?: string; - attributes?: {}; - }[]; + label?: string; + }; }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; }[]; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + permissions?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + attributes?: {}; + }; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -7060,6 +20433,14 @@ export type ServiceListResponse = { }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -7069,235 +20450,668 @@ export type ServiceListResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { id?: string; - item?: string; + attributes?: {}; }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { + }; + permissions?: { + data?: { id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }; + }; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + meta?: object; +}; +export type TemplateRequest = { + data?: { + campaign_type?: string; + title?: string; + description?: string; + template_slug?: string; + is_functional?: boolean; + sort_order?: number; + Price?: { + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + icon?: number | string; + label?: string; + }; + }; + output?: { + Icon?: number | string; + Text?: string; + }[]; + }; +}; +export type TemplateLocalizationResponse = { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; }; }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - }; + }[]; }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; }; - }[]; - }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: {}; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + }; + }; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; - }; - }[]; - meta?: { - pagination?: { - page?: number; - pageSize?: number; - pageCount?: number; - total?: number; }; }; -}; -export type ServiceResponse = { - data?: { + requirements?: { id?: string; - attributes?: { + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; icon?: { data?: { id?: string; @@ -7424,12 +21238,24 @@ export type ServiceResponse = { }; }; }; - campaign_type?: string; title?: string; description?: string; - duration_in_days?: number; - environment?: string; - output_image?: { + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { @@ -7555,304 +21381,292 @@ export type ServiceResponse = { }; }; }; - requirements?: { - id?: string; - description?: string; - list?: { - id?: string; - item?: string; - }[]; - }; - why?: { - id?: string; - reasons?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + title?: string; + description?: string; + }[]; + }; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: { + Name?: string; + Slug?: string; + Description?: string; + services?: { + data?: { + id?: string; + attributes?: { + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; }; - }; - }; - title?: string; - description?: string; - }[]; - advantages?: { - id?: string; - item?: string; - }[]; - }; - what?: { - id?: string; - description?: string; - goal_text?: string; - }; - how?: { - id?: string; - timeline?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; }; - }; - }; - title?: string; - description?: string; - }[]; - }; - service_slug?: string; - is_functional?: boolean; - categories?: { - data?: { - id?: string; - attributes?: { - Name?: string; - Slug?: string; - Description?: string; - services?: { - data?: { + requirements?: { id?: string; - attributes?: { + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; icon?: { data?: { id?: string; @@ -7979,12 +21793,24 @@ export type ServiceResponse = { }; }; }; - campaign_type?: string; title?: string; description?: string; - duration_in_days?: number; - environment?: string; - output_image?: { + }[]; + advantages?: { + id?: string; + item?: string; + }[]; + }; + what?: { + id?: string; + description?: string; + goal_text?: string; + }; + how?: { + id?: string; + timeline?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { @@ -8070,264 +21896,161 @@ export type ServiceResponse = { createdBy?: { data?: { id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - requirements?: { - id?: string; - description?: string; - list?: { - id?: string; - item?: string; - }[]; - }; - why?: { - id?: string; - reasons?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; }; - title?: string; - description?: string; - }[]; - advantages?: { - id?: string; - item?: string; - }[]; - }; - what?: { - id?: string; - description?: string; - goal_text?: string; + }; }; - how?: { - id?: string; - timeline?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; + title?: string; + description?: string; + }[]; + }; + service_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + is_featured?: boolean; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: { + name?: string; + cost?: number; + slug?: string; + express_type?: { + data?: { + id?: string; + attributes?: { + express?: { + data?: { + id?: string; + attributes?: {}; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + }; + title?: string; + description?: string; + tags?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; - }; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; createdAt?: string; updatedAt?: string; @@ -8346,6 +22069,8 @@ export type ServiceResponse = { }; }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -8361,16 +22086,6 @@ export type ServiceResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -8381,151 +22096,72 @@ export type ServiceResponse = { }; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - title?: string; - description?: string; - }[]; - }; - service_slug?: string; - is_functional?: boolean; - categories?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - title?: string; - description?: string; - tags?: { + }; + label?: string; + }[]; + before_starting_info?: string; + start_reasons?: { + id?: string; + item?: string; + }[]; + webhook_url?: string; + default_use_case_text?: string; + use_cases_help?: { + id?: string; + title?: string; + description?: string; + suggestions?: { + id?: string; + group_title?: string; + items?: { id?: string; - icon?: { + is_pros?: boolean; + title?: string; + content?: string; + }[]; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; }[]; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + permissions?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + attributes?: {}; + }; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -8541,310 +22177,197 @@ export type ServiceResponse = { }; }; }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - label?: string; - }[]; - before_starting_info?: string; - start_reasons?: { - id?: string; - item?: string; - }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { - id?: string; - title?: string; - description?: string; - suggestions?: { - id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + }[]; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; }; }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; + localizations?: {}[]; + locale?: string; }; }; }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; - localizations?: {}[]; - locale?: string; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; }; - localizations?: {}[]; - locale?: string; - }; - }[]; - }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - publishedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - localizations?: {}[]; - locale?: string; - }; - }; - meta?: object; -}; -export type ServiceRequest = { - data?: { - campaign_type?: string; - title?: string; - description?: string; - service_slug?: string; - is_functional?: boolean; - is_featured?: boolean; - sort_order?: number; - }; -}; -export type ServiceLocalizationResponse = { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; }[]; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + templates?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + icon?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -8860,14 +22383,6 @@ export type ServiceLocalizationResponse = { }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -8877,105 +22392,113 @@ export type ServiceLocalizationResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - campaign_type?: string; - title?: string; - description?: string; - duration_in_days?: number; - environment?: string; - output_image?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + campaign_type?: string; + title?: string; + description?: string; + duration_in_days?: number; + environment?: string; + output_image?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -8984,136 +22507,279 @@ export type ServiceLocalizationResponse = { attributes?: {}; }; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requirements?: { + id?: string; + description?: string; + list?: { + id?: string; + item?: string; + }[]; + }; + why?: { + id?: string; + reasons?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; }; }; + title?: string; + description?: string; }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { + advantages?: { id?: string; - attributes?: {}; - }; + item?: string; + }[]; }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - requirements?: { - id?: string; - description?: string; - list?: { - id?: string; - item?: string; - }[]; - }; - why?: { - id?: string; - reasons?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { + what?: { id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { + description?: string; + goal_text?: string; + }; + how?: { id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + timeline?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -9129,14 +22795,6 @@ export type ServiceLocalizationResponse = { }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -9146,117 +22804,134 @@ export type ServiceLocalizationResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; }; - }; + title?: string; + description?: string; + }[]; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + template_slug?: string; + is_functional?: boolean; + categories?: { + data?: { + id?: string; + attributes?: {}; + }[]; }; - }; - }; - }; - }; - title?: string; - description?: string; - }[]; - advantages?: { - id?: string; - item?: string; - }[]; - }; - what?: { - id?: string; - description?: string; - goal_text?: string; - }; - how?: { - id?: string; - timeline?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + Price?: { id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { data?: { id?: string; attributes?: { name?: string; - code?: string; - description?: string; - users?: { + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { data?: { id?: string; attributes?: {}; }[]; }; - permissions?: { + createdAt?: string; + updatedAt?: string; + createdBy?: { data?: { id?: string; attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; - attributes?: {}; - }; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -9272,14 +22947,6 @@ export type ServiceLocalizationResponse = { }; }; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; }; updatedBy?: { @@ -9289,422 +22956,567 @@ export type ServiceLocalizationResponse = { }; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; }; }; + label?: string; }; }; - }; - updatedBy?: { - data?: { + output?: { id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - title?: string; - description?: string; - }[]; - }; - service_slug?: string; - is_functional?: boolean; - categories?: { - data?: { - id?: string; - attributes?: { - Name?: string; - Slug?: string; - Description?: string; - services?: { - data?: { - id?: string; - attributes?: { - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; }; }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; - campaign_type?: string; - title?: string; - description?: string; - duration_in_days?: number; - environment?: string; - output_image?: { + updatedBy?: { data?: { id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + }; + sort_order?: number; + express?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + Price?: { + id?: string; + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + id?: string; + icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + label?: string; + }; + }; + output?: { + id?: string; + Icon?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; - requirements?: { + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + Text?: string; + }[]; + background?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; +}; +export type TemplateLocalizationRequest = { + campaign_type?: string; + title?: string; + description?: string; + template_slug?: string; + is_functional?: boolean; + sort_order?: number; + Price?: { + price?: string; + previous_price?: string; + is_strikethrough?: boolean; + tag_price?: { + icon?: number | string; + label?: string; + }; + }; + output?: { + Icon?: number | string; + Text?: string; + }[]; +}; +export type UseCaseTemplateListResponse = { + data?: { + id?: string; + attributes?: { + title?: string; + description?: string; + content?: string; + device_type?: 'webapp' | 'mobileapp'; + image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { id?: string; - description?: string; - list?: { - id?: string; - item?: string; - }[]; - }; - why?: { + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { id?: string; - reasons?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; }[]; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + permissions?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + attributes?: {}; + }; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -9720,6 +23532,14 @@ export type ServiceLocalizationResponse = { }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -9729,125 +23549,83 @@ export type ServiceLocalizationResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - title?: string; - description?: string; - }[]; - advantages?: { - id?: string; - item?: string; - }[]; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; }; - what?: { + }; + updatedBy?: { + data?: { id?: string; - description?: string; - goal_text?: string; + attributes?: {}; }; - how?: { + }; + }; + }; + }; + requires_login?: boolean; + use_case_template_category?: { + data?: { + id?: string; + attributes?: { + category_name?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { id?: string; - timeline?: { - id?: string; - icon?: { + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { data?: { id?: string; attributes?: { name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { + code?: string; + description?: string; + users?: { data?: { id?: string; attributes?: {}; }[]; }; - createdAt?: string; - updatedAt?: string; - createdBy?: { + permissions?: { data?: { id?: string; attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { data?: { id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; + attributes?: {}; + }; }; - blocked?: boolean; - preferedLanguage?: string; createdAt?: string; updatedAt?: string; createdBy?: { @@ -9863,6 +23641,14 @@ export type ServiceLocalizationResponse = { }; }; }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; updatedBy?: { @@ -9872,285 +23658,417 @@ export type ServiceLocalizationResponse = { }; }; }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; }; }; - title?: string; - description?: string; - }[]; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; }; - service_slug?: string; - is_functional?: boolean; - categories?: { - data?: { - id?: string; - attributes?: {}; - }[]; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: { - name?: string; - cost?: number; - slug?: string; - express_type?: { - data?: { - id?: string; - attributes?: { - express?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - title?: string; - description?: string; - tags?: { - id?: string; - icon?: { - data?: { - id?: string; - attributes?: { - name?: string; - alternativeText?: string; - caption?: string; - width?: number; - height?: number; - formats?: any; - hash?: string; - ext?: string; - mime?: string; - size?: number; - url?: string; - previewUrl?: string; - provider?: string; - provider_metadata?: any; - related?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }[]; + meta?: { + pagination?: { + page?: number; + pageSize?: number; + pageCount?: number; + total?: number; + }; + }; +}; +export type UseCaseTemplateResponse = { + data?: { + id?: string; + attributes?: { + title?: string; + description?: string; + content?: string; + device_type?: 'webapp' | 'mobileapp'; + image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; }; }; }; - label?: string; }[]; - before_starting_info?: string; - start_reasons?: { + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { id?: string; - item?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + requires_login?: boolean; + use_case_template_category?: { + data?: { + id?: string; + attributes?: { + category_name?: string; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; }[]; - webhook_url?: string; - default_use_case_text?: string; - use_cases_help?: { + }; + permissions?: { + data?: { id?: string; - title?: string; - description?: string; - suggestions?: { + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + }; + createdAt?: string; + updatedAt?: string; + publishedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + localizations?: {}[]; + locale?: string; + }; + }; + meta?: object; +}; +export type UseCaseTemplateRequest = { + data?: { + title?: string; + description?: string; + content?: string; + image?: number | string; + requires_login?: boolean; + }; +}; +export type UseCaseTemplateLocalizationResponse = { + id?: string; + title?: string; + description?: string; + content?: string; + device_type?: 'webapp' | 'mobileapp'; + image?: { + data?: { + id?: string; + attributes?: { + name?: string; + alternativeText?: string; + caption?: string; + width?: number; + height?: number; + formats?: any; + hash?: string; + ext?: string; + mime?: string; + size?: number; + url?: string; + previewUrl?: string; + provider?: string; + provider_metadata?: any; + related?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { id?: string; - group_title?: string; - items?: { - id?: string; - is_pros?: boolean; - title?: string; - content?: string; - }[]; - }[]; + attributes?: {}; + }; }; createdAt?: string; updatedAt?: string; - publishedAt?: string; createdBy?: { data?: { id?: string; - attributes?: { - firstname?: string; - lastname?: string; - username?: string; - email?: string; - resetPasswordToken?: string; - registrationToken?: string; - isActive?: boolean; - roles?: { - data?: { - id?: string; - attributes?: { - name?: string; - code?: string; - description?: string; - users?: { - data?: { - id?: string; - attributes?: {}; - }[]; - }; - permissions?: { - data?: { - id?: string; - attributes?: { - action?: string; - subject?: string; - properties?: any; - conditions?: any; - role?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; - }[]; - }; - blocked?: boolean; - preferedLanguage?: string; - createdAt?: string; - updatedAt?: string; - createdBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - updatedBy?: { - data?: { - id?: string; - attributes?: {}; - }; - }; - }; + attributes?: {}; }; }; updatedBy?: { @@ -10159,14 +24077,11 @@ export type ServiceLocalizationResponse = { attributes?: {}; }; }; - localizations?: {}[]; - locale?: string; }; - }; + }[]; }; createdAt?: string; updatedAt?: string; - publishedAt?: string; createdBy?: { data?: { id?: string; @@ -10180,11 +24095,12 @@ export type ServiceLocalizationResponse = { }; }; }; - }; + }[]; }; + blocked?: boolean; + preferedLanguage?: string; createdAt?: string; updatedAt?: string; - publishedAt?: string; createdBy?: { data?: { id?: string; @@ -10197,18 +24113,116 @@ export type ServiceLocalizationResponse = { attributes?: {}; }; }; - localizations?: {}[]; - locale?: string; }; - }[]; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; }; + }; + }; + }; + requires_login?: boolean; + use_case_template_category?: { + data?: { + id?: string; + attributes?: { + category_name?: string; createdAt?: string; updatedAt?: string; publishedAt?: string; createdBy?: { data?: { id?: string; - attributes?: {}; + attributes?: { + firstname?: string; + lastname?: string; + username?: string; + email?: string; + resetPasswordToken?: string; + registrationToken?: string; + isActive?: boolean; + roles?: { + data?: { + id?: string; + attributes?: { + name?: string; + code?: string; + description?: string; + users?: { + data?: { + id?: string; + attributes?: {}; + }[]; + }; + permissions?: { + data?: { + id?: string; + attributes?: { + action?: string; + subject?: string; + properties?: any; + conditions?: any; + role?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; + }[]; + }; + blocked?: boolean; + preferedLanguage?: string; + createdAt?: string; + updatedAt?: string; + createdBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + updatedBy?: { + data?: { + id?: string; + attributes?: {}; + }; + }; + }; }; }; updatedBy?: { @@ -10220,14 +24234,6 @@ export type ServiceLocalizationResponse = { localizations?: {}[]; locale?: string; }; - }[]; - }; - is_featured?: boolean; - sort_order?: number; - express?: { - data?: { - id?: string; - attributes?: {}; }; }; createdAt?: string; @@ -10248,14 +24254,12 @@ export type ServiceLocalizationResponse = { localizations?: {}[]; locale?: string; }; -export type ServiceLocalizationRequest = { - campaign_type?: string; +export type UseCaseTemplateLocalizationRequest = { title?: string; description?: string; - service_slug?: string; - is_functional?: boolean; - is_featured?: boolean; - sort_order?: number; + content?: string; + image?: number | string; + requires_login?: boolean; }; export type UseCaseTemplateCategoryListResponse = { data?: { @@ -10630,6 +24634,18 @@ export const { usePutServicesByIdMutation, useDeleteServicesByIdMutation, usePostServicesByIdLocalizationsMutation, + useGetTemplatesQuery, + usePostTemplatesMutation, + useGetTemplatesByIdQuery, + usePutTemplatesByIdMutation, + useDeleteTemplatesByIdMutation, + usePostTemplatesByIdLocalizationsMutation, + useGetUseCaseTemplatesQuery, + usePostUseCaseTemplatesMutation, + useGetUseCaseTemplatesByIdQuery, + usePutUseCaseTemplatesByIdMutation, + useDeleteUseCaseTemplatesByIdMutation, + usePostUseCaseTemplatesByIdLocalizationsMutation, useGetUseCaseTemplateCategoriesQuery, usePostUseCaseTemplateCategoriesMutation, useGetUseCaseTemplateCategoriesByIdQuery, diff --git a/src/features/backoffice/openapi/documentation.json b/src/features/backoffice/openapi/documentation.json index d71afbb1e..4e278b407 100644 --- a/src/features/backoffice/openapi/documentation.json +++ b/src/features/backoffice/openapi/documentation.json @@ -14,7 +14,7 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "x-generation-date": "2023-07-11T14:57:15.465Z" + "x-generation-date": "2025-02-10T17:48:33.603Z" }, "x-strapi-config": { "path": "/documentation", @@ -1783,58 +1783,24 @@ } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + "templates": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -1846,13 +1812,43 @@ "name": { "type": "string" }, - "code": { + "alternativeText": { "type": "string" }, - "description": { + "caption": { "type": "string" }, - "users": { + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { "type": "object", "properties": { "data": { @@ -1872,32 +1868,54 @@ } } }, - "permissions": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { "id": { @@ -1905,50 +1923,216 @@ }, "attributes": { "type": "object", - "properties": {} + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } } } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -1960,15 +2144,7 @@ } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + "updatedBy": { "type": "object", "properties": { "data": { @@ -1984,8 +2160,108 @@ } } } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } }, - "updatedBy": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { "data": { @@ -1995,411 +2271,149 @@ "type": "string" }, "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - } - }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - }, - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { "type": "object", "properties": { - "id": { + "firstname": { "type": "string" }, - "attributes": { + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -2410,45 +2424,45 @@ } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -2459,51 +2473,51 @@ } } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -2513,20 +2527,20 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -2536,517 +2550,130 @@ } } } - }, - "label": { - "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + "requirements": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + "description": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } } } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - }, - "CategoryListResponse": { - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "Name": { - "type": "string" - }, - "Slug": { - "type": "string" - }, - "Description": { - "type": "string" - }, - "services": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "why": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "reasons": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -3055,31 +2682,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -3127,45 +2937,20 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -3175,263 +2960,143 @@ } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + }, + "advantages": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "id": { + "type": "string" + }, + "item": { + "type": "string" } } - }, - "updatedBy": { + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "icon": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "campaign_type": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "duration_in_days": { - "type": "integer" - }, - "environment": { - "type": "string" - }, - "output_image": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -3440,31 +3105,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -3512,45 +3360,20 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -3560,349 +3383,168 @@ } } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "requirements": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "list": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "why": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + }, + "template_slug": { "type": "string" }, - "attributes": { + "is_functional": { + "type": "boolean" + }, + "categories": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "attributes": { + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "data": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { + "id": { "type": "string" }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { + "icon": { "type": "object", "properties": { "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { "id": { @@ -3916,332 +3558,359 @@ } } } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - }, - "advantages": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "what": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "goal_text": { - "type": "string" - } - } - }, - "how": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "timeline": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "start_reasons": { + "type": "array", + "items": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { + "id": { "type": "string" }, - "description": { + "item": { "type": "string" - }, - "users": { + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { "type": "array", "items": { "type": "object", @@ -4249,197 +3918,377 @@ "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" } } } } } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } } } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -4448,257 +4297,366 @@ } } } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "icon": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - } - } - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "categories": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "Name": { - "type": "string" - }, - "Slug": { - "type": "string" - }, - "Description": { - "type": "string" - }, - "services": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "firstname": { "type": "string" }, - "attributes": { + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } } } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -4708,45 +4666,20 @@ } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -4758,134 +4691,22 @@ } } }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { + "label": { "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } } } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - } - }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - }, - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + }, + "output": { + "type": "array", + "items": { "type": "object", "properties": { - "express": { + "id": { + "type": "string" + }, + "Icon": { "type": "object", "properties": { "data": { @@ -4896,307 +4717,231 @@ }, "attributes": { "type": "object", - "properties": {} - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } - }, - "permissions": { + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -5204,54 +4949,48 @@ } } } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -5259,22 +4998,53 @@ } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } @@ -5282,78 +5052,21 @@ } } } - } - } - } - }, - "label": { - "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } @@ -5363,110 +5076,70 @@ } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": {} } - }, - "locale": { - "type": "string" } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + }, + "localizations": { + "type": "array", + "items": { "type": "object", "properties": {} } + }, + "locale": { + "type": "string" } } } @@ -5474,249 +5147,353 @@ } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } } } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } } }, - "meta": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "pagination": { + "data": { + "type": "object", "properties": { - "page": { - "type": "integer" - }, - "pageSize": { - "type": "integer", - "minimum": 25 - }, - "pageCount": { - "type": "integer", - "maximum": 1 + "id": { + "type": "string" }, - "total": { - "type": "integer" + "attributes": { + "type": "object", + "properties": {} } } } } - } - } - }, - "CategoryResponse": { - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", "properties": { - "Name": { - "type": "string" - }, - "Slug": { - "type": "string" - }, - "Description": { + "id": { "type": "string" }, - "services": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + }, + "CategoryListResponse": { + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -5724,174 +5501,149 @@ }, "attributes": { "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -5902,45 +5654,45 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -5951,51 +5703,51 @@ } } } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -6005,103 +5757,11 @@ } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "campaign_type": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "duration_in_days": { - "type": "integer" - }, - "environment": { - "type": "string" - }, - "output_image": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -6115,168 +5775,260 @@ } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { "type": "string" }, - "isActive": { - "type": "boolean" - }, - "roles": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -6287,45 +6039,45 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -6336,51 +6088,51 @@ } } } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -6390,20 +6142,20 @@ } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -6413,104 +6165,129 @@ } } } - } - }, - "requirements": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "list": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } } } } } - } - }, - "why": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -6518,84 +6295,172 @@ }, "attributes": { "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -6608,188 +6473,75 @@ } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, "attributes": { "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } + "properties": {} } } } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } } } } } } } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -6799,20 +6551,20 @@ } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -6822,118 +6574,143 @@ } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" } } - } - }, - "advantages": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } } } } } - } - }, - "what": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "goal_text": { - "type": "string" + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } } - } - }, - "how": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "timeline": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -6941,174 +6718,149 @@ }, "attributes": { "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -7119,45 +6871,45 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -7168,51 +6920,51 @@ } } } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -7222,20 +6974,20 @@ } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -7245,452 +6997,81 @@ } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" } } } } - } - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "categories": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "Name": { - "type": "string" - }, - "Slug": { - "type": "string" - }, - "Description": { - "type": "string" - }, - "services": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { + "id": { "type": "string" }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - } - }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - }, - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { + }, + "templates": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { - "type": "string" - }, "icon": { "type": "object", "properties": { @@ -8061,627 +7442,382 @@ } } }, - "label": { + "campaign_type": { "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { + }, + "title": { "type": "string" }, - "item": { + "description": { "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - }, - "meta": { - "type": "object" - } - } - }, - "ExpressRequest": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "slug": { - "type": "string" - } - } - } - } - }, - "ExpressListResponse": { - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { + "id": { "type": "string" }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { + "attributes": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "action": { - "type": "string" - }, - "subject": { + "id": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } @@ -8690,333 +7826,385 @@ } } } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" }, - "roles": { + "requirements": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { "id": { "type": "string" }, - "attributes": { + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { + "data": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } @@ -9024,587 +8212,443 @@ } } } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" } } } } } }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + "what": { "type": "object", "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" } } }, - "updatedBy": { + "how": { "type": "object", "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "label": { - "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - }, - "meta": { - "type": "object", - "properties": { - "pagination": { - "properties": { - "page": { - "type": "integer" - }, - "pageSize": { - "type": "integer", - "minimum": 25 - }, - "pageCount": { - "type": "integer", - "maximum": 1 - }, - "total": { - "type": "integer" - } - } - } - } - } - } - }, - "ExpressResponse": { - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -9614,268 +8658,51 @@ } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } } } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "sort_order": { + "type": "integer" }, - "attributes": { + "express": { "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -9887,230 +8714,43462 @@ "name": { "type": "string" }, - "code": { - "type": "string" + "cost": { + "type": "integer" }, - "description": { + "slug": { "type": "string" }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { + "express_type": { "type": "object", "properties": { "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "icon": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } } } + }, + "label": { + "type": "string" } } - }, - "updatedBy": { + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } } } } } } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + }, + "meta": { + "type": "object", + "properties": { + "pagination": { + "properties": { + "page": { + "type": "integer" + }, + "pageSize": { + "type": "integer", + "minimum": 25 + }, + "pageCount": { + "type": "integer", + "maximum": 1 + }, + "total": { + "type": "integer" + } + } + } + } + } + } + }, + "CategoryResponse": { + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + }, + "meta": { + "type": "object" + } + } + }, + "ExpressRequest": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "slug": { + "type": "string" + } + } + } + } + }, + "ExpressListResponse": { + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + }, + "meta": { + "type": "object", + "properties": { + "pagination": { + "properties": { + "page": { + "type": "integer" + }, + "pageSize": { + "type": "integer", + "minimum": 25 + }, + "pageCount": { + "type": "integer", + "maximum": 1 + }, + "total": { + "type": "integer" + } + } + } + } + } + } + }, + "ExpressResponse": { + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + }, + "meta": { + "type": "object" + } + } + }, + "ExpressTypeLocalizationRequest": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "webhook_url": { + "type": "string" + } + } + }, + "ExpressTypeRequest": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "webhook_url": { + "type": "string" + } + } + } + } + }, + "ExpressTypeLocalizationResponse": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + }, + "ExpressTypeListResponse": { + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + }, + "meta": { + "type": "object", + "properties": { + "pagination": { + "properties": { + "page": { + "type": "integer" + }, + "pageSize": { + "type": "integer", + "minimum": 25 + }, + "pageCount": { + "type": "integer", + "maximum": 1 + }, + "total": { + "type": "integer" + } + } + } + } + } + } + }, + "ExpressTypeResponse": { + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + }, + "meta": { + "type": "object" + } + } + }, + "HelpLinkLocalizationRequest": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "url": { + "type": "string" + } + } + }, + "HelpLinkRequest": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "url": { + "type": "string" + } + } + } + } + }, + "HelpLinkLocalizationResponse": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + }, + "HelpLinkListResponse": { + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + }, + "meta": { + "type": "object", + "properties": { + "pagination": { + "properties": { + "page": { + "type": "integer" + }, + "pageSize": { + "type": "integer", + "minimum": 25 + }, + "pageCount": { + "type": "integer", + "maximum": 1 + }, + "total": { + "type": "integer" + } + } + } + } + } + } + }, + "HelpLinkResponse": { + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + }, + "meta": { + "type": "object" + } + } + }, + "ManualLocalizationRequest": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "campaignId": { + "type": "integer" + }, + "token": { + "type": "string" + } + } + }, + "ManualRequest": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "campaignId": { + "type": "integer" + }, + "token": { + "type": "string" + } + } + } + } + }, + "ManualLocalizationResponse": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "campaignId": { + "type": "integer" + }, + "token": { + "type": "string" + }, + "help_links": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + }, + "ManualListResponse": { + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "campaignId": { + "type": "integer" + }, + "token": { + "type": "string" + }, + "help_links": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + }, + "meta": { + "type": "object", + "properties": { + "pagination": { + "properties": { + "page": { + "type": "integer" + }, + "pageSize": { + "type": "integer", + "minimum": 25 + }, + "pageCount": { + "type": "integer", + "maximum": 1 + }, + "total": { + "type": "integer" + } + } + } + } + } + } + }, + "ManualResponse": { + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "campaignId": { + "type": "integer" + }, + "token": { + "type": "string" + }, + "help_links": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + }, + "meta": { + "type": "object" + } + } + }, + "PromoRequest": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "banner_slug": { + "type": "string" + }, + "mail_template": { + "type": "string" + }, + "mail_subject": { + "type": "string" + } + } + } + } + }, + "PromoListResponse": { + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Title": { + "type": "string" + }, + "banner_slug": { + "type": "string" + }, + "mail_template": { + "type": "string" + }, + "mail_subject": { + "type": "string" + }, + "Referent": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Email": { + "type": "string" + } + } + } + }, + "service": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + }, + "meta": { + "type": "object", + "properties": { + "pagination": { + "properties": { + "page": { + "type": "integer" + }, + "pageSize": { + "type": "integer", + "minimum": 25 + }, + "pageCount": { + "type": "integer", + "maximum": 1 + }, + "total": { + "type": "integer" + } + } + } + } + } + } + }, + "PromoResponse": { + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Title": { + "type": "string" + }, + "banner_slug": { + "type": "string" + }, + "mail_template": { + "type": "string" + }, + "mail_subject": { + "type": "string" + }, + "Referent": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Email": { + "type": "string" + } + } + } + }, + "service": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + }, + "meta": { + "type": "object" + } + } + }, + "ServiceLocalizationRequest": { + "type": "object", + "properties": { + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + } + } + }, + "ServiceRequest": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + } + } + } + } + }, + "ServiceLocalizationResponse": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + }, + "ServiceListResponse": { + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + }, + "meta": { + "type": "object", + "properties": { + "pagination": { + "properties": { + "page": { + "type": "integer" + }, + "pageSize": { + "type": "integer", + "minimum": 25 + }, + "pageCount": { + "type": "integer", + "maximum": 1 + }, + "total": { + "type": "integer" + } + } + } + } + } + } + }, + "ServiceResponse": { + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { "type": "string" }, "attributes": { @@ -10121,541 +52180,2042 @@ } } } - } - } - } - } - } - }, - "label": { - "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "is_pros": { - "type": "boolean" + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" }, "title": { "type": "string" }, - "content": { + "description": { "type": "string" - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - }, - "meta": { - "type": "object" - } - } - }, - "ExpressTypeLocalizationRequest": { - "type": "object", - "properties": { - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "webhook_url": { - "type": "string" - } - } - }, - "ExpressTypeRequest": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "webhook_url": { - "type": "string" - } - } - } - } - }, - "ExpressTypeLocalizationResponse": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { + "id": { "type": "string" }, - "isActive": { - "type": "boolean" - }, - "roles": { + "attributes": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "permissions": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -10666,45 +54226,51 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -10714,52 +54280,21 @@ } } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } @@ -10768,159 +54303,53 @@ } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } - }, - "updatedBy": { + } + }, + "advantages": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "id": { + "type": "string" + }, + "item": { + "type": "string" } } } } } - } - } - } - }, - "label": { - "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { + }, + "what": { "type": "object", "properties": { "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" + "type": "string" }, - "title": { + "description": { "type": "string" }, - "content": { + "goal_text": { "type": "string" } } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "how": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "timeline": { "type": "array", "items": { "type": "object", @@ -10928,207 +54357,417 @@ "id": { "type": "string" }, - "attributes": { + "icon": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { + "data": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } } } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } } } } }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { + "template_slug": { "type": "string" }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" + "is_functional": { + "type": "boolean" }, - "createdBy": { + "categories": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } }, - "updatedBy": { + "sort_order": { + "type": "integer" + }, + "express": { "type": "object", "properties": { "data": { @@ -11144,346 +54783,772 @@ } } } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "Price": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { + "id": { "type": "string" }, - "users": { + "icon": { "type": "object", "properties": { "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } } } } } } }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "attributes": { + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { "type": "object", "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "firstname": { "type": "string" }, - "attributes": { + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -11493,124 +55558,135 @@ } } } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + }, + "localizations": { + "type": "array", + "items": { "type": "object", "properties": {} } + }, + "locale": { + "type": "string" } } } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } } } @@ -11618,41 +55694,180 @@ } } } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } - }, - "label": { - "type": "string" } } } }, - "before_starting_info": { + "meta": { + "type": "object" + } + } + }, + "TemplateLocalizationRequest": { + "type": "object", + "properties": { + "campaign_type": { "type": "string" }, - "start_reasons": { + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "Price": { + "type": "object", + "properties": { + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "icon": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "example": "string or id" + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { "type": "array", "items": { "type": "object", "properties": { - "id": { - "type": "string" + "Icon": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "example": "string or id" }, - "item": { + "Text": { "type": "string" } } } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { + } + } + }, + "TemplateRequest": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "id": { + "campaign_type": { "type": "string" }, "title": { @@ -11661,72 +55876,81 @@ "description": { "type": "string" }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "Price": { + "type": "object", + "properties": { + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "icon": { + "oneOf": [ + { + "type": "integer" }, - "content": { + { "type": "string" } - } + ], + "example": "string or id" + }, + "label": { + "type": "string" } } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "Icon": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "example": "string or id" + }, + "Text": { + "type": "string" + } } } } } + } + } + }, + "TemplateLocalizationResponse": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "icon": { "type": "object", "properties": { "data": { @@ -11737,105 +55961,157 @@ }, "attributes": { "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - }, - "ExpressTypeListResponse": { - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { + "id": { "type": "string" }, - "express_type": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "express": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "data": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { "id": { @@ -11844,60 +56120,26 @@ "attributes": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { + "action": { "type": "string" }, - "provider": { + "subject": { "type": "string" }, - "provider_metadata": {}, - "related": { + "properties": {}, + "conditions": {}, + "role": { "type": "object", "properties": { "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -11922,258 +56164,7 @@ }, "attributes": { "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } + "properties": {} } } } @@ -12201,302 +56192,381 @@ } } } - }, - "label": { - "type": "string" } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { "type": "string" }, - "use_cases_help": { + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "title": { + "code": { "type": "string" }, "description": { "type": "string" }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - } + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "permissions": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" + "id": { + "type": "string" }, - "updatedAt": { - "type": "string", - "format": "date-time" + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "createdBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } @@ -12504,135 +56574,104 @@ } } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { "type": "string" }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } } } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -12642,303 +56681,305 @@ } } } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "icon": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } - }, - "permissions": { + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -12946,54 +56987,48 @@ } } } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -13001,101 +57036,75 @@ } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } - } - } - } - } - } - } - }, - "label": { - "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } @@ -13105,60 +57114,24 @@ } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "title": { + "type": "string" }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "locale": { + "item": { "type": "string" } } @@ -13166,405 +57139,229 @@ } } }, - "meta": { + "what": { "type": "object", "properties": { - "pagination": { - "properties": { - "page": { - "type": "integer" - }, - "pageSize": { - "type": "integer", - "minimum": 25 - }, - "pageCount": { - "type": "integer", - "maximum": 1 - }, - "total": { - "type": "integer" - } - } + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" } } - } - } - }, - "ExpressTypeResponse": { - "properties": { - "data": { + }, + "how": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, "createdAt": { "type": "string", "format": "date-time" @@ -13612,376 +57409,47 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "label": { - "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } @@ -13991,82 +57459,74 @@ } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "localizations": { - "type": "array", - "items": { + }, + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } - }, - "locale": { - "type": "string" } } } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -14076,79 +57536,65 @@ } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "Name": { "type": "string" }, - "icon": { + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -14156,61 +57602,78 @@ }, "attributes": { "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -14219,36 +57682,29 @@ "attributes": { "type": "object", "properties": { - "name": { + "firstname": { "type": "string" }, - "code": { + "lastname": { "type": "string" }, - "description": { + "username": { "type": "string" }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } + "email": { + "type": "string", + "format": "email" }, - "permissions": { + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { @@ -14262,26 +57718,118 @@ "attributes": { "type": "object", "properties": { - "action": { + "name": { "type": "string" }, - "subject": { + "code": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "description": { + "type": "string" + }, + "users": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } @@ -14336,6 +57884,12 @@ } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -14383,51 +57937,20 @@ } } } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -14437,325 +57960,26 @@ } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "label": { - "type": "string" - } - } - } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - }, - "meta": { - "type": "object" - } - } - }, - "ManualLocalizationRequest": { - "type": "object", - "properties": { - "title": { - "type": "string" - }, - "content": { - "type": "string" - }, - "campaignId": { - "type": "integer" - }, - "token": { - "type": "string" - } - } - }, - "ManualRequest": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "title": { - "type": "string" - }, - "content": { - "type": "string" - }, - "campaignId": { - "type": "integer" - }, - "token": { - "type": "string" - } - } - } - } - }, - "ManualLocalizationResponse": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - }, - "campaignId": { - "type": "integer" - }, - "token": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -14764,26 +57988,60 @@ "attributes": { "type": "object", "properties": { - "action": { + "name": { "type": "string" }, - "subject": { + "alternativeText": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -14808,7 +58066,258 @@ }, "attributes": { "type": "object", - "properties": {} + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } } } } @@ -14834,262 +58343,475 @@ } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" } } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - }, - "ManualListResponse": { - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "title": { - "type": "string" - }, - "content": { - "type": "string" - }, - "campaignId": { - "type": "integer" - }, - "token": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "how": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -15098,26 +58820,60 @@ "attributes": { "type": "object", "properties": { - "action": { + "name": { "type": "string" }, - "subject": { + "alternativeText": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -15142,433 +58898,1197 @@ }, "attributes": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - }, - "meta": { - "type": "object", - "properties": { - "pagination": { - "properties": { - "page": { - "type": "integer" - }, - "pageSize": { - "type": "integer", - "minimum": 25 - }, - "pageCount": { - "type": "integer", - "maximum": 1 - }, - "total": { - "type": "integer" - } - } - } - } - } - } - }, - "ManualResponse": { - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "title": { - "type": "string" - }, - "content": { - "type": "string" - }, - "campaignId": { - "type": "integer" - }, - "token": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } - }, - "permissions": { + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", "properties": { - "action": { - "type": "string" - }, - "subject": { + "id": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "attributes": { "type": "object", "properties": { - "data": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "group_title": { + "type": "string" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + } + } + } + } + } + } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } } } } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } @@ -15576,54 +60096,62 @@ } } } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } } } @@ -15631,271 +60159,104 @@ } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - }, - "meta": { - "type": "object" - } - } - }, - "ServiceLocalizationRequest": { - "type": "object", - "properties": { - "campaign_type": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - } - } - }, - "ServiceRequest": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "campaign_type": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - } - } - } - } - }, - "ServiceLocalizationResponse": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + }, + "templates": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { + "id": { "type": "string" }, - "isActive": { - "type": "boolean" - }, - "roles": { + "attributes": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -15904,31 +60265,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -15976,45 +60520,20 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -16024,263 +60543,105 @@ } } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "campaign_type": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "duration_in_days": { - "type": "integer" - }, - "environment": { - "type": "string" - }, - "output_image": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -16289,407 +60650,407 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "username": { + "type": "string" }, - "createdAt": { + "email": { "type": "string", - "format": "date-time" + "format": "email" }, - "updatedAt": { - "type": "string", - "format": "date-time" + "resetPasswordToken": { + "type": "string" }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "registrationToken": { + "type": "string" }, - "updatedBy": { + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "requirements": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "list": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "why": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -16698,31 +61059,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -16761,54 +61305,29 @@ "type": "object", "properties": {} } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + } + } + } + } + } + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -16818,301 +61337,143 @@ } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { + } + }, + "advantages": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "id": { + "type": "string" + }, + "item": { + "type": "string" } } } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - }, - "advantages": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "what": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "goal_text": { - "type": "string" - } - } - }, - "how": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "timeline": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "what": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -17121,31 +61482,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -17193,45 +61737,20 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -17241,141 +61760,48 @@ } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - } - } - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "categories": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "Name": { - "type": "string" - }, - "Slug": { - "type": "string" - }, - "Description": { - "type": "string" - }, - "services": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "icon": { + }, + "sort_order": { + "type": "integer" + }, + "express": { "type": "object", "properties": { "data": { @@ -17385,228 +61811,270 @@ "type": "string" }, "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "attributes": { + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "action": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + "subject": { "type": "string" }, - "attributes": { + "properties": {}, + "conditions": {}, + "role": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -17614,48 +62082,48 @@ } } } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -17663,388 +62131,435 @@ } } } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } } } } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "campaign_type": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "duration_in_days": { - "type": "integer" - }, - "environment": { - "type": "string" - }, - "output_image": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "permissions": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -18052,73 +62567,25 @@ } } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } @@ -18126,386 +62593,415 @@ } } } + }, + "Text": { + "type": "string" } } } }, - "requirements": { + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "list": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } }, - "why": { + "updatedBy": { "type": "object", "properties": { - "id": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { "type": "string" }, - "reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } + "properties": {} } } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -18515,421 +63011,382 @@ } } } - }, - "updatedBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } } } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - }, - "advantages": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "what": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "goal_text": { - "type": "string" - } - } - }, - "how": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "timeline": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "action": { "type": "string" }, - "attributes": { + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "data": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -18938,22 +63395,47 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -18961,30 +63443,46 @@ } } } - }, - "title": { + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { "type": "string" }, - "description": { - "type": "string" + "attributes": { + "type": "object", + "properties": {} } } } } - } - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "categories": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -18998,70 +63496,275 @@ } } } - }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - }, - "express": { + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + }, + "TemplateListResponse": { + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "attributes": { + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { "type": "object", "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { "type": "array", "items": { "type": "object", @@ -19069,386 +63772,384 @@ "id": { "type": "string" }, - "icon": { + "attributes": { "type": "object", "properties": { - "data": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { + "id": { "type": "string" }, - "provider_metadata": {}, - "related": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "createdBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } } } - }, - "label": { + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { "type": "array", "items": { "type": "object", @@ -19456,42 +64157,388 @@ "id": { "type": "string" }, - "item": { - "type": "string" + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } } } } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { "type": "string" }, - "title": { - "type": "string" - }, - "description": { + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { "type": "string" }, - "suggestions": { - "type": "array", - "items": { + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { + "data": { "type": "array", "items": { "type": "object", @@ -19499,292 +64546,95 @@ "id": { "type": "string" }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" + "attributes": { + "type": "object", + "properties": {} } } } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -19792,477 +64642,693 @@ } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } } } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { + "advantages": { "type": "array", "items": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "locale": { + "description": { + "type": "string" + }, + "goal_text": { "type": "string" } } - } - } - } - } - } - }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - }, - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - }, - "ServiceListResponse": { - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "icon": { + }, + "how": { "type": "object", "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { "type": "string" }, - "attributes": { + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { + "id": { "type": "string" }, - "isActive": { - "type": "boolean" - }, - "roles": { + "attributes": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -20271,31 +65337,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -20343,45 +65592,20 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -20391,263 +65615,105 @@ } } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "campaign_type": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "duration_in_days": { - "type": "integer" - }, - "environment": { - "type": "string" - }, - "output_image": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -20656,15 +65722,223 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { "type": "string" }, - "subject": { + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { "data": { @@ -20681,15 +65955,7 @@ } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + "updatedBy": { "type": "object", "properties": { "data": { @@ -20705,20 +65971,434 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -20730,333 +66410,142 @@ } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" + "title": { + "type": "string" }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "item": { + "type": "string" } } } } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "what": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + "description": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "goal_text": { + "type": "string" } } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "requirements": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "list": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "why": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "how": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "timeline": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -21065,31 +66554,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -21137,45 +66809,20 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -21185,279 +66832,107 @@ } } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - }, - "advantages": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "what": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "goal_text": { - "type": "string" - } - } - }, - "how": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "timeline": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { + "id": { "type": "string" }, - "users": { + "attributes": { "type": "object", "properties": { - "data": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { "type": "array", "items": { "type": "object", @@ -21465,19 +66940,386 @@ "id": { "type": "string" }, - "attributes": { + "icon": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" } } } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { "type": "array", "items": { "type": "object", @@ -21485,71 +67327,336 @@ "id": { "type": "string" }, - "attributes": { + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { "type": "object", "properties": { - "action": { + "id": { "type": "string" }, - "subject": { + "group_title": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -21559,125 +67666,147 @@ } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { "type": "object", "properties": {} } + }, + "locale": { + "type": "string" } } } @@ -21685,50 +67814,8 @@ } } } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - } - } - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "categories": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "Name": { - "type": "string" - }, - "Slug": { - "type": "string" }, - "Description": { - "type": "string" - }, - "services": { + "templates": { "type": "object", "properties": { "data": { @@ -22419,51 +68506,482 @@ } } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -22473,40 +68991,18 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" } } } - } - } - }, - "requirements": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "description": { - "type": "string" - }, - "list": { + "advantages": { "type": "array", "items": { "type": "object", @@ -22522,13 +69018,27 @@ } } }, - "why": { + "what": { "type": "object", "properties": { "id": { "type": "string" }, - "reasons": { + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { "type": "array", "items": { "type": "object", @@ -22859,20 +69369,467 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -22882,20 +69839,20 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -22905,294 +69862,255 @@ } } } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - }, - "advantages": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" } + }, + "label": { + "type": "string" } } } } }, - "what": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "goal_text": { - "type": "string" - } - } - }, - "how": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "timeline": { - "type": "array", - "items": { + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "icon": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "attributes": { + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "firstname": { "type": "string" }, - "attributes": { + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "attributes": { + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "action": { "type": "string" }, - "attributes": { + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { "type": "object", "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -23202,46 +70120,46 @@ } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -23251,52 +70169,52 @@ } } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -23305,21 +70223,21 @@ } } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -23328,51 +70246,48 @@ } } } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" } } + }, + "Text": { + "type": "string" } } } }, - "service_slug": { + "background": { "type": "string" }, - "is_functional": { - "type": "boolean" + "createdAt": { + "type": "string", + "format": "date-time" }, - "categories": { + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - }, - "express": { + "updatedBy": { "type": "object", "properties": { "data": { @@ -23383,860 +70298,2495 @@ }, "attributes": { "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "action": { "type": "string" }, - "attributes": { + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + }, + "meta": { + "type": "object", + "properties": { + "pagination": { + "properties": { + "page": { + "type": "integer" + }, + "pageSize": { + "type": "integer", + "minimum": 25 + }, + "pageCount": { + "type": "integer", + "maximum": 1 + }, + "total": { + "type": "integer" + } + } + } + } + } + } + }, + "TemplateResponse": { + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "label": { + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { "type": "string" }, - "item": { + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { "id": { "type": "string" }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { "type": "string" }, - "is_pros": { - "type": "boolean" - }, - "title": { + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { "type": "string" }, - "content": { - "type": "string" + "attributes": { + "type": "object", + "properties": {} } } } } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "updatedBy": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "data": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } + }, + "how": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" }, - "attributes": { + "updatedBy": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } } - }, - "localizations": { - "type": "array", - "items": { + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": {} } - }, - "locale": { - "type": "string" } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } @@ -24245,417 +72795,221 @@ } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } } } } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" - } - } - } - } - } - } - } - }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - }, - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + "title": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + "description": { "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} } } } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } - } - } - } - } - }, - "meta": { - "type": "object", - "properties": { - "pagination": { - "properties": { - "page": { - "type": "integer" }, - "pageSize": { - "type": "integer", - "minimum": 25 + "template_slug": { + "type": "string" }, - "pageCount": { - "type": "integer", - "maximum": 1 + "is_functional": { + "type": "boolean" }, - "total": { - "type": "integer" - } - } - } - } - } - } - }, - "ServiceResponse": { - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "icon": { + "categories": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "Name": { + "type": "string" + }, + "Slug": { + "type": "string" + }, + "Description": { + "type": "string" + }, + "services": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { + "id": { "type": "string" }, - "isActive": { - "type": "boolean" - }, - "roles": { + "attributes": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -24664,31 +73018,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -24736,45 +73273,20 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -24784,263 +73296,105 @@ } } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "campaign_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "duration_in_days": { + "type": "integer" + }, + "environment": { + "type": "string" + }, + "output_image": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "campaign_type": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "duration_in_days": { - "type": "integer" - }, - "environment": { - "type": "string" - }, - "output_image": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -25049,15 +73403,223 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { "type": "string" }, - "subject": { + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { "data": { @@ -25074,15 +73636,7 @@ } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + "updatedBy": { "type": "object", "properties": { "data": { @@ -25098,20 +73652,434 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "list": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "item": { + "type": "string" + } + } + } + } + } + }, + "why": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "reasons": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } @@ -25123,333 +74091,142 @@ } } }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" + "title": { + "type": "string" }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "description": { + "type": "string" + } + } + } + }, + "advantages": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "item": { + "type": "string" } } } } } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "what": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { + "description": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "goal_text": { + "type": "string" } } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "requirements": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "list": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "why": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "how": { "type": "object", "properties": { "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + "timeline": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { @@ -25458,31 +74235,214 @@ "attributes": { "type": "object", "properties": { - "action": { + "firstname": { "type": "string" }, - "subject": { + "lastname": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } } } } } }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, "createdAt": { "type": "string", "format": "date-time" @@ -25530,327 +74490,130 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - }, - "advantages": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "what": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "goal_text": { - "type": "string" - } - } - }, - "how": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "timeline": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "service_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { - "type": "array", - "items": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "is_featured": { + "type": "boolean" + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "cost": { + "type": "integer" + }, + "slug": { + "type": "string" + }, + "express_type": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { + "id": { "type": "string" }, - "users": { + "attributes": { "type": "object", "properties": { - "data": { + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "tags": { "type": "array", "items": { "type": "object", @@ -25858,19 +74621,386 @@ "id": { "type": "string" }, - "attributes": { + "icon": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" } } } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { + }, + "before_starting_info": { + "type": "string" + }, + "start_reasons": { "type": "array", "items": { "type": "object", @@ -25878,71 +75008,336 @@ "id": { "type": "string" }, - "attributes": { + "item": { + "type": "string" + } + } + } + }, + "webhook_url": { + "type": "string" + }, + "default_use_case_text": { + "type": "string" + }, + "use_cases_help": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "suggestions": { + "type": "array", + "items": { "type": "object", "properties": { - "action": { + "id": { "type": "string" }, - "subject": { + "group_title": { "type": "string" }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "is_pros": { + "type": "boolean" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } @@ -25952,125 +75347,147 @@ } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" } } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} } } } } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { + }, + "localizations": { + "type": "array", + "items": { "type": "object", "properties": {} } + }, + "locale": { + "type": "string" } } } @@ -26078,50 +75495,8 @@ } } } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - } - } - } - } - } - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "categories": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "Name": { - "type": "string" - }, - "Slug": { - "type": "string" }, - "Description": { - "type": "string" - }, - "services": { + "templates": { "type": "object", "properties": { "data": { @@ -26877,438 +76252,29 @@ "type": "string" }, "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "requirements": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "list": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "item": { - "type": "string" - } - } - } - } - } - }, - "why": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "reasons": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } + "type": "object", + "properties": {} } } } } } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" } } } + } + } + }, + "requirements": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "advantages": { + "description": { + "type": "string" + }, + "list": { "type": "array", "items": { "type": "object", @@ -27324,27 +76290,13 @@ } } }, - "what": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "description": { - "type": "string" - }, - "goal_text": { - "type": "string" - } - } - }, - "how": { + "why": { "type": "object", "properties": { "id": { "type": "string" }, - "timeline": { + "reasons": { "type": "array", "items": { "type": "object", @@ -27730,19 +76682,8 @@ } } } - } - } - }, - "service_slug": { - "type": "string" - }, - "is_functional": { - "type": "boolean" - }, - "categories": { - "type": "object", - "properties": { - "data": { + }, + "advantages": { "type": "array", "items": { "type": "object", @@ -27750,421 +76691,278 @@ "id": { "type": "string" }, - "attributes": { - "type": "object", - "properties": {} + "item": { + "type": "string" } } } } } }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" + "what": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "description": { + "type": "string" + }, + "goal_text": { + "type": "string" + } + } }, - "express": { + "how": { "type": "object", "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "cost": { - "type": "integer" - }, - "slug": { - "type": "string" - }, - "express_type": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "tags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "icon": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "alternativeText": { - "type": "string" - }, - "caption": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "formats": {}, - "hash": { - "type": "string" - }, - "ext": { - "type": "string" - }, - "mime": { - "type": "string" - }, - "size": { - "type": "number", - "format": "float" - }, - "url": { - "type": "string" - }, - "previewUrl": { - "type": "string" - }, - "provider": { - "type": "string" - }, - "provider_metadata": {}, - "related": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - } - } - } - } - } - } - } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + "id": { + "type": "string" + }, + "timeline": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "action": { "type": "string" }, - "attributes": { + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -28172,277 +76970,443 @@ } } } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" }, - "updatedBy": { + "attributes": { "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} } } } } } } - }, - "label": { - "type": "string" } } } - }, - "before_starting_info": { - "type": "string" - }, - "start_reasons": { - "type": "array", - "items": { + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { "id": { "type": "string" }, - "item": { - "type": "string" - } - } - } - }, - "webhook_url": { - "type": "string" - }, - "default_use_case_text": { - "type": "string" - }, - "use_cases_help": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "title": { - "type": "string" - }, - "description": { - "type": "string" - }, - "suggestions": { - "type": "array", - "items": { + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "group_title": { - "type": "string" - }, - "items": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "is_pros": { - "type": "boolean" - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - } - } - } - } - } + "properties": {} } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + } + } + } + } + } + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + } + } + } + } + } + }, + "template_slug": { + "type": "string" + }, + "is_functional": { + "type": "boolean" + }, + "categories": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "firstname": { "type": "string" }, - "attributes": { + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { "type": "object", "properties": { - "firstname": { - "type": "string" - }, - "lastname": { - "type": "string" - }, - "username": { - "type": "string" - }, - "email": { - "type": "string", - "format": "email" - }, - "resetPasswordToken": { - "type": "string" - }, - "registrationToken": { - "type": "string" - }, - "isActive": { - "type": "boolean" - }, - "roles": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "name": { "type": "string" }, - "attributes": { + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "code": { - "type": "string" - }, - "description": { - "type": "string" - }, - "users": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } - }, - "permissions": { - "type": "object", - "properties": { - "data": { - "type": "array", - "items": { + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "action": { "type": "string" }, - "attributes": { + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { "type": "object", "properties": { - "action": { - "type": "string" - }, - "subject": { - "type": "string" - }, - "properties": {}, - "conditions": {}, - "role": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -28452,44 +77416,386 @@ } } } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", "properties": { - "id": { + "action": { "type": "string" }, - "attributes": { + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { "type": "object", - "properties": {} + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } @@ -28497,56 +77803,541 @@ } } } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } } } } } - }, - "blocked": { - "type": "boolean" - }, - "preferedLanguage": { - "type": "string" - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "Text": { + "type": "string" + } + } + } + }, + "background": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "publishedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "localizations": { + "type": "array", + "items": { + "type": "object", + "properties": {} + } + }, + "locale": { + "type": "string" + } + } + } + } + } + } + } + }, + "sort_order": { + "type": "integer" + }, + "express": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "Price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "price": { + "type": "string" + }, + "previous_price": { + "type": "string" + }, + "is_strikethrough": { + "type": "boolean" + }, + "tag_price": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } - }, - "updatedBy": { + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { "type": "object", "properties": { - "data": { + "id": { + "type": "string" + }, + "attributes": { "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } + "properties": {} } } } @@ -28555,81 +78346,434 @@ } } } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + } + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + } + } + } + } + } + }, + "label": { + "type": "string" + } + } + } + } + }, + "output": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "Icon": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "alternativeText": { + "type": "string" + }, + "caption": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "formats": {}, + "hash": { + "type": "string" + }, + "ext": { + "type": "string" + }, + "mime": { + "type": "string" + }, + "size": { + "type": "number", + "format": "float" + }, + "url": { + "type": "string" + }, + "previewUrl": { + "type": "string" + }, + "provider": { + "type": "string" + }, + "provider_metadata": {}, + "related": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "firstname": { + "type": "string" + }, + "lastname": { + "type": "string" + }, + "username": { + "type": "string" + }, + "email": { + "type": "string", + "format": "email" + }, + "resetPasswordToken": { + "type": "string" + }, + "registrationToken": { + "type": "string" + }, + "isActive": { + "type": "boolean" + }, + "roles": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "code": { + "type": "string" + }, + "description": { + "type": "string" + }, + "users": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + } + }, + "permissions": { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": { + "action": { + "type": "string" + }, + "subject": { + "type": "string" + }, + "properties": {}, + "conditions": {}, + "role": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } + } + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } + } } } } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } @@ -28639,156 +78783,92 @@ } } } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "blocked": { + "type": "boolean" + }, + "preferedLanguage": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + }, + "createdBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} + }, + "updatedBy": { + "type": "object", + "properties": { + "data": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } } } } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } } } } } - } - } - }, - "createdAt": { - "type": "string", - "format": "date-time" - }, - "updatedAt": { - "type": "string", - "format": "date-time" - }, - "publishedAt": { - "type": "string", - "format": "date-time" - }, - "createdBy": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } - }, - "updatedBy": { - "type": "object", - "properties": { - "data": { + }, + "updatedBy": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "attributes": { + "data": { "type": "object", - "properties": {} + "properties": { + "id": { + "type": "string" + }, + "attributes": { + "type": "object", + "properties": {} + } + } } } } } - }, - "localizations": { - "type": "array", - "items": { - "type": "object", - "properties": {} - } - }, - "locale": { - "type": "string" } } } } + }, + "Text": { + "type": "string" } } } }, - "is_featured": { - "type": "boolean" - }, - "sort_order": { - "type": "integer" - }, - "express": { - "type": "object", - "properties": { - "data": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "attributes": { - "type": "object", - "properties": {} - } - } - } - } + "background": { + "type": "string" }, "createdAt": { "type": "string", @@ -36738,15 +86818,1617 @@ } } }, - "meta": { - "type": "object" + "meta": { + "type": "object" + } + } + } + } + }, + "paths": { + "/categories": { + "get": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CategoryListResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Category"], + "parameters": [ + { + "name": "sort", + "in": "query", + "description": "Sort by attributes ascending (asc) or descending (desc)", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "pagination[withCount]", + "in": "query", + "description": "Retun page/pageSize (default: true)", + "deprecated": false, + "required": false, + "schema": { + "type": "boolean" + } + }, + { + "name": "pagination[page]", + "in": "query", + "description": "Page number (default: 0)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[pageSize]", + "in": "query", + "description": "Page size (default: 25)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[start]", + "in": "query", + "description": "Offset value (default: 0)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[limit]", + "in": "query", + "description": "Number of entities to return (default: 25)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "fields", + "in": "query", + "description": "Fields to return (ex: title,author)", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "populate", + "in": "query", + "description": "Relations to return", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + } + ], + "operationId": "get/categories" + }, + "post": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CategoryResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Category"], + "parameters": [], + "operationId": "post/categories", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CategoryRequest" + } + } + } + } + } + }, + "/categories/{id}": { + "get": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CategoryResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Category"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "get/categories/{id}" + }, + "put": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CategoryResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Category"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "put/categories/{id}", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CategoryRequest" + } + } + } + } + }, + "delete": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Category"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "delete/categories/{id}" + } + }, + "/categories/{id}/localizations": { + "post": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CategoryLocalizationResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Category"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "post/categories/{id}/localizations", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CategoryLocalizationRequest" + } + } + } + } + } + }, + "/expresses": { + "get": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressListResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express"], + "parameters": [ + { + "name": "sort", + "in": "query", + "description": "Sort by attributes ascending (asc) or descending (desc)", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "pagination[withCount]", + "in": "query", + "description": "Retun page/pageSize (default: true)", + "deprecated": false, + "required": false, + "schema": { + "type": "boolean" + } + }, + { + "name": "pagination[page]", + "in": "query", + "description": "Page number (default: 0)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[pageSize]", + "in": "query", + "description": "Page size (default: 25)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[start]", + "in": "query", + "description": "Offset value (default: 0)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[limit]", + "in": "query", + "description": "Number of entities to return (default: 25)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "fields", + "in": "query", + "description": "Fields to return (ex: title,author)", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "populate", + "in": "query", + "description": "Relations to return", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + } + ], + "operationId": "get/expresses" + }, + "post": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express"], + "parameters": [], + "operationId": "post/expresses", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressRequest" + } + } + } + } + } + }, + "/expresses/{id}": { + "get": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "get/expresses/{id}" + }, + "put": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "put/expresses/{id}", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressRequest" + } + } + } + } + }, + "delete": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "delete/expresses/{id}" + } + }, + "/express-types": { + "get": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressTypeListResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express-type"], + "parameters": [ + { + "name": "sort", + "in": "query", + "description": "Sort by attributes ascending (asc) or descending (desc)", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "pagination[withCount]", + "in": "query", + "description": "Retun page/pageSize (default: true)", + "deprecated": false, + "required": false, + "schema": { + "type": "boolean" + } + }, + { + "name": "pagination[page]", + "in": "query", + "description": "Page number (default: 0)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[pageSize]", + "in": "query", + "description": "Page size (default: 25)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[start]", + "in": "query", + "description": "Offset value (default: 0)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[limit]", + "in": "query", + "description": "Number of entities to return (default: 25)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "fields", + "in": "query", + "description": "Fields to return (ex: title,author)", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "populate", + "in": "query", + "description": "Relations to return", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + } + ], + "operationId": "get/express-types" + }, + "post": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressTypeResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express-type"], + "parameters": [], + "operationId": "post/express-types", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressTypeRequest" + } + } + } + } + } + }, + "/express-types/{id}": { + "get": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressTypeResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express-type"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "get/express-types/{id}" + }, + "put": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressTypeResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express-type"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "put/express-types/{id}", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressTypeRequest" + } + } } } + }, + "delete": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "integer", + "format": "int64" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express-type"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "delete/express-types/{id}" } - } - }, - "paths": { - "/categories": { + }, + "/express-types/{id}/localizations": { + "post": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressTypeLocalizationResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Express-type"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "post/express-types/{id}/localizations", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ExpressTypeLocalizationRequest" + } + } + } + } + } + }, + "/help-links": { "get": { "responses": { "200": { @@ -36754,7 +88436,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CategoryListResponse" + "$ref": "#/components/schemas/HelpLinkListResponse" } } } @@ -36810,7 +88492,7 @@ } } }, - "tags": ["Category"], + "tags": ["Help-link"], "parameters": [ { "name": "sort", @@ -36893,7 +88575,7 @@ } } ], - "operationId": "get/categories" + "operationId": "get/help-links" }, "post": { "responses": { @@ -36902,7 +88584,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CategoryResponse" + "$ref": "#/components/schemas/HelpLinkResponse" } } } @@ -36958,22 +88640,22 @@ } } }, - "tags": ["Category"], + "tags": ["Help-link"], "parameters": [], - "operationId": "post/categories", + "operationId": "post/help-links", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CategoryRequest" + "$ref": "#/components/schemas/HelpLinkRequest" } } } } } }, - "/categories/{id}": { + "/help-links/{id}": { "get": { "responses": { "200": { @@ -36981,7 +88663,174 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CategoryResponse" + "$ref": "#/components/schemas/HelpLinkResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Help-link"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "get/help-links/{id}" + }, + "put": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HelpLinkResponse" + } + } + } + }, + "400": { + "description": "Bad Request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "401": { + "description": "Unauthorized", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "404": { + "description": "Not Found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + }, + "500": { + "description": "Internal Server Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Error" + } + } + } + } + }, + "tags": ["Help-link"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "put/help-links/{id}", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HelpLinkRequest" + } + } + } + } + }, + "delete": { + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "type": "integer", + "format": "int64" } } } @@ -37037,7 +88886,7 @@ } } }, - "tags": ["Category"], + "tags": ["Help-link"], "parameters": [ { "name": "id", @@ -37050,16 +88899,18 @@ } } ], - "operationId": "get/categories/{id}" - }, - "put": { + "operationId": "delete/help-links/{id}" + } + }, + "/help-links/{id}/localizations": { + "post": { "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CategoryResponse" + "$ref": "#/components/schemas/HelpLinkLocalizationResponse" } } } @@ -37115,7 +88966,7 @@ } } }, - "tags": ["Category"], + "tags": ["Help-link"], "parameters": [ { "name": "id", @@ -37128,27 +88979,28 @@ } } ], - "operationId": "put/categories/{id}", + "operationId": "post/help-links/{id}/localizations", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CategoryRequest" + "$ref": "#/components/schemas/HelpLinkLocalizationRequest" } } } } - }, - "delete": { + } + }, + "/manuals": { + "get": { "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { - "type": "integer", - "format": "int64" + "$ref": "#/components/schemas/ManualListResponse" } } } @@ -37204,23 +89056,91 @@ } } }, - "tags": ["Category"], + "tags": ["Manual"], "parameters": [ { - "name": "id", - "in": "path", - "description": "", + "name": "sort", + "in": "query", + "description": "Sort by attributes ascending (asc) or descending (desc)", "deprecated": false, - "required": true, + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "pagination[withCount]", + "in": "query", + "description": "Retun page/pageSize (default: true)", + "deprecated": false, + "required": false, + "schema": { + "type": "boolean" + } + }, + { + "name": "pagination[page]", + "in": "query", + "description": "Page number (default: 0)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[pageSize]", + "in": "query", + "description": "Page size (default: 25)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[start]", + "in": "query", + "description": "Offset value (default: 0)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "pagination[limit]", + "in": "query", + "description": "Number of entities to return (default: 25)", + "deprecated": false, + "required": false, + "schema": { + "type": "integer" + } + }, + { + "name": "fields", + "in": "query", + "description": "Fields to return (ex: title,author)", + "deprecated": false, + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "populate", + "in": "query", + "description": "Relations to return", + "deprecated": false, + "required": false, "schema": { "type": "string" } } ], - "operationId": "delete/categories/{id}" - } - }, - "/categories/{id}/localizations": { + "operationId": "get/manuals" + }, "post": { "responses": { "200": { @@ -37228,7 +89148,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CategoryLocalizationResponse" + "$ref": "#/components/schemas/ManualResponse" } } } @@ -37284,33 +89204,22 @@ } } }, - "tags": ["Category"], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ], - "operationId": "post/categories/{id}/localizations", + "tags": ["Manual"], + "parameters": [], + "operationId": "post/manuals", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CategoryLocalizationRequest" + "$ref": "#/components/schemas/ManualRequest" } } } } } }, - "/expresses": { + "/manuals/{id}": { "get": { "responses": { "200": { @@ -37318,7 +89227,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressListResponse" + "$ref": "#/components/schemas/ManualResponse" } } } @@ -37374,99 +89283,29 @@ } } }, - "tags": ["Express"], + "tags": ["Manual"], "parameters": [ { - "name": "sort", - "in": "query", - "description": "Sort by attributes ascending (asc) or descending (desc)", - "deprecated": false, - "required": false, - "schema": { - "type": "string" - } - }, - { - "name": "pagination[withCount]", - "in": "query", - "description": "Retun page/pageSize (default: true)", - "deprecated": false, - "required": false, - "schema": { - "type": "boolean" - } - }, - { - "name": "pagination[page]", - "in": "query", - "description": "Page number (default: 0)", - "deprecated": false, - "required": false, - "schema": { - "type": "integer" - } - }, - { - "name": "pagination[pageSize]", - "in": "query", - "description": "Page size (default: 25)", - "deprecated": false, - "required": false, - "schema": { - "type": "integer" - } - }, - { - "name": "pagination[start]", - "in": "query", - "description": "Offset value (default: 0)", - "deprecated": false, - "required": false, - "schema": { - "type": "integer" - } - }, - { - "name": "pagination[limit]", - "in": "query", - "description": "Number of entities to return (default: 25)", - "deprecated": false, - "required": false, - "schema": { - "type": "integer" - } - }, - { - "name": "fields", - "in": "query", - "description": "Fields to return (ex: title,author)", - "deprecated": false, - "required": false, - "schema": { - "type": "string" - } - }, - { - "name": "populate", - "in": "query", - "description": "Relations to return", + "name": "id", + "in": "path", + "description": "", "deprecated": false, - "required": false, + "required": true, "schema": { "type": "string" } } ], - "operationId": "get/expresses" + "operationId": "get/manuals/{id}" }, - "post": { + "put": { "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressResponse" + "$ref": "#/components/schemas/ManualResponse" } } } @@ -37522,30 +89361,40 @@ } } }, - "tags": ["Express"], - "parameters": [], - "operationId": "post/expresses", + "tags": ["Manual"], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "", + "deprecated": false, + "required": true, + "schema": { + "type": "string" + } + } + ], + "operationId": "put/manuals/{id}", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressRequest" + "$ref": "#/components/schemas/ManualRequest" } } } } - } - }, - "/expresses/{id}": { - "get": { + }, + "delete": { "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressResponse" + "type": "integer", + "format": "int64" } } } @@ -37601,7 +89450,7 @@ } } }, - "tags": ["Express"], + "tags": ["Manual"], "parameters": [ { "name": "id", @@ -37614,16 +89463,18 @@ } } ], - "operationId": "get/expresses/{id}" - }, - "put": { + "operationId": "delete/manuals/{id}" + } + }, + "/manuals/{id}/localizations": { + "post": { "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressResponse" + "$ref": "#/components/schemas/ManualLocalizationResponse" } } } @@ -37679,7 +89530,7 @@ } } }, - "tags": ["Express"], + "tags": ["Manual"], "parameters": [ { "name": "id", @@ -37692,99 +89543,20 @@ } } ], - "operationId": "put/expresses/{id}", + "operationId": "post/manuals/{id}/localizations", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressRequest" + "$ref": "#/components/schemas/ManualLocalizationRequest" } } } } - }, - "delete": { - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "type": "integer", - "format": "int64" - } - } - } - }, - "400": { - "description": "Bad Request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "401": { - "description": "Unauthorized", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not Found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "500": { - "description": "Internal Server Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "tags": ["Express"], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ], - "operationId": "delete/expresses/{id}" } }, - "/express-types": { + "/promos": { "get": { "responses": { "200": { @@ -37792,7 +89564,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressTypeListResponse" + "$ref": "#/components/schemas/PromoListResponse" } } } @@ -37848,7 +89620,7 @@ } } }, - "tags": ["Express-type"], + "tags": ["Promo"], "parameters": [ { "name": "sort", @@ -37931,7 +89703,7 @@ } } ], - "operationId": "get/express-types" + "operationId": "get/promos" }, "post": { "responses": { @@ -37940,7 +89712,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressTypeResponse" + "$ref": "#/components/schemas/PromoResponse" } } } @@ -37996,22 +89768,22 @@ } } }, - "tags": ["Express-type"], + "tags": ["Promo"], "parameters": [], - "operationId": "post/express-types", + "operationId": "post/promos", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressTypeRequest" + "$ref": "#/components/schemas/PromoRequest" } } } } } }, - "/express-types/{id}": { + "/promos/{id}": { "get": { "responses": { "200": { @@ -38019,7 +89791,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressTypeResponse" + "$ref": "#/components/schemas/PromoResponse" } } } @@ -38075,7 +89847,7 @@ } } }, - "tags": ["Express-type"], + "tags": ["Promo"], "parameters": [ { "name": "id", @@ -38088,7 +89860,7 @@ } } ], - "operationId": "get/express-types/{id}" + "operationId": "get/promos/{id}" }, "put": { "responses": { @@ -38097,7 +89869,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressTypeResponse" + "$ref": "#/components/schemas/PromoResponse" } } } @@ -38153,7 +89925,7 @@ } } }, - "tags": ["Express-type"], + "tags": ["Promo"], "parameters": [ { "name": "id", @@ -38166,13 +89938,13 @@ } } ], - "operationId": "put/express-types/{id}", + "operationId": "put/promos/{id}", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ExpressTypeRequest" + "$ref": "#/components/schemas/PromoRequest" } } } @@ -38242,87 +90014,7 @@ } } }, - "tags": ["Express-type"], - "parameters": [ - { - "name": "id", - "in": "path", - "description": "", - "deprecated": false, - "required": true, - "schema": { - "type": "string" - } - } - ], - "operationId": "delete/express-types/{id}" - } - }, - "/express-types/{id}/localizations": { - "post": { - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ExpressTypeLocalizationResponse" - } - } - } - }, - "400": { - "description": "Bad Request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "401": { - "description": "Unauthorized", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "403": { - "description": "Forbidden", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "404": { - "description": "Not Found", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - }, - "500": { - "description": "Internal Server Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } - } - } - } - }, - "tags": ["Express-type"], + "tags": ["Promo"], "parameters": [ { "name": "id", @@ -38335,20 +90027,10 @@ } } ], - "operationId": "post/express-types/{id}/localizations", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ExpressTypeLocalizationRequest" - } - } - } - } + "operationId": "delete/promos/{id}" } }, - "/manuals": { + "/services": { "get": { "responses": { "200": { @@ -38356,7 +90038,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ManualListResponse" + "$ref": "#/components/schemas/ServiceListResponse" } } } @@ -38412,7 +90094,7 @@ } } }, - "tags": ["Manual"], + "tags": ["Service"], "parameters": [ { "name": "sort", @@ -38495,7 +90177,7 @@ } } ], - "operationId": "get/manuals" + "operationId": "get/services" }, "post": { "responses": { @@ -38504,7 +90186,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ManualResponse" + "$ref": "#/components/schemas/ServiceResponse" } } } @@ -38560,22 +90242,22 @@ } } }, - "tags": ["Manual"], + "tags": ["Service"], "parameters": [], - "operationId": "post/manuals", + "operationId": "post/services", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ManualRequest" + "$ref": "#/components/schemas/ServiceRequest" } } } } } }, - "/manuals/{id}": { + "/services/{id}": { "get": { "responses": { "200": { @@ -38583,7 +90265,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ManualResponse" + "$ref": "#/components/schemas/ServiceResponse" } } } @@ -38639,7 +90321,7 @@ } } }, - "tags": ["Manual"], + "tags": ["Service"], "parameters": [ { "name": "id", @@ -38652,7 +90334,7 @@ } } ], - "operationId": "get/manuals/{id}" + "operationId": "get/services/{id}" }, "put": { "responses": { @@ -38661,7 +90343,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ManualResponse" + "$ref": "#/components/schemas/ServiceResponse" } } } @@ -38717,7 +90399,7 @@ } } }, - "tags": ["Manual"], + "tags": ["Service"], "parameters": [ { "name": "id", @@ -38730,13 +90412,13 @@ } } ], - "operationId": "put/manuals/{id}", + "operationId": "put/services/{id}", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ManualRequest" + "$ref": "#/components/schemas/ServiceRequest" } } } @@ -38806,7 +90488,7 @@ } } }, - "tags": ["Manual"], + "tags": ["Service"], "parameters": [ { "name": "id", @@ -38819,10 +90501,10 @@ } } ], - "operationId": "delete/manuals/{id}" + "operationId": "delete/services/{id}" } }, - "/manuals/{id}/localizations": { + "/services/{id}/localizations": { "post": { "responses": { "200": { @@ -38830,7 +90512,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ManualLocalizationResponse" + "$ref": "#/components/schemas/ServiceLocalizationResponse" } } } @@ -38886,7 +90568,7 @@ } } }, - "tags": ["Manual"], + "tags": ["Service"], "parameters": [ { "name": "id", @@ -38899,20 +90581,20 @@ } } ], - "operationId": "post/manuals/{id}/localizations", + "operationId": "post/services/{id}/localizations", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ManualLocalizationRequest" + "$ref": "#/components/schemas/ServiceLocalizationRequest" } } } } } }, - "/services": { + "/templates": { "get": { "responses": { "200": { @@ -38920,7 +90602,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ServiceListResponse" + "$ref": "#/components/schemas/TemplateListResponse" } } } @@ -38976,7 +90658,7 @@ } } }, - "tags": ["Service"], + "tags": ["Template"], "parameters": [ { "name": "sort", @@ -39059,7 +90741,7 @@ } } ], - "operationId": "get/services" + "operationId": "get/templates" }, "post": { "responses": { @@ -39068,7 +90750,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ServiceResponse" + "$ref": "#/components/schemas/TemplateResponse" } } } @@ -39124,22 +90806,22 @@ } } }, - "tags": ["Service"], + "tags": ["Template"], "parameters": [], - "operationId": "post/services", + "operationId": "post/templates", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ServiceRequest" + "$ref": "#/components/schemas/TemplateRequest" } } } } } }, - "/services/{id}": { + "/templates/{id}": { "get": { "responses": { "200": { @@ -39147,7 +90829,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ServiceResponse" + "$ref": "#/components/schemas/TemplateResponse" } } } @@ -39203,7 +90885,7 @@ } } }, - "tags": ["Service"], + "tags": ["Template"], "parameters": [ { "name": "id", @@ -39216,7 +90898,7 @@ } } ], - "operationId": "get/services/{id}" + "operationId": "get/templates/{id}" }, "put": { "responses": { @@ -39225,7 +90907,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ServiceResponse" + "$ref": "#/components/schemas/TemplateResponse" } } } @@ -39281,7 +90963,7 @@ } } }, - "tags": ["Service"], + "tags": ["Template"], "parameters": [ { "name": "id", @@ -39294,13 +90976,13 @@ } } ], - "operationId": "put/services/{id}", + "operationId": "put/templates/{id}", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ServiceRequest" + "$ref": "#/components/schemas/TemplateRequest" } } } @@ -39370,7 +91052,7 @@ } } }, - "tags": ["Service"], + "tags": ["Template"], "parameters": [ { "name": "id", @@ -39383,10 +91065,10 @@ } } ], - "operationId": "delete/services/{id}" + "operationId": "delete/templates/{id}" } }, - "/services/{id}/localizations": { + "/templates/{id}/localizations": { "post": { "responses": { "200": { @@ -39394,7 +91076,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ServiceLocalizationResponse" + "$ref": "#/components/schemas/TemplateLocalizationResponse" } } } @@ -39450,7 +91132,7 @@ } } }, - "tags": ["Service"], + "tags": ["Template"], "parameters": [ { "name": "id", @@ -39463,13 +91145,13 @@ } } ], - "operationId": "post/services/{id}/localizations", + "operationId": "post/templates/{id}/localizations", "requestBody": { "required": true, "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/ServiceLocalizationRequest" + "$ref": "#/components/schemas/TemplateLocalizationRequest" } } } diff --git a/src/features/backoffice/strapi.ts b/src/features/backoffice/strapi.ts index 332aa883c..10cb5a52b 100644 --- a/src/features/backoffice/strapi.ts +++ b/src/features/backoffice/strapi.ts @@ -1,18 +1,19 @@ import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'; import { stringify } from 'qs'; import { - GetServicesApiResponse, - GetServicesByIdApiResponse, GetCategoriesApiResponse, - GetServicesApiArg, GetCategoriesByIdApiArg, GetCategoriesByIdApiResponse, - GetExpressesApiResponse, GetExpressesApiArg, - GetExpressTypesByIdApiResponse, + GetExpressesApiResponse, GetExpressTypesByIdApiArg, - GetManualsApiResponse, + GetExpressTypesByIdApiResponse, GetManualsApiArg, + GetManualsApiResponse, + GetServicesApiArg, + GetServicesApiResponse, + GetServicesByIdApiResponse, + GetTemplatesByIdApiResponse, } from '.'; interface GetFullServicesByIdArgs { @@ -72,6 +73,8 @@ export const strapiSlice = createApi({ return headers; }, + + paramsSerializer: (params) => stringify(params, { encodeValuesOnly: true }), }), endpoints: (builder) => ({ geti18nServices: builder.query({ @@ -199,6 +202,24 @@ export const strapiSlice = createApi({ }, } ), + + getFullTemplatesById: builder.query< + GetTemplatesByIdApiResponse, + GetFullServicesByIdArgs + >({ + query: (queryArg) => { + let url = `/templates/${queryArg.id}`; + const args: GetFullServicesByIdArgs = { + id: queryArg.id, + ...(queryArg.locale && { locale: queryArg.locale }), + ...(queryArg.populate && { populate: queryArg.populate }), + ...(queryArg.filters && { filters: queryArg.filters }), + }; + const params = stringify(args, { encodeValuesOnly: true }); + params ? (url += `?${params}`) : null; + return { url }; + }, + }), }), }); @@ -222,9 +243,9 @@ export interface StrapiIcon { } export interface TagItem { - id: number; + id: string; label: string; - icon: StrapiIcon; + icon: string; } export const { @@ -236,4 +257,5 @@ export const { useGeti18nExpressTypesQuery, useGeti18nExpressTypesByIdQuery, useGeti18nManualsQuery, + useGetFullTemplatesByIdQuery, } = strapiSlice; diff --git a/src/features/express/expressSlice.ts b/src/features/express/expressSlice.ts index 9edf1014f..a10168012 100644 --- a/src/features/express/expressSlice.ts +++ b/src/features/express/expressSlice.ts @@ -4,6 +4,7 @@ import { Project } from '../api'; export interface ExpressWizardState { steps: { [key: string]: Step }; expressTypeId: number; + templateId: number; project?: Project; projectLocked?: boolean; isWizardOpen?: boolean; @@ -24,6 +25,7 @@ const initialState: ExpressWizardState = { steps: {}, projectLocked: false, expressTypeId: 0, + templateId: 0, }; const expressSlice = createSlice({ @@ -71,6 +73,9 @@ const expressSlice = createSlice({ setExpressTypeId: (state, action) => { state.expressTypeId = action.payload; }, + setExpressTemplateId: (state, action) => { + state.templateId = action.payload; + }, resetExpressTypeId: (state) => { state.expressTypeId = 0; }, @@ -91,6 +96,7 @@ export const { setExpressProject, lockProject, setExpressTypeId, + setExpressTemplateId, resetExpressTypeId, } = expressSlice.actions; diff --git a/src/features/navigation/Navigation.tsx b/src/features/navigation/Navigation.tsx index 88f63b6a5..f695b3f08 100644 --- a/src/features/navigation/Navigation.tsx +++ b/src/features/navigation/Navigation.tsx @@ -104,6 +104,9 @@ export const Navigation = ({ case 'insights': dispatch(setSidebarOpen(false)); break; + case 'template': + dispatch(setSidebarOpen(false)); + break; default: dispatch(setSidebarOpen(true)); break; diff --git a/src/hooks/useCampaignTemplateById.ts b/src/hooks/useCampaignTemplateById.ts new file mode 100644 index 000000000..33cf6b0a0 --- /dev/null +++ b/src/hooks/useCampaignTemplateById.ts @@ -0,0 +1,116 @@ +import { extractStrapiData } from 'src/common/getStrapiData'; +import { STRAPI_URL } from 'src/constants'; +import { useGetFullTemplatesByIdQuery } from 'src/features/backoffice/strapi'; + +const useCampaignTemplateById = (id: string) => { + const { data, isLoading, isError } = useGetFullTemplatesByIdQuery({ + id, + populate: { + icon: '*', + Price: { + populate: { + tag_price: { + populate: '*', + }, + }, + }, + output: { + populate: '*', + }, + requirements: { + populate: '*', + }, + express: { + populate: '*', + }, + sort_order: { + populate: '*', + }, + why: { + populate: { + reasons: { + populate: '*', + }, + advantages: { + populate: '*', + }, + }, + }, + how: { + populate: { + timeline: { + populate: '*', + }, + }, + }, + what: { + populate: '*', + }, + output_image: { + populate: '*', + }, + campaign_type: { + populate: '*', + }, + locale: { + populate: '*', + }, + }, + }); + + const priceIconData = + data?.data?.attributes?.Price?.tag_price?.icon?.data?.attributes; + + const templateData = { + id, + price: { + price: data?.data?.attributes?.Price?.price || 0, // mandatory field + previousPrice: data?.data?.attributes?.Price?.previous_price, + isStrikeThrough: data?.data?.attributes?.Price?.is_strikethrough, + ...data?.data?.attributes?.Price?.tag_price, + icon: priceIconData?.url ? `${STRAPI_URL}${priceIconData.url}` : '', + }, + tags: data?.data?.attributes?.output // output field is mandatory on strapi backoffice + ? data?.data?.attributes?.output?.map((o) => { + const oUrl = o.Icon?.data?.attributes?.url; + return { + label: o.Text ?? '', + icon: oUrl ? `${STRAPI_URL}${oUrl}` : '', + id: o.id ?? '', + }; + }) + : [], + requirements: data?.data?.attributes?.requirements, + description: data?.data?.attributes?.description || '', + title: data?.data?.attributes?.title || '', + slug: data?.data?.attributes?.template_slug || '', + sortOrder: data?.data?.attributes?.sort_order || 0, + express: data?.data?.attributes?.express, + why: data?.data?.attributes?.why, + ...(data?.data?.attributes?.how && { + how: { + timeline: data?.data?.attributes?.how?.timeline || [], // mandatory field + }, + }), + ...(data?.data?.attributes?.what && { + what: { + description: data?.data?.attributes?.what?.description || '', // mandatory field + goalText: data?.data?.attributes?.what?.goal_text, + }, + }), + campaignType: data?.data?.attributes?.campaign_type || '', + ...(data?.data?.attributes?.output_image?.data && { + outputImage: `${STRAPI_URL}${ + extractStrapiData(data?.data?.attributes?.output_image).url + }`, + }), + }; + + return { + data: templateData, + isLoading, + isError, + }; +}; + +export { useCampaignTemplateById }; diff --git a/src/hooks/useCampaignTemplates.ts b/src/hooks/useCampaignTemplates.ts new file mode 100644 index 000000000..0f02d60be --- /dev/null +++ b/src/hooks/useCampaignTemplates.ts @@ -0,0 +1,54 @@ +import { STRAPI_URL } from 'src/constants'; +import { useGetTemplatesQuery } from 'src/features/backoffice'; + +const useCampaignTemplates = () => { + const { data, isLoading, isError } = useGetTemplatesQuery({ + // @ts-ignore + populate: { + icon: '*', + Price: '*', + output: { + populate: '*', + }, + express: { + populate: '*', + }, + }, + sort: 'sort_order', + }); + return { + data: (data?.data || []) + .filter( + (item) => + // @ts-ignore + item.attributes?.express?.data?.attributes?.express_type?.data + ) + .map((item) => { + const iconUrl = item.attributes?.icon?.data?.attributes?.url; + + const output = item.attributes?.output?.map((o) => { + const oUrl = o.Icon?.data?.attributes?.url; + return { + text: o.Text, + iconUrl: oUrl ? `${STRAPI_URL}${oUrl}` : '', + }; + }); + + return { + templateId: item.id, + ...item.attributes, + icon: iconUrl ? `${STRAPI_URL}${iconUrl}` : '', + output: output || [], + expressId: Number( + // @ts-ignore + item.attributes?.express?.data?.attributes?.express_type?.data + ?.id || '0' + ), + }; + }), + isLoading, + isError, + }; +}; + +export { useCampaignTemplates }; diff --git a/src/locales/ach/translation.json b/src/locales/ach/translation.json index 8731b9fae..6db9d8484 100644 --- a/src/locales/ach/translation.json +++ b/src/locales/ach/translation.json @@ -101,7 +101,7 @@ "__BUGS_PAGE_FILTER_DRAWER_BODY_BUG_LABEL": "crwdns4123:0crwdne4123:0", "__BUGS_PAGE_FILTER_DRAWER_BODY_COMMON_LABEL": "crwdns4125:0crwdne4125:0", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUS_ALL_LABEL": "crwdns5379:0crwdne5379:0", - "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSE_TITLE": "crwdns5381:0crwdne5381:0", + "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_TITLE": "crwdns5381:0crwdne5381:0", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_LESS_LABEL": "crwdns5383:0crwdne5383:0", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_MORE_LABEL_one": "crwdns5385:0crwdne5385:0", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_MORE_LABEL_other": "crwdns5387:0{{count}}crwdne5387:0", diff --git a/src/locales/en/translation.json b/src/locales/en/translation.json index 555b719a2..a6ce91227 100644 --- a/src/locales/en/translation.json +++ b/src/locales/en/translation.json @@ -10,6 +10,8 @@ "__APP_HOURS_LABEL_many": "hours", "__APP_HOURS_LABEL_other": "hours", "__APP_LANGUANGE_EN_TEXT": "English", + "__APP_LANGUANGE_ES_TEXT": "Spanish", + "__APP_LANGUANGE_FR_TEXT": "French", "__APP_LANGUANGE_IT_TEXT": "Italian", "__APP_META_DESCRIPTION": "UNGUESS provides collective wisdom to improve your decision-making process. Eliminate inefficiencies with our testing, monitoring and research platform.", "__APP_META_PAYOFF": "Be smart from the start", @@ -64,6 +66,7 @@ "__BUG_PAGE_HEADER_FILTER_OS": "OS", "__BUG_PAGE_HEADER_FILTER_PRIORITIES": "Priorities", "__BUG_PAGE_HEADER_FILTER_REPLICABILITIES": "Replicabilities", + "__BUG_PAGE_HEADER_FILTER_SEARCH": "Search", "__BUG_PAGE_HEADER_FILTER_SEVERITIES": "Severities", "__BUG_PAGE_HEADER_FILTER_STATUS": "Status", "__BUG_PAGE_HEADER_FILTER_TAGS": "Tags", @@ -71,7 +74,6 @@ "__BUG_PAGE_HEADER_FILTER_UNIQUE": "Unique only", "__BUG_PAGE_HEADER_FILTER_UNREAD": "Unread only", "__BUG_PAGE_HEADER_FILTER_USECASE": "Usecases", - "__BUG_PAGE_HEADER_FILTER_SEARCH": "Search", "__BUG_PAGE_HEADER_FILTERS_APPLIED": "Applied filters", "__BUG_PAGE_HEADER_FILTERS_APPLIED_HEADER": "Filters currently applied", "__BUG_PAGE_HEADER_HIGHEST_PRIORITY": "Highest priority", @@ -192,10 +194,10 @@ "__BUGS_PAGE_FILTER_DRAWER_BODY_BUG_LABEL": "OTHER DETAILS", "__BUGS_PAGE_FILTER_DRAWER_BODY_COMMON_LABEL": "MOST POPULAR", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUS_ALL_LABEL": "All", - "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSE_TITLE": "Status", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_LESS_LABEL": "Show less", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_MORE_LABEL_one": "+ <2>1 more", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_MORE_LABEL_other": "+ <2>{{count}} more", + "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_TITLE": "Status", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_ALL_LABEL": "All", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_SHOW_LESS_LABEL": "Show less", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_SHOW_MORE_LABEL_one": "+ <2>1 more", @@ -259,8 +261,9 @@ "__BUGS_PAGE_SHORTCUT_MODAL_CONTENT_TITLE": "Essential Keyboard shortcut for Messages", "__BUGS_PAGE_SHORTCUT_OBLIQUE_TEXT": "Oblique Text", "__BUGS_PAGE_SHORTCUT_SEND_TEXT": "Send", + "__BUGS_PAGE_TABLE_HEADER_META_TOTAL_BUGS_LABEL": " /{{uniqueBugs}} tot.", + "__BUGS_PAGE_TABLE_HEADER_META_UNREAD_BUGS_LABEL": "Unread bugs: {{unreadBugs}}", "__BUGS_PAGE_TABLE_HEADER_UNIQUE_BUGS_COUNTER": "{{uniqueBugs}} unique bugs", - "__BUGS_PAGE_TABLE_HEADER_UNREAD_BUGS_COUNTER": "(Unread: <1>{{unreadBugs}}/{{uniqueBugs}})", "__BUGS_PAGE_TABLE_HEADER_WITH_DUPLICATED_BUGS_COUNTER": "{{uniqueBugs}} bugs", "__BUGS_PAGE_TABLE_SEE_ALL": "View more", "__BUGS_PAGE_TABLE_SEE_LESS": "View less", @@ -538,6 +541,7 @@ "__CATALOG_PAGE_BUTTON_CONTACT_LABEL": "Book a kick-off call", "__CATALOG_PAGE_BUTTON_EXPRESS_LABEL": "Launch campaign", "__CATALOG_PAGE_BUTTON_HOW_LABEL": "How does it work?", + "__CATALOG_PAGE_BUTTON_TEMPLATE_LABEL": "Launch test now", "__CATALOG_PAGE_CONTENT_FEATURED_PARAGRAPH": "Kick-start your product optimization.", "__CATALOG_PAGE_CONTENT_FEATURED_TITLE": "Featured Services", "__CATALOG_PAGE_DESCRIPTION": "Discover UNGUESS' superpowers", @@ -582,16 +586,25 @@ "__DASHBOARD_CREATE_NEW_PROJECT_FORM_NAME_UNIQUE_ERROR": "Project name already in use. Choose another name", "__DASHBOARD_CREATE_NEW_PROJECT_FORM_NAME_WARNING": "Choose a name up to 64 characters including spaces.", "__DASHBOARD_CREATE_NEW_PROJECT_TITLE": "Create a new project", + "__DASHBOARD_EMPTY_ARCHIVE_SUBTITLE": "In this space you can archive all campaigns to keep your workspace tidy!", + "__DASHBOARD_EMPTY_ARCHIVE_TITLE": "There are no archived campaigns at the moment.", "__DASHBOARD_EMPTY_SEARCH_RESULTS_DESCRIPTION": "Please, try to change the search criteria", "__DASHBOARD_EMPTY_SEARCH_RESULTS_RESET_FILTERS": "Reset filters", "__DASHBOARD_EMPTY_SEARCH_RESULTS_TITLE": "We couldn't find any campaigns", "__DASHBOARD_SEARCH_INPUT_PLACEHOLDER": "Start typing...", - "__DASHBOARD_SKY_JOTFORM_LAUNCH_CP_BUTTON": "Launch a new campaign", + "__EMPTY_SPACE_NO_FEATURE": "", "__ERROR_PAGE_BUTTON": "Refresh the page", "__ERROR_PAGE_SUBTITLE": "Let's try to solve it with the simplest trick.", "__ERROR_PAGE_TITLE": "This is unexpected.", "__EXPERIENTIAL_LABEL": "Experiential", + "__EXPRESS__SERVICE_TILES_DISCLAIMER": "* The price is to be understood as subject to any prior agreements with your customer success manager.", + "__EXPRESS_2_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_INCOMEPLETE_LABEL": "This use case is not complete", "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_DELETE_USE_CASE_LABEL": "Delete Test Case", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_DESCRIPTION": "Specify what actions testers will perform to verify one or more functionalities in real scenarios", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_LABEL": "Add your first user task", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_TITLE": "User task title", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_REQUIRED": "User task title is required", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL": "User Task", "__EXPRESS_3_WIZARD_STEP_CONFIRM_WHO_TEXT": "Your users", "__EXPRESS_3_WIZARD_STEP_HOW_ADD_USE_CASE_CARD_TITLE": "Add user task", "__EXPRESS_3_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_INCOMEPLETE_LABEL": "This user task is not complete", @@ -604,6 +617,7 @@ "__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL": "User Task", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_AGE_RANGE_TEXT": "Are aged between {{age_range_start}} and {{age_range_end}} years.", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_AGE_RANGE_TEXT_ALL": "Are <1>evenly distributed by <3>age.", + "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_CONTENT_TEXT": "Are speaking {{spoken_language}}.", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_ALL": "Are <1>evenly distributed by <4>digital literacy.", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_BEGINNER": "Have a <1>low level of <4>digital literacy.", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_EXPERT": "Have an <1>high level of <4>digital literacy.", @@ -648,6 +662,7 @@ "__EXPRESS_4_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL": "User Task", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_AGE_RANGE_TEXT": "Are aged between <1><0>{{age_range_start}} and <2>{{age_range_end}} years.", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_AGE_RANGE_TEXT_ALL": "Are <1>evenly distributed by <3>age.", + "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_CONTENT_TEXT": "Are speaking {{spoken_language}}.", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_ALL": "Are <1>evenly distributed by <4>digital literacy.", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_BEGINNER": "Have a <1>low level of <4>digital literacy.", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_EXPERT": "Have an <1>high level of <4>digital literacy.", @@ -698,7 +713,6 @@ "__EXPRESS_WIZARD_STEP_HOW_ADD_USE_CASE_CARD_SUBTITLE": "The actions performed by the tester to test one or more functionalities", "__EXPRESS_WIZARD_STEP_HOW_ADD_USE_CASE_CARD_TITLE": "Add use case", "__EXPRESS_WIZARD_STEP_HOW_DESCRIPTION": "Test manual", - "__EXPRESS_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_INCOMEPLETE_LABEL": "This use case is not complete", "__EXPRESS_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_LABEL": "Edit", "__EXPRESS_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_LABEL_INCOMPLETE": "Finish", "__EXPRESS_WIZARD_STEP_HOW_FIELD_DESCRIPTION_DESCRIPTION": "Give some instructions to the tester to perform the test", @@ -720,9 +734,9 @@ "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_SUBTITLE": "You cannot add an empty use case", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_TITLE": "Fill the description", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_TITLE": "Instructions for the test", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EDITOR_CANCEL_BUTTON": "Cancel", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EDITOR_SAVE_BUTTON": "Save", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_LABEL": "Empty", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_DESCRIPTION": "Specify what actions testers will perform to verify one or more functionalities in real scenarios", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_LABEL": "Add your first test case", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_FUNCTIONALITY_REQUIRED": "Choose a use case type", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_INSTRUCTIONS_FIELD_DESCRIPTION": "Define the task that the tester will perform during the testing process, based on the functionality or section to be tested. (I.e.: To test the checkout process, give to the user the instruction to buy something)", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_INSTRUCTIONS_FIELD_TITLE": "Instructions for the users", @@ -738,9 +752,7 @@ "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_TITLE": "Don't be afraid to make mistakes!", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_PRODUCT_FIELD_PLACEHOLDER": "Search or add typology", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_PRODUCT_FIELD_TITLE": "Type of use case to be tested", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_PLACEHOLDER": "New test case title", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_TITLE": "Test case title", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL": "Test Case", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_PLACEHOLDER": "Insert test case title", "__EXPRESS_WIZARD_STEP_RECAP_DESCRIPTION": "Check your informations and launch the campaign", "__EXPRESS_WIZARD_STEP_RECAP_HOW_CONTENT_TEXT": "You inserted <0><1>{{use_cases_count}} test cases:", "__EXPRESS_WIZARD_STEP_RECAP_MORE_TEXTAREA_NOTE": "Do not use this field to insert sensitive informations such as credentials", @@ -755,8 +767,7 @@ "__EXPRESS_WIZARD_STEP_RECAP_WHERE_CONTENT_TEXT_OS": "On the following operating system:", "__EXPRESS_WIZARD_STEP_RECAP_WHO_CONTENT_TEXT": "Testers speak: <0>{{campaign_language}}.", "__EXPRESS_WIZARD_STEP_THANK_YOU_BUTTON": "Go to project", - "__EXPRESS_WIZARD_STEP_THANK_YOU_SUBTITLE": "Great! Your test request is now with your CSM for review. We'll notify you once it's approved or if we need any clarification. Meanwhile, you can track your test status in the Project area.", - "__EXPRESS_WIZARD_STEP_THANK_YOU_SUBTITLE_USE_CASES": "Our tester leaders will soon reach out to you about the campaign launch.", + "__EXPRESS_WIZARD_STEP_THANK_YOU_SUBTITLE": "Great! Your test request is now with the UNGUESS team for review. We'll notify you once it's approved or if we need any clarification. Meanwhile, you can track your test status in the Project area.", "__EXPRESS_WIZARD_STEP_THANK_YOU_TITLE": "Request received.", "__EXPRESS_WIZARD_STEP_WHAT_DESCRIPTION": "What is the campaign about?", "__EXPRESS_WIZARD_STEP_WHAT_FIELD_CAMPAIGN_NAME_REQUIRED": "Campaign Name is required", @@ -821,8 +832,10 @@ "__EXPRESS_WIZARD_STEP_WHO_FIELD_CAMPAIGN_LANGUAGE_REQUIRED": "Campaing language is required", "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_DESCRIPTION": "Select the testers' spoken language, it will be the same used for the campaign's results.", "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_LABEL": "Select the testers' spoken language", - "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_1": "Italian", - "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_2": "English", + "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_EN": "English", + "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_ES": "Spanish", + "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_FR": "French", + "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_IT": "Italian", "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_TITLE": "Language", "__EXPRESS_WIZARD_STEP_WHO_LABEL": "Who", "__EXPRESS_WIZARD_STEP_WHO_LABEL_EXTRA": "is the target of the campaign?", @@ -973,6 +986,7 @@ "__PROJECT_FORM_DESCRIPTION_MAX": "This description is a bit long. It is recommended not to exceed 234 characters, including spaces.", "__PROJECT_FORM_NAME_MAX": "This name is a bit long. We advise you to stay within 64 characters including spaces.", "__PROJECT_FORM_NAME_REQUIRED": "Choose a name before creating the project", + "__PROJECT_PAGE_ARCHIVE_DESCRIPTION": "The Archive helps you keep your projects organized. You can restore a campaign at any time or leave it here for future reference", "__PROJECT_PAGE_UPDATE_PROJECT_DESCRIPTION_ERROR": "Error", "__PROJECT_PAGE_UPDATE_PROJECT_DESCRIPTION_MAX_LENGTH": "You may enter a description with a maximum length of 234 characters.", "__PROJECT_PAGE_UPDATE_PROJECT_DESCRIPTION_PLACEHOLDER": "Write a description", @@ -988,6 +1002,8 @@ "__PUBLIC_MANUAL_NOT_FOUND_TEXT": "This page does not exist yet. Ask your CSM or explore our Support Center.", "__PUBLIC_MANUAL_NOT_FOUND_TITLE": "There is no manual here", "__SERVICE_DETAIL_PAGE_TAG_RESULTS_DAYS_LABEL": "First results in <0>{{hours}}h", + "__SERVICE_TILES_HEADER": "Explore new ways of testing", + "__SERVICE_TILES_SUBTITLE": "Launch lean tests autonomosly, get expert-verified results", "__SIDEBAR_CAMPAIGNS_LABEL": "campaigns", "__TAILORED_LABEL": "Tailored", "__TOAST_CLOSE_TEXT": "Dismiss", @@ -1058,6 +1074,7 @@ "__VIDEOS_COUNT_one": "{{count}} video", "__VIDEOS_COUNT_other": "{{count}} videos", "__VIDEOS_LIST_DESKTOP_TITLE": "Desktop", + "__VIDEOS_LIST_META_LABEL": "Videos", "__VIDEOS_LIST_META_VIDEO_COUNT_one": "video uploaded", "__VIDEOS_LIST_META_VIDEO_COUNT_many": "videos uploaded", "__VIDEOS_LIST_META_VIDEO_COUNT_other": "videos uploaded", @@ -1075,6 +1092,7 @@ "__WIZARD_EXPRESS_BODY_SELECT_PROJECT_TITLE": "Select a project where to save the campaign", "__WIZARD_EXPRESS_DEFAULT_ITEM": "Search or add project", "__WIZARD_EXPRESS_FOOTER_CONFIRM_BUTTON": "Let's go!", + "__WIZARD_EXPRESS_FOOTER_INFO_BUTTON": "More info", "__WIZARD_EXPRESS_HEADER_TITLE": "Launch campaign", "__WIZARD_EXPRESS_USE_CASE_MODAL_TITLE": "Add one or more test cases", "__WORKSPACE_SETTINGS_ADD_MEMBER_BUTTON": "Invite", diff --git a/src/locales/it/translation.json b/src/locales/it/translation.json index 2019da000..ff0d78d8d 100644 --- a/src/locales/it/translation.json +++ b/src/locales/it/translation.json @@ -10,6 +10,8 @@ "__APP_HOURS_LABEL_many": "ore", "__APP_HOURS_LABEL_other": "ore", "__APP_LANGUANGE_EN_TEXT": "Inglese", + "__APP_LANGUANGE_ES_TEXT": "", + "__APP_LANGUANGE_FR_TEXT": "", "__APP_LANGUANGE_IT_TEXT": "Italiano", "__APP_META_DESCRIPTION": "UNGUESS provides collective wisdom to improve your decision-making process. Eliminate inefficiencies with our testing, monitoring and research platform.", "__APP_META_PAYOFF": "Be smart from the start", @@ -64,6 +66,7 @@ "__BUG_PAGE_HEADER_FILTER_OS": "", "__BUG_PAGE_HEADER_FILTER_PRIORITIES": "", "__BUG_PAGE_HEADER_FILTER_REPLICABILITIES": "", + "__BUG_PAGE_HEADER_FILTER_SEARCH": "Video", "__BUG_PAGE_HEADER_FILTER_SEVERITIES": "", "__BUG_PAGE_HEADER_FILTER_STATUS": "", "__BUG_PAGE_HEADER_FILTER_TAGS": "", @@ -198,11 +201,11 @@ "__BUGS_PAGE_FILTER_DRAWER_BODY_BUG_LABEL": "ALTRI DETTAGLI DEL BUG", "__BUGS_PAGE_FILTER_DRAWER_BODY_COMMON_LABEL": "PIÙ COMUNI", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUS_ALL_LABEL": "Tutte", - "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSE_TITLE": "Stato", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_LESS_LABEL": "Mostra meno", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_MORE_LABEL_one": "+ <2>1 altra", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_MORE_LABEL_many": "", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_SHOW_MORE_LABEL_other": "+ altre <2>{{count}}", + "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSES_TITLE": "Stato", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_ALL_LABEL": "Tutti", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_SHOW_LESS_LABEL": "Mostra meno", "__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_SHOW_MORE_LABEL_one": "+ <2>1 altro", @@ -274,8 +277,9 @@ "__BUGS_PAGE_SHORTCUT_MODAL_CONTENT_TITLE": "Scorciatoie essenziali per i commenti", "__BUGS_PAGE_SHORTCUT_OBLIQUE_TEXT": "Testo obliquo", "__BUGS_PAGE_SHORTCUT_SEND_TEXT": "Invia", + "__BUGS_PAGE_TABLE_HEADER_META_TOTAL_BUGS_LABEL": " /{{uniqueBugs}} tot.", + "__BUGS_PAGE_TABLE_HEADER_META_UNREAD_BUGS_LABEL": "Bug non letti: {{unreadBugs}}", "__BUGS_PAGE_TABLE_HEADER_UNIQUE_BUGS_COUNTER": "{{uniqueBugs}} bug unici", - "__BUGS_PAGE_TABLE_HEADER_UNREAD_BUGS_COUNTER": "(Non letti: <1>{{unreadBugs}}/{{uniqueBugs}})", "__BUGS_PAGE_TABLE_HEADER_WITH_DUPLICATED_BUGS_COUNTER": "{{uniqueBugs}} bug", "__BUGS_PAGE_TABLE_SEE_ALL": "Vedi tutti", "__BUGS_PAGE_TABLE_SEE_LESS": "Vedi meno", @@ -563,6 +567,7 @@ "__CATALOG_PAGE_BUTTON_CONTACT_LABEL": "Fissa la kick-off call", "__CATALOG_PAGE_BUTTON_EXPRESS_LABEL": "Lancia campagna", "__CATALOG_PAGE_BUTTON_HOW_LABEL": "Come funziona?", + "__CATALOG_PAGE_BUTTON_TEMPLATE_LABEL": "", "__CATALOG_PAGE_CONTENT_FEATURED_PARAGRAPH": "Inizia subito l'ottimizzazione del tuo prodotto.", "__CATALOG_PAGE_CONTENT_FEATURED_TITLE": "Servizi in evidenza", "__CATALOG_PAGE_DESCRIPTION": "Scopri i superpoteri di UNGUESS", @@ -607,16 +612,25 @@ "__DASHBOARD_CREATE_NEW_PROJECT_FORM_NAME_UNIQUE_ERROR": "", "__DASHBOARD_CREATE_NEW_PROJECT_FORM_NAME_WARNING": "", "__DASHBOARD_CREATE_NEW_PROJECT_TITLE": "Crea un nuovo progetto", + "__DASHBOARD_EMPTY_ARCHIVE_SUBTITLE": "", + "__DASHBOARD_EMPTY_ARCHIVE_TITLE": "", "__DASHBOARD_EMPTY_SEARCH_RESULTS_DESCRIPTION": "Prova a cercare qualcosa di diverso", "__DASHBOARD_EMPTY_SEARCH_RESULTS_RESET_FILTERS": "Resetta i filtri", "__DASHBOARD_EMPTY_SEARCH_RESULTS_TITLE": "Non abbiamo trovato nessuna campagna", "__DASHBOARD_SEARCH_INPUT_PLACEHOLDER": "Cerca...", - "__DASHBOARD_SKY_JOTFORM_LAUNCH_CP_BUTTON": "Lancia una campagna", + "__EMPTY_SPACE_NO_FEATURE": "", "__ERROR_PAGE_BUTTON": "Aggiorna la pagina", "__ERROR_PAGE_SUBTITLE": "Ecco un consiglio banale che il più delle volte funziona.", "__ERROR_PAGE_TITLE": "Non è così che doveva andare.", "__EXPERIENTIAL_LABEL": "Esperienziali", + "__EXPRESS__SERVICE_TILES_DISCLAIMER": "* Prezzo da intendersi salvo accordi pregressi con il tuo customer success manager.", + "__EXPRESS_2_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_INCOMEPLETE_LABEL": "", "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_DELETE_USE_CASE_LABEL": "Elimina Test Case", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_DESCRIPTION": "", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_LABEL": "", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_TITLE": "", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_REQUIRED": "", + "__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL": "", "__EXPRESS_3_WIZARD_STEP_CONFIRM_WHO_TEXT": "I tuoi utenti", "__EXPRESS_3_WIZARD_STEP_HOW_ADD_USE_CASE_CARD_TITLE": "Aggiungi", "__EXPRESS_3_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_INCOMEPLETE_LABEL": "A questa task mancano alcuni dettagli", @@ -629,6 +643,7 @@ "__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL": "User Task", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_AGE_RANGE_TEXT": "Hanno un'età compresa fra i {{age_range_start}} e i {{age_range_end}} anni.", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_AGE_RANGE_TEXT_ALL": "Sono <1>equamente distribuiti per <3>età.", + "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_CONTENT_TEXT": "", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_ALL": "Sono <1>equamente distribuiti per <4>alfabetizzazione digitale.", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_BEGINNER": "Hanno un <1>livello basso di <4>alfabetizzazione digitale.", "__EXPRESS_3_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_EXPERT": "Hanno un <1>livello alto di <4>alfabetizzazione digitale.", @@ -673,6 +688,7 @@ "__EXPRESS_4_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL": "User Task", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_AGE_RANGE_TEXT": "Hanno un'età compresa fra i <1><0>{{age_range_start}} e i <2>{{age_range_end}} anni.", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_AGE_RANGE_TEXT_ALL": "Sono <1>equamente distribuiti per <3>età.", + "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_CONTENT_TEXT": "", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_ALL": "Sono <1>equamente distribuiti per <4>alfabetizzazione digitale.", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_BEGINNER": "Hanno un <1>livello basso di <4>alfabetizzazione digitale.", "__EXPRESS_4_WIZARD_STEP_RECAP_WHO_DIGITALIZATION_TEXT_EXPERT": "Hanno un <1>livello alto di <4>alfabetizzazione digitale.", @@ -723,7 +739,6 @@ "__EXPRESS_WIZARD_STEP_HOW_ADD_USE_CASE_CARD_SUBTITLE": "L'insieme di azioni eseguite dal tester per verificare uno o più casì d'uso", "__EXPRESS_WIZARD_STEP_HOW_ADD_USE_CASE_CARD_TITLE": "Aggiungi test case", "__EXPRESS_WIZARD_STEP_HOW_DESCRIPTION": "Il manuale di test", - "__EXPRESS_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_INCOMEPLETE_LABEL": "A questo test case mancano alcuni dettagli", "__EXPRESS_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_LABEL": "Modifica", "__EXPRESS_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_LABEL_INCOMPLETE": "Completa", "__EXPRESS_WIZARD_STEP_HOW_FIELD_DESCRIPTION_DESCRIPTION": "Dai qualche indicazioni ai tester sul prodotto", @@ -741,14 +756,14 @@ "__EXPRESS_WIZARD_STEP_HOW_TAG_USER_TASKS_LABEL": "<0>N° User Tasks: <2><0>{{express_use_cases_limit}}", "__EXPRESS_WIZARD_STEP_HOW_UNMODERATED_SUBTITLE": "Individua l’obiettivo del test e 5 user task da far svolgere agli utenti, che articoleranno i loro pensieri ad alta voce durante il test.", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_ADD_USE_CASE_BUTTON": "Aggiungi", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_DESCRIPTION": "Scrivi le istruzioni che riceveranno i tester per testare il caso d'uso.", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_DESCRIPTION": "", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_SUBTITLE": "Non puoi andare avanti se non compili il campo", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_TITLE": "Campo obbligatorio", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_TITLE": "Istruzioni per i tester", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_TITLE": "", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EDITOR_CANCEL_BUTTON": "", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EDITOR_SAVE_BUTTON": "", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_LABEL": "Vuoto", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_DESCRIPTION": "Specifica quali azioni i tester dovranno fare per verificare uno o più casi d’uso", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_LABEL": "Aggiungi il tuo primo test case", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_FUNCTIONALITY_REQUIRED": "Seleziona un tipo di caso d'uso", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_FUNCTIONALITY_REQUIRED": "", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_INSTRUCTIONS_FIELD_DESCRIPTION": "Definisci il compito che l’utente deve portare a termine durante l’attività di test, in base alla funzione o sezione da testare.\n(Es: per testare il processo di checkout, dai all'utente il compito di acquistare qualcosa)", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_INSTRUCTIONS_FIELD_TITLE": "Istruzioni per gli utenti", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_MESSAGE": "Il link deve essere pubblico", @@ -756,16 +771,14 @@ "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_SUBTITLE": "Indica un link specifico del prodotto da cui cominciare il test", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_TITLE": "Link per il test", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_INVALID": "Il link non risulta funzionante: controlla di averlo scritto correttamente", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LOGGED_FIELD_DESCRIPTION": "Per testare questo caso d'uso è necessario affettuare il log-in o la registrazione", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LOGGED_FIELD_TITLE": "Richiede autenticazione", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LOGGED_FIELD_DESCRIPTION": "", + "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LOGGED_FIELD_TITLE": "", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_MIN_ERROR": "Per favore, specifica almeno un test case", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_SUBTITLE": "Quando scrivi un manuale di test, i nostri tester leader lo controllano e lo ottimizzano prima del lancio effettivo.", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_TITLE": "Il check finale? È tutto nostro", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_PRODUCT_FIELD_PLACEHOLDER": "Cerca o aggiungi tipologia", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_PRODUCT_FIELD_TITLE": "Tipologia di caso d'uso da testare", "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_PLACEHOLDER": "Titolo nuovo caso d'uso", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_TITLE": "Titolo test case", - "__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL": "Test Case", "__EXPRESS_WIZARD_STEP_RECAP_DESCRIPTION": "Controlla i dati e fai partire la campagna", "__EXPRESS_WIZARD_STEP_RECAP_HOW_CONTENT_TEXT": "Hai indicato <0><1>{{use_cases_count}} test case:", "__EXPRESS_WIZARD_STEP_RECAP_MORE_TEXTAREA_NOTE": "Non utilizzare questo spazio per comunicare dati sensibili come credenziali di accesso", @@ -781,7 +794,6 @@ "__EXPRESS_WIZARD_STEP_RECAP_WHO_CONTENT_TEXT": "I tester parlano: <0>{{campaign_language}}.", "__EXPRESS_WIZARD_STEP_THANK_YOU_BUTTON": "Torna alla dashboard", "__EXPRESS_WIZARD_STEP_THANK_YOU_SUBTITLE": "Tieni sotto controllo i risultati in tempo reale, direttamente dalla dashboard.", - "__EXPRESS_WIZARD_STEP_THANK_YOU_SUBTITLE_USE_CASES": "I nostri test leader ti comunicheranno a breve il lancio", "__EXPRESS_WIZARD_STEP_THANK_YOU_TITLE": "Campagna lanciata!", "__EXPRESS_WIZARD_STEP_WHAT_DESCRIPTION": "Definisci il prodotto per il test esplorativo.", "__EXPRESS_WIZARD_STEP_WHAT_FIELD_CAMPAIGN_NAME_REQUIRED": "Campo obbligatorio", @@ -846,8 +858,10 @@ "__EXPRESS_WIZARD_STEP_WHO_FIELD_CAMPAIGN_LANGUAGE_REQUIRED": "Campo obbligatorio", "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_DESCRIPTION": "Seleziona la lingua parlata dai tester, sarà la stessa in cui riceverai i risultati.", "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_LABEL": "Seleziona la lingua parlata dai tester", - "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_1": "Italiano", - "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_2": "Inglese", + "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_EN": "", + "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_ES": "", + "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_FR": "", + "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_IT": "", "__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_TITLE": "Lingua", "__EXPRESS_WIZARD_STEP_WHO_LABEL": "Chi", "__EXPRESS_WIZARD_STEP_WHO_LABEL_EXTRA": "è il target della campagna?", @@ -1001,6 +1015,7 @@ "__PROJECT_FORM_DESCRIPTION_MAX": "", "__PROJECT_FORM_NAME_MAX": "", "__PROJECT_FORM_NAME_REQUIRED": "", + "__PROJECT_PAGE_ARCHIVE_DESCRIPTION": "", "__PROJECT_PAGE_UPDATE_PROJECT_DESCRIPTION_ERROR": "Errore", "__PROJECT_PAGE_UPDATE_PROJECT_DESCRIPTION_MAX_LENGTH": "Inserisci una descrizione con una lunghezza massima di 234 caratteri.", "__PROJECT_PAGE_UPDATE_PROJECT_DESCRIPTION_PLACEHOLDER": "Aggiungi una descrizione", @@ -1016,6 +1031,8 @@ "__PUBLIC_MANUAL_NOT_FOUND_TEXT": "A quanto pare la pagina che stai cercando non esiste ancora.", "__PUBLIC_MANUAL_NOT_FOUND_TITLE": "Manuale non trovato", "__SERVICE_DETAIL_PAGE_TAG_RESULTS_DAYS_LABEL": "Primi risultati in <0>{{hours}}h", + "__SERVICE_TILES_HEADER": "", + "__SERVICE_TILES_SUBTITLE": "", "__SIDEBAR_CAMPAIGNS_LABEL": "campagne", "__TAILORED_LABEL": "Tailored", "__TOAST_CLOSE_TEXT": "Chiudi", @@ -1089,6 +1106,7 @@ "__VIDEOS_COUNT_many": "video {{count}}", "__VIDEOS_COUNT_other": "{{count}} video", "__VIDEOS_LIST_DESKTOP_TITLE": "Desktop", + "__VIDEOS_LIST_META_LABEL": "Videos", "__VIDEOS_LIST_META_VIDEO_COUNT_one": "video caricato", "__VIDEOS_LIST_META_VIDEO_COUNT_many": "video caricati", "__VIDEOS_LIST_META_VIDEO_COUNT_other": "video caricati", @@ -1107,6 +1125,7 @@ "__WIZARD_EXPRESS_BODY_SELECT_PROJECT_TITLE": "Seleziona il progetto in cui salvare la campagna", "__WIZARD_EXPRESS_DEFAULT_ITEM": "Cerca o aggiungi progetto", "__WIZARD_EXPRESS_FOOTER_CONFIRM_BUTTON": "Iniziamo!", + "__WIZARD_EXPRESS_FOOTER_INFO_BUTTON": "", "__WIZARD_EXPRESS_HEADER_TITLE": "Lancia campagna", "__WIZARD_EXPRESS_USE_CASE_MODAL_TITLE": "Aggiungi uno o più test case", "__WORKSPACE_SETTINGS_ADD_MEMBER_BUTTON": "Invita", diff --git a/src/pages/Bug/Header/AppliedFilters.tsx b/src/pages/Bug/Header/AppliedFilters.tsx index f258773dc..b962a83f4 100644 --- a/src/pages/Bug/Header/AppliedFilters.tsx +++ b/src/pages/Bug/Header/AppliedFilters.tsx @@ -123,7 +123,7 @@ export const AppliedFilters = () => { } > - + diff --git a/src/pages/Bug/Header/Pagination.tsx b/src/pages/Bug/Header/Pagination.tsx index 16c1ecd2a..acef5fe36 100644 --- a/src/pages/Bug/Header/Pagination.tsx +++ b/src/pages/Bug/Header/Pagination.tsx @@ -4,6 +4,7 @@ import { useCallback } from 'react'; import { useNavigate, useSearchParams } from 'react-router-dom'; import { Bug } from 'src/features/api'; import { useSendGTMevent } from 'src/hooks/useGTMevent'; +import { useCampaignBugs } from 'src/pages/Bugs/Content/BugsTable/hooks/useCampaignBugs'; interface Props { paginationItems: (Bug & { @@ -23,12 +24,12 @@ export const Pagination = ({ const navigate = useNavigate(); const [searchParams] = useSearchParams(); const sendGTMEvent = useSendGTMevent(); - + const { refetch } = useCampaignBugs(Number(campaignId)); const handlePagination = useCallback( (v: number) => { if (paginationItems && paginationItems[Number(v)]) { const bugId = encodeURIComponent(paginationItems[Number(v)].id); - + refetch(); sendGTMEvent({ event: 'bug_header_action', action: 'navigation', diff --git a/src/pages/Bug/Header/StatusSelect.tsx b/src/pages/Bug/Header/StatusSelect.tsx index 0a9509364..3359b8913 100644 --- a/src/pages/Bug/Header/StatusSelect.tsx +++ b/src/pages/Bug/Header/StatusSelect.tsx @@ -34,6 +34,7 @@ export const StatusSelect = ({ statuses }: { statuses: BugByStateType[] }) => { return (
{ const selectedStatus = usecases.find( (u) => u.useCase.id === Number(value.inputValue) diff --git a/src/pages/Bug/Header/index.tsx b/src/pages/Bug/Header/index.tsx index afdedae1f..4b74c571d 100644 --- a/src/pages/Bug/Header/index.tsx +++ b/src/pages/Bug/Header/index.tsx @@ -196,7 +196,7 @@ const Header = ({ campaignId, bug }: Props) => { } return ( - + { }); const { allBugs: bugs } = data; + const filterBy = getSelectedFiltersIds(); + const totalBugs = bugs.length ?? 0; + if (isLoading || isError) { return ; } @@ -44,12 +50,33 @@ export const AllBugs = ({ campaignId }: { campaignId: number }) => { return ( - - {isMdBreakpoint ? ( - - ) : ( - - )} + + + + + + + + + + {isMdBreakpoint ? ( + + ) : ( + + )} + + + ); }; diff --git a/src/pages/Bugs/Content/BugsTable/BugsByState.tsx b/src/pages/Bugs/Content/BugsTable/BugsByState.tsx index 2027f5c80..9a57aae40 100644 --- a/src/pages/Bugs/Content/BugsTable/BugsByState.tsx +++ b/src/pages/Bugs/Content/BugsTable/BugsByState.tsx @@ -1,4 +1,4 @@ -import { Accordion, MD } from '@appquality/unguess-design-system'; +import { AccordionNew, MD } from '@appquality/unguess-design-system'; import { useMemo } from 'react'; import { useTranslation } from 'react-i18next'; import { getCustomStatusInfo } from 'src/common/components/utils/getCustomStatusInfo'; @@ -57,7 +57,7 @@ export const BugsByState = ({ return ( - i)} isExpandable @@ -68,13 +68,9 @@ export const BugsByState = ({ - {t('__BUG_STATUS')}:{' '} - {getCustomStatusInfo(item.state.name as BugState, t).text} - {` (${item.bugs.length})`} - - } + title={`${t('__BUG_STATUS')}: ${ + getCustomStatusInfo(item.state.name as BugState, t).text + } ${`(${item.bugs.length})`}`} item={item} /> {i === 0 && suggestions && ( @@ -103,7 +99,7 @@ export const BugsByState = ({ )} )} - + ); }; diff --git a/src/pages/Bugs/Content/BugsTable/BugsByUsecase.tsx b/src/pages/Bugs/Content/BugsTable/BugsByUsecase.tsx index 5d2fee446..b94b62213 100644 --- a/src/pages/Bugs/Content/BugsTable/BugsByUsecase.tsx +++ b/src/pages/Bugs/Content/BugsTable/BugsByUsecase.tsx @@ -1,4 +1,4 @@ -import { Accordion, MD } from '@appquality/unguess-design-system'; +import { AccordionNew, MD } from '@appquality/unguess-design-system'; import { useMemo } from 'react'; import { useTranslation } from 'react-i18next'; import { styled } from 'styled-components'; @@ -57,7 +57,7 @@ export const BugsByUsecase = ({ return ( - i)} isExpandable @@ -69,12 +69,9 @@ export const BugsByUsecase = ({ campaignId={campaignId} key={item.useCase.id} title={ - <> - {item.useCase?.id === -1 - ? t('__BUGS_PAGE_NO_USECASE', 'Not a specific use case') - : item.useCase.title.full} - {` (${item.bugs.length})`} - + item.useCase?.id === -1 + ? t('__BUGS_PAGE_NO_USECASE', 'Not a specific use case') + : `${item.useCase.title.full} (${item.bugs.length})` } item={item} footer={ @@ -113,7 +110,7 @@ export const BugsByUsecase = ({ )} )} - + ); }; diff --git a/src/pages/Bugs/Content/BugsTable/components/InfoRow.tsx b/src/pages/Bugs/Content/BugsTable/components/InfoRow.tsx deleted file mode 100644 index 486f86d65..000000000 --- a/src/pages/Bugs/Content/BugsTable/components/InfoRow.tsx +++ /dev/null @@ -1,68 +0,0 @@ -import { MD, Span } from '@appquality/unguess-design-system'; -import { ReactNode } from 'react'; -import { Trans } from 'react-i18next'; -import { appTheme } from 'src/app/theme'; -import { getSelectedFiltersIds } from 'src/features/bugsPage/bugsPageSlice'; -import styled from 'styled-components'; -import { TableBugType } from '../../../types'; -import { StyledSM } from './StyledSM'; - -const StyledMD = styled(MD)` - span { - color: ${({ theme }) => theme.palette.grey[600]}; - } -`; - -const StyledDiv = styled.div` - display: flex; - justify-content: space-between; - align-items: center; - padding: ${(p) => p.theme.space.xs} 0; - column-gap: ${(p) => p.theme.space.xs}; - ${StyledSM} { - flex-shrink: 0; - } -`; - -export const InfoRow = ({ - bugs, - title, -}: { - bugs: TableBugType[]; - title?: ReactNode; -}) => { - // Count bugs with read = false - const totalBugs = bugs.length ?? 0; - const unreadBugs = bugs.filter((bug) => bug.read === false) ?? []; - const filterBy = getSelectedFiltersIds(); - - return ( - - - {title || - (filterBy?.unique && filterBy.unique === 'unique' ? ( - - {{ uniqueBugs: totalBugs }} unique bugs - - ) : ( - - {{ uniqueBugs: totalBugs }} bugs - - ))} - - - , - }} - defaults="(Unread: {{unreadBugs}}/{{uniqueBugs}})" - values={{ - unreadBugs: unreadBugs.length, - uniqueBugs: totalBugs, - }} - /> - - - ); -}; diff --git a/src/pages/Bugs/Content/BugsTable/components/InfoRowMeta.tsx b/src/pages/Bugs/Content/BugsTable/components/InfoRowMeta.tsx new file mode 100644 index 000000000..910316358 --- /dev/null +++ b/src/pages/Bugs/Content/BugsTable/components/InfoRowMeta.tsx @@ -0,0 +1,31 @@ +import { Span, Tag } from '@appquality/unguess-design-system'; +import { ReactComponent as BugsIcon } from 'src/assets/icons/bugs-icon.svg'; +import { appTheme } from 'src/app/theme'; +import { t } from 'i18next'; +import { TableBugType } from '../../../types'; + +export const InfoRowMeta = ({ bugs }: { bugs: TableBugType[] }) => { + // Count bugs with read = false + const totalBugs = bugs.length ?? 0; + const unreadBugs = bugs.filter((bug) => bug.read === false) ?? []; + + return ( + <> + + + + + + {t('__BUGS_PAGE_TABLE_HEADER_META_UNREAD_BUGS_LABEL', { + unreadBugs: unreadBugs.length, + })} + + + + {t('__BUGS_PAGE_TABLE_HEADER_META_TOTAL_BUGS_LABEL', { + uniqueBugs: totalBugs, + })} + + + ); +}; diff --git a/src/pages/Bugs/Content/BugsTable/components/SingleGroupAccordion.tsx b/src/pages/Bugs/Content/BugsTable/components/SingleGroupAccordion.tsx index 1bec5b320..15519b405 100644 --- a/src/pages/Bugs/Content/BugsTable/components/SingleGroupAccordion.tsx +++ b/src/pages/Bugs/Content/BugsTable/components/SingleGroupAccordion.tsx @@ -1,7 +1,7 @@ import { ReactNode, useEffect, useState } from 'react'; import { useTranslation } from 'react-i18next'; import { selectBug } from 'src/features/bugsPage/bugsPageSlice'; -import { Accordion, Button } from '@appquality/unguess-design-system'; +import { AccordionNew, Button } from '@appquality/unguess-design-system'; import styled from 'styled-components'; import { useAppDispatch } from 'src/app/hooks'; import useWindowSize from 'src/hooks/useWindowSize'; @@ -9,19 +9,10 @@ import { appTheme } from 'src/app/theme'; import { ReactComponent as ChevronDownStroke } from '@zendeskgarden/svg-icons/src/16/chevron-down-stroke.svg'; import { ReactComponent as ChevronUpStroke } from '@zendeskgarden/svg-icons/src/16/chevron-up-stroke.svg'; import { BugByStateType, BugByUsecaseType } from '../types'; -import { InfoRow } from './InfoRow'; +import { InfoRowMeta } from './InfoRowMeta'; import BugCards from './BugCards'; import SingleGroupTable from './SingleGroupTable'; -const StyledAccordionLabel = styled(Accordion.Label)` - padding: 0; -`; -const StyledAccordionHeader = styled(Accordion.Header)` - svg { - padding: ${appTheme.space.xs}; - } -`; - const AccordionFooter = styled.div` display: flex; justify-content: space-between; @@ -32,7 +23,7 @@ const AccordionFooter = styled.div` interface SingleGroupAccordionProps { campaignId: number; - title?: ReactNode; + title?: string | undefined; item: BugByStateType | BugByUsecaseType; footer?: ReactNode; } @@ -58,7 +49,7 @@ const SingleGroupAccordion = ({ if (isLgBreakpoint) dispatch(selectBug({ bug_id: undefined })); }, [isLgBreakpoint]); - const AccordionPanel = styled(Accordion.Panel)` + const AccordionPanel = styled(AccordionNew.Panel)` padding: 0; .bordered-content { @media (min-width: ${appTheme.breakpoints.md}) { @@ -72,14 +63,17 @@ const SingleGroupAccordion = ({ `; return ( - - - - - - + // the style in the AccordionNew.Section is to increase the gap between the accordions and the titles + + + + + + +
+ {' '} {isMdBreakpoint ? ( ) : ( @@ -118,7 +112,7 @@ const SingleGroupAccordion = ({
-
+ ); }; diff --git a/src/pages/Bugs/Content/BugsTable/hooks/useCampaignBugs.ts b/src/pages/Bugs/Content/BugsTable/hooks/useCampaignBugs.ts index f02915fd2..0585bb193 100644 --- a/src/pages/Bugs/Content/BugsTable/hooks/useCampaignBugs.ts +++ b/src/pages/Bugs/Content/BugsTable/hooks/useCampaignBugs.ts @@ -14,6 +14,7 @@ export const useCampaignBugs = (campaignId: number) => { isFetching, error, data: bugs, + refetch, } = useGetCampaignsByCidBugsQuery({ cid: campaignId.toString() ?? '0', filterBy: { @@ -50,5 +51,6 @@ export const useCampaignBugs = (campaignId: number) => { bugsError: error, bugsLoading: isLoading, bugsFetching: isFetching, + refetch, }; }; diff --git a/src/pages/Bugs/Drawer/CustomStatusField.tsx b/src/pages/Bugs/Drawer/CustomStatusField.tsx index f383ea6e3..44631dcde 100644 --- a/src/pages/Bugs/Drawer/CustomStatusField.tsx +++ b/src/pages/Bugs/Drawer/CustomStatusField.tsx @@ -1,10 +1,9 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, Span, - TextLabel, Toggle, } from '@appquality/unguess-design-system'; import { useState } from 'react'; @@ -74,25 +73,20 @@ export const CustomStatusField = ({ return ( <> - - - - - - {t( - '__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUSE_TITLE' - )} - - - {selectedWithNaB && selectedWithNaB.length + + + @@ -108,11 +102,11 @@ export const CustomStatusField = ({ }` : t( '__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_CUSTOM_STATUS_ALL_LABEL' - )} - - - - + ) + } + /> + + ) : null} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/DeviceField.tsx b/src/pages/Bugs/Drawer/DeviceField.tsx index d82341264..69ee609a6 100644 --- a/src/pages/Bugs/Drawer/DeviceField.tsx +++ b/src/pages/Bugs/Drawer/DeviceField.tsx @@ -1,10 +1,9 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, Span, - TextDescription, } from '@appquality/unguess-design-system'; import { useState } from 'react'; import { Trans, useTranslation } from 'react-i18next'; @@ -34,24 +33,18 @@ export const DeviceField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_TITLE')} - - - {selected && selected.length + + + item.device) @@ -61,11 +54,11 @@ export const DeviceField = ({ ? `+${selected.length - maxItemsToShow}` : '' }` - : t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_ALL_LABEL')} - - - - + : t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DEVICE_ALL_LABEL') + } + /> + + {available.length ? available .slice(0, showMore ? undefined : maxItemsToShow) @@ -144,9 +137,9 @@ export const DeviceField = ({ )} ) : null} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/OsField.tsx b/src/pages/Bugs/Drawer/OsField.tsx index ae18b1008..8d69e3a6b 100644 --- a/src/pages/Bugs/Drawer/OsField.tsx +++ b/src/pages/Bugs/Drawer/OsField.tsx @@ -1,10 +1,9 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, Span, - TextDescription, } from '@appquality/unguess-design-system'; import { useState } from 'react'; import { Trans, useTranslation } from 'react-i18next'; @@ -34,24 +33,18 @@ export const OsField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_OS_TITLE')} - - - {selected && selected.length + + + item.os) @@ -61,11 +54,11 @@ export const OsField = ({ ? `+${selected.length - maxItemsToShow}` : '' }` - : t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_OS_ALL_LABEL')} - - - - + : t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_OS_ALL_LABEL') + } + /> + + {available.length ? available .slice(0, showMore ? undefined : maxItemsToShow) @@ -137,9 +130,9 @@ export const OsField = ({ )} ) : null} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/PriorityField.tsx b/src/pages/Bugs/Drawer/PriorityField.tsx index 27dd1fda0..baa3e3639 100644 --- a/src/pages/Bugs/Drawer/PriorityField.tsx +++ b/src/pages/Bugs/Drawer/PriorityField.tsx @@ -1,10 +1,9 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, Span, - TextDescription, } from '@appquality/unguess-design-system'; import { useState } from 'react'; import { Trans, useTranslation } from 'react-i18next'; @@ -43,24 +42,18 @@ export const PriorityField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_PRIORITY_TITLE')} - - - {selected && selected.length + + + item.name) @@ -72,11 +65,11 @@ export const PriorityField = ({ }` : t( '__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_PRIORITY_ALL_LABEL' - )} - - - - + ) + } + /> + + {available.length ? available .slice(0, showMore ? undefined : maxItemsToShow) @@ -149,9 +142,9 @@ export const PriorityField = ({ )} ) : null} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/ReadField.tsx b/src/pages/Bugs/Drawer/ReadField.tsx index 2d6eb4dba..ff3c68df0 100644 --- a/src/pages/Bugs/Drawer/ReadField.tsx +++ b/src/pages/Bugs/Drawer/ReadField.tsx @@ -1,9 +1,8 @@ import { - Accordion, + AccordionNew, FormField as Field, MD, Radio, - SM, } from '@appquality/unguess-design-system'; import { useTranslation } from 'react-i18next'; import { useAppDispatch } from 'src/app/hooks'; @@ -24,30 +23,24 @@ export const ReadField = ({ read }: { read: ReadFilterType['read'] }) => { return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_READ_TITLE')} - - - {selected === 'unread' + + + - - - + : t('__BUGS_READ_FILTER_ITEM_DRAWER_ALL') + } + /> + + {available.map((item) => ( { ))} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/ReplicabilityField.tsx b/src/pages/Bugs/Drawer/ReplicabilityField.tsx index 4583a2f86..b42e311a7 100644 --- a/src/pages/Bugs/Drawer/ReplicabilityField.tsx +++ b/src/pages/Bugs/Drawer/ReplicabilityField.tsx @@ -1,9 +1,8 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, - SM, Span, } from '@appquality/unguess-design-system'; import { useState } from 'react'; @@ -34,24 +33,20 @@ export const ReplicabilityField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_REPLICABILITY_TITLE')} - - - {selected && selected.length + + + item.name) @@ -63,11 +58,11 @@ export const ReplicabilityField = ({ }` : t( '__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_REPLICABILITY_ALL_LABEL' - )} - - - - + ) + } + /> + + {available.length ? available .slice(0, showMore ? undefined : maxItemsToShow) @@ -142,9 +137,9 @@ export const ReplicabilityField = ({ )} ) : null} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/SeverityField.tsx b/src/pages/Bugs/Drawer/SeverityField.tsx index cd271cb58..67982f081 100644 --- a/src/pages/Bugs/Drawer/SeverityField.tsx +++ b/src/pages/Bugs/Drawer/SeverityField.tsx @@ -1,10 +1,9 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, Span, - TextDescription, } from '@appquality/unguess-design-system'; import { useState } from 'react'; import { Trans, useTranslation } from 'react-i18next'; @@ -35,24 +34,18 @@ export const SeverityField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_SEVERITY_TITLE')} - - - {selected && selected.length + + + item.name) @@ -64,11 +57,11 @@ export const SeverityField = ({ }` : t( '__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_SEVERITY_ALL_LABEL' - )} - - - - + ) + } + /> + + {available.length ? available .slice(0, showMore ? undefined : maxItemsToShow) @@ -139,9 +132,9 @@ export const SeverityField = ({ )} ) : null} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/TagField.tsx b/src/pages/Bugs/Drawer/TagField.tsx index dcec4f6c4..2377aca4d 100644 --- a/src/pages/Bugs/Drawer/TagField.tsx +++ b/src/pages/Bugs/Drawer/TagField.tsx @@ -1,9 +1,8 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, - SM, Span, } from '@appquality/unguess-design-system'; import { useState } from 'react'; @@ -34,24 +33,18 @@ export const TagField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_TAGS_TITLE')} - - - {selected && selected.length + + + item.display_name) @@ -61,11 +54,11 @@ export const TagField = ({ ? `+${selected.length - maxItemsToShow}` : '' }` - : t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_TAGS_ALL_LABEL')} - - - - + : t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_TAGS_ALL_LABEL') + } + /> + + ) : null} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/TypeField.tsx b/src/pages/Bugs/Drawer/TypeField.tsx index 75a0e156a..613d6544d 100644 --- a/src/pages/Bugs/Drawer/TypeField.tsx +++ b/src/pages/Bugs/Drawer/TypeField.tsx @@ -1,10 +1,9 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, Span, - TextDescription, } from '@appquality/unguess-design-system'; import { useState } from 'react'; import { Trans, useTranslation } from 'react-i18next'; @@ -34,24 +33,18 @@ export const TypeField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_TYPOLOGY_TITLE')} - - - {selected && selected.length + + + item.name) @@ -63,11 +56,11 @@ export const TypeField = ({ }` : t( '__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_TYPOLOGY_ALL_LABEL' - )} - - - - + ) + } + /> + + {available.length ? available .slice(0, showMore ? undefined : maxItemsToShow) @@ -137,9 +130,9 @@ export const TypeField = ({ )} ) : null} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/UniqueField.tsx b/src/pages/Bugs/Drawer/UniqueField.tsx index 41ef3ba9f..f238607d9 100644 --- a/src/pages/Bugs/Drawer/UniqueField.tsx +++ b/src/pages/Bugs/Drawer/UniqueField.tsx @@ -1,9 +1,8 @@ import { - Accordion, + AccordionNew, FormField as Field, MD, Radio, - TextDescription, } from '@appquality/unguess-design-system'; import { useTranslation } from 'react-i18next'; import { useAppDispatch } from 'src/app/hooks'; @@ -28,25 +27,26 @@ export const UniqueField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_DUPLICATES_TITLE')} - - - {selected === 'unique' + + + - - - + : t('__BUGS_UNIQUE_FILTER_ITEM_PLACEHOLDER') + } + /> + + {available.map((item) => ( ))} - - - + + + ); diff --git a/src/pages/Bugs/Drawer/UseCaseField.tsx b/src/pages/Bugs/Drawer/UseCaseField.tsx index 17a5e4a91..412f39a33 100644 --- a/src/pages/Bugs/Drawer/UseCaseField.tsx +++ b/src/pages/Bugs/Drawer/UseCaseField.tsx @@ -1,10 +1,9 @@ import { - Accordion, + AccordionNew, Checkbox, FormField as Field, MD, Span, - TextDescription, } from '@appquality/unguess-design-system'; import { useState } from 'react'; import { Trans, useTranslation } from 'react-i18next'; @@ -34,24 +33,18 @@ export const UseCaseField = ({ return ( <> - - - - - - {t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_USECASE_TITLE')} - - - {selected && selected.length + + + item.title.full) @@ -61,13 +54,11 @@ export const UseCaseField = ({ ? `+${selected.length - maxItemsToShow}` : '' }` - : t( - '__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_USECASE_ALL_LABEL' - )} - - - - + : t('__BUGS_PAGE_FILTER_DRAWER_BODY_FILTER_USECASE_ALL_LABEL') + } + /> + + {available.length ? available .slice(0, showMore ? undefined : maxItemsToShow) @@ -137,9 +128,9 @@ export const UseCaseField = ({ )} ) : null} - - - + + + ); diff --git a/src/pages/Campaign/pageHeader/EditableTitle.tsx b/src/pages/Campaign/pageHeader/EditableTitle.tsx index d95783969..bbd867dae 100644 --- a/src/pages/Campaign/pageHeader/EditableTitle.tsx +++ b/src/pages/Campaign/pageHeader/EditableTitle.tsx @@ -22,6 +22,7 @@ export const EditableTitle = ({ campaignId }: { campaignId: number }) => { () => ( - - - - - - {t('__CAMPAIGN_PAGE_UX_QUESTION_ACCORDION_TITLE')} - - - - - {data.questions && - data.questions.map((question) => ( - - {question.text} - - ))} - - - - + {data.questions && data.questions?.length > 0 && ( + <> + + + + + + + + + {data.questions.map((question) => ( + + {question.text} + + ))} + + + + + + )} ); }; diff --git a/src/pages/Campaign/useWidgets/Functional/widgets/IncomingBugs/UnreadBugs/index.tsx b/src/pages/Campaign/useWidgets/Functional/widgets/IncomingBugs/UnreadBugs/index.tsx index af38e69b1..8a6d58425 100644 --- a/src/pages/Campaign/useWidgets/Functional/widgets/IncomingBugs/UnreadBugs/index.tsx +++ b/src/pages/Campaign/useWidgets/Functional/widgets/IncomingBugs/UnreadBugs/index.tsx @@ -1,10 +1,9 @@ import { - Accordion, + AccordionNew, Skeleton, SM, Span, Tag, - TextLabel, } from '@appquality/unguess-design-system'; import { useTranslation } from 'react-i18next'; import { appTheme } from 'src/app/theme'; @@ -14,16 +13,6 @@ import styled from 'styled-components'; import { EmptyState } from './EmptyState'; import { useUnreadBugs } from './useUnreadBugs'; -const StyledAccordionLabel = styled(Accordion.Label)` - padding-right: 0; - padding-top: 10px; - padding-bottom: 10px; -`; -const UseCaseLabel = styled.div` - display: grid; - grid-template-columns: 1fr fit-content(100%); - align-items: center; -`; const StyledBugCard: typeof BugCard = styled(BugCard)` margin-bottom: ${({ theme }) => theme.space.base * 4}px; `; @@ -64,27 +53,23 @@ const UnreadBugs = ({ campaignId }: { campaignId: number }) => { {t('__CAMPAIGN_WIDGET_INCOMING_BUGS_UNREAD_DESCRIPTION')} - + {data.map((usecase) => ( - - - - - - {usecase.title} - - - ({t('__CAMPAIGN_WIDGET_INCOMING_BUGS_UNREAD')} - {': '} - - {usecase.unreadCount} - - /{usecase.totalCount}) - - - - - + + + + + + ({t('__CAMPAIGN_WIDGET_INCOMING_BUGS_UNREAD')} + {': '} + + {usecase.unreadCount} + + /{usecase.totalCount}) + + + + {usecase.bugs.map((bug) => ( {(severity) => ( @@ -105,10 +90,10 @@ const UnreadBugs = ({ campaignId }: { campaignId: number }) => { )} ))} - - + + ))} - + ); }; diff --git a/src/pages/Dashboard/EditableDescription.tsx b/src/pages/Dashboard/EditableDescription.tsx new file mode 100644 index 000000000..f8e5f14d8 --- /dev/null +++ b/src/pages/Dashboard/EditableDescription.tsx @@ -0,0 +1,73 @@ +import { + InputToggle, + useToast, + Notification, +} from '@appquality/unguess-design-system'; +import { useMemo, useState } from 'react'; +import { useTranslation } from 'react-i18next'; +import { + useGetProjectsByPidQuery, + usePatchProjectsByPidMutation, +} from 'src/features/api'; +import { useSendGTMevent } from 'src/hooks/useGTMevent'; + +export const EditableDescription = ({ projectId }: { projectId: number }) => { + const { t } = useTranslation(); + const sendGTMEvent = useSendGTMevent(); + const { addToast } = useToast(); + const [patchProject] = usePatchProjectsByPidMutation(); + const { data: project } = useGetProjectsByPidQuery({ + pid: projectId.toString(), + }); + const [itemDescription, setItemDescription] = useState(); + + const InputToggleMemo = useMemo( + () => ( + + setItemDescription(e.target.value)} + onBlur={async (e) => { + try { + if (e.currentTarget.value !== project?.description) { + await patchProject({ + pid: projectId?.toString() ?? '0', + body: { description: e.currentTarget.value }, + }).unwrap(); + sendGTMEvent({ + event: 'workspaces-action', + category: '', + action: 'change_description_success', + content: itemDescription, + }); + } + } catch { + addToast( + ({ close }) => ( + + ), + { placement: 'top' } + ); + setItemDescription(project?.description ?? ''); + } + }} + style={{ paddingLeft: 0 }} + /> + + ), + [project, itemDescription] + ); + + return InputToggleMemo; +}; diff --git a/src/pages/Dashboard/EditableTitle.tsx b/src/pages/Dashboard/EditableTitle.tsx new file mode 100644 index 000000000..a98fb3aa5 --- /dev/null +++ b/src/pages/Dashboard/EditableTitle.tsx @@ -0,0 +1,74 @@ +import { + InputToggle, + useToast, + Notification, +} from '@appquality/unguess-design-system'; +import { useMemo, useState } from 'react'; +import { useTranslation } from 'react-i18next'; +import { + useGetProjectsByPidQuery, + usePatchProjectsByPidMutation, +} from 'src/features/api'; +import { useSendGTMevent } from 'src/hooks/useGTMevent'; + +export const EditableTitle = ({ projectId }: { projectId: number }) => { + const { t } = useTranslation(); + const sendGTMEvent = useSendGTMevent(); + const { addToast } = useToast(); + const [patchProject] = usePatchProjectsByPidMutation(); + const { data: project } = useGetProjectsByPidQuery({ + pid: projectId.toString(), + }); + const [itemTitle, setItemTitle] = useState(''); + + const InputToggleMemo = useMemo( + () => ( + + setItemTitle(e.target.value)} + onBlur={async (e) => { + try { + if ( + e.currentTarget.value && + e.currentTarget.value !== project?.name + ) { + await patchProject({ + pid: projectId?.toString() ?? '0', + body: { display_name: e.currentTarget.value }, + }).unwrap(); + sendGTMEvent({ + event: 'workspaces-action', + category: '', + action: 'change_name_success', + content: itemTitle, + }); + } + } catch { + addToast( + ({ close }) => ( + + ), + { placement: 'top' } + ); + setItemTitle(project?.name ?? ''); + } + }} + style={{ paddingLeft: 0 }} + /> + + ), + [project, itemTitle] + ); + + return InputToggleMemo; +}; diff --git a/src/pages/Dashboard/LaunchCampaignCards.tsx b/src/pages/Dashboard/LaunchCampaignCards.tsx new file mode 100644 index 000000000..66777197f --- /dev/null +++ b/src/pages/Dashboard/LaunchCampaignCards.tsx @@ -0,0 +1,56 @@ +import { + Col, + getColor, + Paragraph, + Row, + Separator, + Span, + XXL, +} from '@appquality/unguess-design-system'; +import { Trans, useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { ServiceTiles } from 'src/common/components/ServiceTiles'; +import { useFeatureFlag } from 'src/hooks/useFeatureFlag'; +import styled, { useTheme } from 'styled-components'; + +const Wrapper = styled.div` + display: flex; + flex-direction: column; + gap: ${({ theme }) => theme.space.sm}; +`; +const LaunchCampaignCards = () => { + const theme = useTheme(); + const { t } = useTranslation(); + const { hasFeatureFlag } = useFeatureFlag(); + + if (!hasFeatureFlag('express')) return null; + + return ( + + + + + + {t('__SERVICE_TILES_HEADER')} + + }} + defaults="Launch lean tests autonomosly, get expert-verified results" + /> + + + + + + + ); +}; + +export { LaunchCampaignCards }; diff --git a/src/pages/Dashboard/Modals/CreateProjectModal.tsx b/src/pages/Dashboard/Modals/CreateProjectModal.tsx index ed60e1701..f7501e47a 100644 --- a/src/pages/Dashboard/Modals/CreateProjectModal.tsx +++ b/src/pages/Dashboard/Modals/CreateProjectModal.tsx @@ -84,7 +84,7 @@ export const CreateProjectModal = ({ sendGTMEvent({ event: 'workspaces-action', - category: 'projects_dashboard', + category: '', action: 'project_creation_success', content: `date:${new Date().toISOString()} - ID:${ newProject.id diff --git a/src/pages/Dashboard/Project.tsx b/src/pages/Dashboard/Project.tsx index 91938efde..5e07fb5db 100644 --- a/src/pages/Dashboard/Project.tsx +++ b/src/pages/Dashboard/Project.tsx @@ -11,6 +11,8 @@ import { } from 'src/features/campaignsFilter/campaignsFilterSlice'; import { useGetProjectWithWorkspaceQuery } from 'src/features/api/customEndpoints/getProjectWithWorkspace'; import { LayoutWrapper } from 'src/common/components/LayoutWrapper'; +import { appTheme } from 'src/app/theme'; +import { Project as IProject } from 'src/features/api'; import { ProjectItems } from './project-items'; import { ProjectPageHeader } from './projectPageHeader'; import { CardRowLoading } from './CardRowLoading'; @@ -19,6 +21,39 @@ import { setProjectId, setWorkspace, } from '../../features/navigation/navigationSlice'; +import { EmptyProjectOrArchive } from './empty-state'; +import { LaunchCampaignCards } from './LaunchCampaignCards'; + +const Items = ({ + project, + isLoading, +}: { + project?: IProject; + isLoading?: boolean; +}) => { + if (!project || isLoading) { + return ( + + + + + + ); + } + + if (project.campaigns_count > 0) { + return ( + + + + + + + ); + } + + return ; +}; const Project = () => { const { t } = useTranslation(); @@ -37,10 +72,17 @@ const Project = () => { const { data: { project, workspace } = {}, isSuccess, + isLoading, + isFetching, isError, - } = useGetProjectWithWorkspaceQuery({ - pid: projectId ?? '0', - }); + } = useGetProjectWithWorkspaceQuery( + { + pid: projectId ?? '0', + }, + { + skip: !projectId, + } + ); useEffect(() => { if (isSuccess) { @@ -76,16 +118,10 @@ const Project = () => { title={t('__PAGE_TITLE_PRIMARY_DASHBOARD_SINGLE_PROJECT')} route="projects" pageHeader={} + excludeMarginBottom={!!project && project?.campaigns_count === 0} + excludeMarginTop={!!project && project?.campaigns_count === 0} > - - - {isSuccess ? ( - - ) : ( - - )} - - + ); }; diff --git a/src/pages/Dashboard/SuggestedCampaigns.tsx b/src/pages/Dashboard/SuggestedCampaigns.tsx index 9bc3a1954..ccb6a36ce 100644 --- a/src/pages/Dashboard/SuggestedCampaigns.tsx +++ b/src/pages/Dashboard/SuggestedCampaigns.tsx @@ -9,8 +9,8 @@ import { useGetWorkspacesByWidCampaignsQuery } from 'src/features/api'; import { useActiveWorkspace } from 'src/hooks/useActiveWorkspace'; import { SectionTitle } from 'src/common/components/SectionTitle'; import { appTheme } from 'src/app/theme'; +import { ScrollingGrid } from 'src/common/components/ScrollingGrid'; import { CampaignItem } from './CampaignItem'; -import { CardsContainer, StyledRow } from './CardContainer'; import { CardRowLoading } from './CardRowLoading'; export const SuggestedCampaigns = () => { @@ -44,18 +44,13 @@ export const SuggestedCampaigns = () => { - - - {campaigns.data.items.map((campaign) => ( - - - - ))} - - + + {campaigns.data.items.map((campaign) => ( + + + + ))} + ); }; diff --git a/src/pages/Dashboard/campaigns-list/index.tsx b/src/pages/Dashboard/campaigns-list/index.tsx index fb86ff69a..44047d306 100644 --- a/src/pages/Dashboard/campaigns-list/index.tsx +++ b/src/pages/Dashboard/campaigns-list/index.tsx @@ -8,7 +8,7 @@ import styled from 'styled-components'; import { SectionTitle } from 'src/common/components/SectionTitle'; import { appTheme } from 'src/app/theme'; import { Separator } from '../Separator'; -import { EmptyResults } from '../emptyState'; +import { EmptyResults } from '../empty-state/EmptyResults'; import { Filters } from '../filters'; import { CardList } from './list'; import { TableList } from './table'; diff --git a/src/pages/Dashboard/emptyState.tsx b/src/pages/Dashboard/empty-state/EmptyResults.tsx similarity index 97% rename from src/pages/Dashboard/emptyState.tsx rename to src/pages/Dashboard/empty-state/EmptyResults.tsx index 6fa349f5d..42dd4cdf8 100644 --- a/src/pages/Dashboard/emptyState.tsx +++ b/src/pages/Dashboard/empty-state/EmptyResults.tsx @@ -49,11 +49,10 @@ export const EmptyResults = () => { {t('__DASHBOARD_EMPTY_SEARCH_RESULTS_TITLE')} - + {t('__DASHBOARD_EMPTY_SEARCH_RESULTS_DESCRIPTION')} - {hasFilters && ( - )} - - - - ) : ( - - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_LABEL' - )} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_DESCRIPTION' - )} - - - )} - - + diff --git a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/modalUseCaseBody.tsx b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/modalUseCaseBody.tsx new file mode 100644 index 000000000..71119296e --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/modalUseCaseBody.tsx @@ -0,0 +1,153 @@ +import { + Button, + ContainerCard, + LG, + Paragraph, + retrieveComponentStyles, +} from '@appquality/unguess-design-system'; +import { FieldArray, useFormikContext } from 'formik'; +import { useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { ReactComponent as TrashIcon } from 'src/assets/icons/trash-stroke.svg'; +import { ReactComponent as EmptyImg } from 'src/assets/modal-use-case-empty.svg'; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; +import styled from 'styled-components'; +import { ScrollingContainer } from './modalUseCaseHelp'; +import { UseCaseDetails } from './useCaseDetails'; + +const CenteredContainer = styled.div` + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + flex: 1; +`; + +const PullLeft = styled.div` + display: flex; + flex-direction: row; + align-items: center; + justify-content: flex-start; + margin-top: ${({ theme }) => theme.space.md}; +`; + +const BodyScrollingContainer = styled(ScrollingContainer)` + padding-left: calc( + ${({ theme }) => theme.space.xxl} + ${({ theme }) => theme.space.xxl} + ); + padding-right: ${({ theme }) => theme.space.lg}; + + ::-webkit-scrollbar { + background-color: transparent; + } + + &:hover { + ::-webkit-scrollbar { + background-color: inherit; + } + } + + @media screen and (max-width: ${({ theme }) => theme.breakpoints.sm}) { + padding: 0 ${({ theme }) => theme.space.sm}; + } +`; + +const EmptyStateTitle = styled(LG)` + ${(props) => retrieveComponentStyles('text.primary', props)}; + font-weight: ${({ theme }) => theme.fontWeights.medium}; + text-align: center; +`; + +const EmptyStateText = styled(Paragraph)` + color: ${({ theme }) => theme.palette.grey[600]}; + text-align: center; +`; + +const StyledContainerCard = styled(ContainerCard)` + padding: ${({ theme }) => theme.space.xl}; + + @media screen and (max-width: ${({ theme }) => theme.breakpoints.sm}) { + padding: ${({ theme }) => `${theme.space.lg} ${theme.space.md}`}; + } +`; + +export const ModalUseCaseBody = ({ + currentUseCase, + setUseCase, +}: { + currentUseCase?: UseCase; + setUseCase: (item?: UseCase) => void; +}) => { + const { t } = useTranslation(); + const { values } = useFormikContext(); + const { use_cases } = values; + + const useCaseIndex = + currentUseCase && use_cases && Array.isArray(use_cases) && use_cases.length + ? use_cases.findIndex((item) => item.id === currentUseCase.id) + : 0; + + return ( + + + {use_cases && currentUseCase && use_cases.length ? ( + <> + + + + {({ remove }) => ( + + )} + + + + ) : ( + + + + {t( + '__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_LABEL' + )} + + + {t( + '__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_DESCRIPTION' + )} + + + )} + + + ); +}; diff --git a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/modalUseCaseTabLayout.tsx b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/modalUseCaseTabLayout.tsx index 98e82b756..0544d863a 100644 --- a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/modalUseCaseTabLayout.tsx +++ b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/modalUseCaseTabLayout.tsx @@ -4,7 +4,7 @@ import { getColor, retrieveComponentStyles, } from '@appquality/unguess-design-system'; -import { FieldArray, FormikProps } from 'formik'; +import { FieldArray, useFormikContext } from 'formik'; import i18n from 'i18next'; import { useEffect, useState } from 'react'; import { useTranslation } from 'react-i18next'; @@ -101,16 +101,14 @@ const UseCasesWrapper = styled.div` `; export const ModalUseCaseTabLayout = ({ - formikProps, handleCurrentUseCase, currentUseCase, }: { - formikProps: FormikProps; handleCurrentUseCase: (useCase: UseCase) => void; currentUseCase?: UseCase; }) => { const { t } = useTranslation(); - const { values, validateForm } = formikProps; + const { values, validateForm } = useFormikContext(); const [highestUseCaseId, setHighestUseCaseId] = useState(0); const { use_cases } = values; @@ -160,10 +158,10 @@ export const ModalUseCaseTabLayout = ({ > {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL' + '__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL' )}{' '} + {index + 1} - {index + 1} ))} {use_cases && use_cases.length < EXPRESS_USE_CASES_LIMIT && ( @@ -195,7 +193,7 @@ export const ModalUseCaseTabLayout = ({ {t( '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_ADD_USE_CASE_BUTTON' - )}{' '} + )} )} diff --git a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetails.tsx b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetails.tsx index 8101a72ed..559741a18 100644 --- a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetails.tsx +++ b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetails.tsx @@ -1,376 +1,19 @@ -import { - Button, - Col, - Editor, - FormField, - InputToggle, - LG, - Label, - MediaInput, - Paragraph, - Row, - Span, - Toggle, -} from '@appquality/unguess-design-system'; -import { FormikProps } from 'formik'; -import i18n from 'i18next'; -import { useCallback, useEffect, useState } from 'react'; -import { useTranslation } from 'react-i18next'; -import { useAppSelector } from 'src/app/hooks'; -import { appTheme } from 'src/app/theme'; -import { ReactComponent as EditIcon } from 'src/assets/icons/edit-icon.svg'; -import { ReactComponent as InfoIcon } from 'src/assets/icons/info-icon.svg'; -import { ReactComponent as LinkIcon } from 'src/assets/icons/link-stroke.svg'; import { AnimatedContainer } from 'src/common/components/animatedContainer'; -import { Divider } from 'src/common/components/divider'; -import { HelpTextMessage } from 'src/common/components/helpTextMessage'; -import { getLocalizedStrapiData } from 'src/common/utils'; -import { UseCaseTemplate } from 'src/features/api/api'; -import { useGeti18nExpressTypesByIdQuery } from 'src/features/backoffice/strapi'; -import { UseCase, emptyUseCase } from 'src/pages/ExpressWizard/fields/how'; -import { Notes, NotesTitle } from 'src/pages/ExpressWizard/notesCard'; -import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; -import styled from 'styled-components'; -import { TemplateDropdown } from './templateDropdown'; - -const StyledFormField = styled.div` - margin-top: ${({ theme }) => theme.space.md}; -`; - -const InlineRow = styled.div` - display: flex; - flex-direction: row; - align-items: center; - justify-content: space-between; -`; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { UseCaseEditor } from './useCaseDetailsEditor'; +import { UseCaseLink } from './useCaseDetailsLink'; +import { UseCaseTitle } from './useCaseDetailsTitle'; export const UseCaseDetails = ({ - formikProps, useCase, useCaseIndex, }: { - formikProps: FormikProps; useCase: UseCase; useCaseIndex: number; -}) => { - const { t } = useTranslation(); - const { - getFieldProps, - setFieldValue, - validateForm, - values, - errors, - touched, - } = formikProps; - const { expressTypeId } = useAppSelector((state) => state.express); - - const { data } = useGeti18nExpressTypesByIdQuery({ - id: expressTypeId?.toString() || '0', - populate: { - localizations: { - populate: '*', - }, - }, - }); - - const expressData = getLocalizedStrapiData({ - item: data, - language: i18n.language, - }); - - const [isEditing, setIsEditing] = useState(false); - const [editorContent, setEditorContent] = useState( - useCase ? useCase.description : '' - ); - const [editorChars, setEditorChars] = useState( - useCase ? useCase.description.length : 0 - ); - const [selectedFunc, setSelectedFunc] = useState( - useCase ? useCase.functionality : undefined - ); - - const [showLabel, setShowLabel] = useState(false); - - const useCaseErrors = - errors && errors.use_cases && Array.isArray(errors.use_cases) - ? (errors.use_cases[useCaseIndex as number] as UseCase) - : null; - - const useCaseTouches = - touched && touched.use_cases && Array.isArray(touched.use_cases) - ? touched.use_cases[useCaseIndex as number] - : null; - - const handleSave = useCallback(() => { - if (editorChars) { - setFieldValue(`use_cases[${useCaseIndex}].description`, editorContent); - useCase.description = editorContent; - setIsEditing(false); - } - }, [editorChars, editorContent]); - - useEffect(() => { - setSelectedFunc(useCase ? useCase.functionality : undefined); - setIsEditing(false); - }, [useCase]); - - const handleDropdownChange = useCallback( - (item: UseCaseTemplate | undefined) => { - let isLogged = emptyUseCase.logged; - let content = - expressData && expressData.default_use_case_text - ? expressData.default_use_case_text - : emptyUseCase.description; - - if (item && item.id !== -1) { - isLogged = !!item.requiresLogin; - content = item.content; - } - - setFieldValue(`use_cases[${useCaseIndex}].logged`, isLogged); - setFieldValue(`use_cases[${useCaseIndex}].description`, content); - setFieldValue(`use_cases[${useCaseIndex}].functionality`, item); - - setEditorContent(content); - useCase.description = content; - - useCase.logged = isLogged; - useCase.functionality = item; - - setSelectedFunc(item ?? undefined); - validateForm(); - }, - [selectedFunc] - ); - - return ( - - {/* Title */} - - - {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_TITLE')} - * - - - { - setShowLabel(true); - }} - onBlur={() => { - validateForm(); - setShowLabel(false); - }} - /> - - - - {/* Dropdown */} - - - - - {!selectedFunc && useCaseTouches && useCaseTouches.functionality && ( - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_FUNCTIONALITY_REQUIRED' - )} - - )} - - - {/* Logged Toggle */} - - - - - - - - - - {values && - values.use_cases && - values.use_cases[useCaseIndex as number] && - values.use_cases[useCaseIndex as number].logged ? ( - <> - - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LOGGED_FIELD_DESCRIPTION' - )} - - - - - ) : null} - - - - {/* Editor */} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_TITLE' - )} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_DESCRIPTION' - )} - - {isEditing ? ( - { - setEditorChars(editor.storage.characterCount.characters()); - setEditorContent(editor.getHTML()); - }} - hasInlineMenu - onSave={handleSave} - > - {useCase ? useCase.description : ''} - - ) : ( - - - {useCase ? useCase.description : ''} - - - - )} - - {isEditing && ( - - - {!editorChars ? ( - - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_TITLE' - )} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_SUBTITLE' - )} - - - ) : ( - - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_TITLE' - )} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_SUBTITLE' - )} - - - )} - - - - - - - )} - - {/* Link */} - - - - {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_SUBTITLE')} - - } - type="text" - placeholder={t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_PLACEHOLDER' - )} - focusInset - {...(useCase && - useCase.link && { - value: useCase.link, - })} - {...getFieldProps(`use_cases[${useCaseIndex}].link`)} - {...(useCaseErrors && useCaseErrors?.link && { validation: 'error' })} - onBlur={() => validateForm()} - /> - {useCaseErrors && useCaseErrors?.link ? ( - - {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_INVALID')} - - ) : ( - - - {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_MESSAGE')} - - )} - - - ); -}; +}) => ( + + + + + +); diff --git a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsDropdown.tsx b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsDropdown.tsx new file mode 100644 index 000000000..035486aae --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsDropdown.tsx @@ -0,0 +1,166 @@ +import { + FormField, + Label, + Paragraph, + Toggle, +} from '@appquality/unguess-design-system'; +import { useFormikContext } from 'formik'; +import i18n from 'i18next'; +import { useCallback, useEffect, useState } from 'react'; +import { useTranslation } from 'react-i18next'; +import { useAppSelector } from 'src/app/hooks'; +import { appTheme } from 'src/app/theme'; +import { ReactComponent as InfoIcon } from 'src/assets/icons/info-icon.svg'; +import { Divider } from 'src/common/components/divider'; +import { HelpTextMessage } from 'src/common/components/helpTextMessage'; +import { getLocalizedStrapiData } from 'src/common/utils'; +import { UseCaseTemplate } from 'src/features/api/api'; +import { useGeti18nExpressTypesByIdQuery } from 'src/features/backoffice/strapi'; +import { UseCase, emptyUseCase } from 'src/pages/ExpressWizard/fields/how'; +import { Notes } from 'src/pages/ExpressWizard/notesCard'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; +import styled from 'styled-components'; +import { TemplateDropdown } from './templateDropdown'; + +const StyledFormField = styled.div` + margin-top: ${({ theme }) => theme.space.md}; +`; + +const InlineRow = styled.div` + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; +`; + +const UseCaseDropdown = ({ + useCase, + useCaseIndex, + setEditorContent, + setIsEditing, +}: { + useCase: UseCase; + useCaseIndex: number; + setEditorContent: (content: string) => void; + setIsEditing: (value: boolean) => void; +}) => { + const { t } = useTranslation(); + const { getFieldProps, setFieldValue, validateForm, values } = + useFormikContext(); + const { expressTypeId } = useAppSelector((state) => state.express); + + const [selectedFunc, setSelectedFunc] = useState( + useCase ? useCase.functionality : undefined + ); + + const { data } = useGeti18nExpressTypesByIdQuery({ + id: expressTypeId?.toString() || '0', + populate: { + localizations: { + populate: '*', + }, + }, + }); + + const expressData = getLocalizedStrapiData({ + item: data, + language: i18n.language, + }); + + const handleDropdownChange = useCallback( + (item: UseCaseTemplate | undefined) => { + let isLogged = emptyUseCase.logged; + let content = + expressData && expressData.default_use_case_text + ? expressData.default_use_case_text + : emptyUseCase.description; + + if (item && item.id !== -1) { + isLogged = !!item.requiresLogin; + content = item.content; + } + + setFieldValue(`use_cases[${useCaseIndex}].logged`, isLogged); + setFieldValue(`use_cases[${useCaseIndex}].description`, content); + setFieldValue(`use_cases[${useCaseIndex}].functionality`, item); + + setEditorContent(content); + useCase.description = content; + + useCase.logged = isLogged; + useCase.functionality = item; + + setSelectedFunc(item ?? undefined); + validateForm(); + }, + [selectedFunc] + ); + + useEffect(() => { + setSelectedFunc(useCase ? useCase.functionality : undefined); + setIsEditing(false); + }, [useCase]); + + return ( + + + + + {!selectedFunc && ( + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_FUNCTIONALITY_REQUIRED' + )} + + )} + + + + + + + + + + + + {values && + values.use_cases && + values.use_cases[useCaseIndex as number] && + values.use_cases[useCaseIndex as number].logged ? ( + <> + +
+ + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LOGGED_FIELD_DESCRIPTION' + )} + +
+ + ) : null} +
+
+ ); +}; + +export { UseCaseDropdown }; diff --git a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsEditor.tsx b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsEditor.tsx new file mode 100644 index 000000000..be9984e50 --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsEditor.tsx @@ -0,0 +1,160 @@ +import { + Button, + Col, + Editor, + LG, + Paragraph, + Row, +} from '@appquality/unguess-design-system'; +import { useFormikContext } from 'formik'; +import { useCallback, useEffect, useMemo, useState } from 'react'; +import { useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { ReactComponent as EditIcon } from 'src/assets/icons/edit-icon.svg'; +import { ReactComponent as InfoIcon } from 'src/assets/icons/info-icon.svg'; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { Notes, NotesTitle } from 'src/pages/ExpressWizard/notesCard'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; +import { UseCaseDropdown } from './useCaseDetailsDropdown'; + +const UseCaseEditor = ({ + useCase, + useCaseIndex, +}: { + useCase: UseCase; + useCaseIndex: number; +}) => { + const { t } = useTranslation(); + const { setFieldValue } = useFormikContext(); + const [isEditing, setIsEditing] = useState(false); + const [editorContent, setEditorContent] = useState( + useCase ? useCase.description : '' + ); + const [editorChars, setEditorChars] = useState( + useCase ? useCase.description.length : 0 + ); + + const handleSave = useCallback(() => { + if (editorChars) { + setFieldValue(`use_cases[${useCaseIndex}].description`, editorContent); + useCase.description = editorContent; + setIsEditing(false); + } + }, [editorChars, editorContent]); + + const memoEditor = useMemo( + () => ( + + + {editorContent} + + + + ), + [useCase, editorContent] + ); + + useEffect(() => { + setIsEditing(false); + }, [useCase]); + + return ( + <> + +
+ + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_TITLE' + )} + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_DESCRIPTION' + )} + + {isEditing ? ( + { + setEditorChars(editor.storage.characterCount.characters()); + setEditorContent(editor.getHTML()); + }} + hasInlineMenu + onSave={handleSave} + > + {useCase ? useCase.description : ''} + + ) : ( + memoEditor + )} +
+ {isEditing && ( + + + {!editorChars ? ( + + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_TITLE' + )} + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_SUBTITLE' + )} + + + ) : ( + + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_TITLE' + )} + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_SUBTITLE' + )} + + + )} + + + + + + + )} + + ); +}; + +export { UseCaseEditor }; diff --git a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsLink.tsx b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsLink.tsx new file mode 100644 index 000000000..beecd548b --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsLink.tsx @@ -0,0 +1,72 @@ +import { + Label, + MediaInput, + Paragraph, + Span, +} from '@appquality/unguess-design-system'; +import { useFormikContext } from 'formik'; +import { useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { ReactComponent as InfoIcon } from 'src/assets/icons/info-icon.svg'; +import { ReactComponent as LinkIcon } from 'src/assets/icons/link-stroke.svg'; +import { HelpTextMessage } from 'src/common/components/helpTextMessage'; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; + +const UseCaseLink = ({ + useCase, + useCaseIndex, +}: { + useCase: UseCase; + useCaseIndex: number; +}) => { + const { t } = useTranslation(); + const { getFieldProps, validateForm, errors } = + useFormikContext(); + + const useCaseErrors = + errors && errors.use_cases && Array.isArray(errors.use_cases) + ? (errors.use_cases[useCaseIndex as number] as UseCase) + : null; + + return ( +
+ + + {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_SUBTITLE')} + + } + type="text" + placeholder={t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_PLACEHOLDER' + )} + focusInset + {...(useCase && + useCase.link && { + value: useCase.link, + })} + {...getFieldProps(`use_cases[${useCaseIndex}].link`)} + {...(useCaseErrors && useCaseErrors?.link && { validation: 'error' })} + onBlur={() => validateForm()} + /> + {useCaseErrors && useCaseErrors?.link ? ( + + {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_INVALID')} + + ) : ( + + + {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_MESSAGE')} + + )} +
+ ); +}; + +export { UseCaseLink }; diff --git a/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsTitle.tsx b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsTitle.tsx new file mode 100644 index 000000000..90bd072b1 --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-2/ModalUseCase/useCaseDetailsTitle.tsx @@ -0,0 +1,62 @@ +import { InputToggle, Span } from '@appquality/unguess-design-system'; +import { useFormikContext } from 'formik'; +import { useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { HelpTextMessage } from 'src/common/components/helpTextMessage'; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; + +const UseCaseTitle = ({ + useCase, + useCaseIndex, +}: { + useCase: UseCase; + useCaseIndex: number; +}) => { + const { t } = useTranslation(); + const { getFieldProps, validateForm, errors } = + useFormikContext(); + + const useCaseErrors = + errors && errors.use_cases && Array.isArray(errors.use_cases) + ? (errors.use_cases[useCaseIndex as number] as UseCase) + : null; + + return ( + <> + + {t('__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_TITLE')} + * + + + { + validateForm(); + }} + /> + + {useCaseErrors && useCaseErrors?.title && ( + + {t('__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_REQUIRED')} + + )} + + ); +}; + +export { UseCaseTitle }; diff --git a/src/pages/ExpressWizard/steps/express-2/how.tsx b/src/pages/ExpressWizard/steps/express-2/how.tsx index 582b4e06c..096acdfd6 100644 --- a/src/pages/ExpressWizard/steps/express-2/how.tsx +++ b/src/pages/ExpressWizard/steps/express-2/how.tsx @@ -138,7 +138,6 @@ export const HowStep = (props: FormikProps) => { return ( <> @@ -202,7 +201,7 @@ export const HowStep = (props: FormikProps) => { {index + 1}/{EXPRESS_USE_CASES_LIMIT}{' '} - {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL')} + {t('__EXPRESS_2_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL')} {useCase.title} {errors && @@ -210,7 +209,7 @@ export const HowStep = (props: FormikProps) => { errors.use_cases[useCase.id - 1] && ( {t( - '__EXPRESS_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_INCOMEPLETE_LABEL' + '__EXPRESS_2_WIZARD_STEP_HOW_EDIT_USE_CASE_CARD_INCOMEPLETE_LABEL' )} )} diff --git a/src/pages/ExpressWizard/steps/express-2/whereApp.tsx b/src/pages/ExpressWizard/steps/express-2/whereApp.tsx index cdc1d7ef9..682ee312f 100644 --- a/src/pages/ExpressWizard/steps/express-2/whereApp.tsx +++ b/src/pages/ExpressWizard/steps/express-2/whereApp.tsx @@ -84,6 +84,7 @@ export const WhereAppStep = (props: FormikProps) => { Choose what kind of devices do you want to test on + *
@@ -142,7 +143,10 @@ export const WhereAppStep = (props: FormikProps) => {
- {t('__EXPRESS_WIZARD_STEP_APP_WHERE_OS_LABEL')} + + Choose the operating system + + * ) => { Choose what kind of devices do you want to test on + * diff --git a/src/pages/ExpressWizard/steps/express-2/who.tsx b/src/pages/ExpressWizard/steps/express-2/who.tsx index af1687eb9..145f36740 100644 --- a/src/pages/ExpressWizard/steps/express-2/who.tsx +++ b/src/pages/ExpressWizard/steps/express-2/who.tsx @@ -15,6 +15,7 @@ import { addBusinessDays } from 'date-fns'; import { FormikProps } from 'formik'; import { t } from 'i18next'; import { useState } from 'react'; +import { appTheme } from 'src/app/theme'; import { EXPRESS_BUSINESS_DAYS_TO_ADD } from 'src/constants'; import { CardDivider } from 'src/pages/ExpressWizard/cardDivider'; import { WizardCol } from 'src/pages/ExpressWizard/wizardCol'; @@ -59,7 +60,7 @@ export const WhoStep = ({ EXPRESS_BUSINESS_DAYS_TO_ADD ); - if (value === 'en') { + if (value !== 'it') { endDate = addBusinessDays( values.campaign_date, EXPRESS_BUSINESS_DAYS_TO_ADD + 1 @@ -87,7 +88,10 @@ export const WhoStep = ({ - + @@ -99,7 +103,7 @@ export const WhoStep = ({ onChange={(e) => handleRadioClick(e.target.value)} > @@ -116,7 +120,41 @@ export const WhoStep = ({ onChange={(e) => handleRadioClick(e.target.value)} > + + + + + + + + handleRadioClick(e.target.value)} + > + + + + + + + + + handleRadioClick(e.target.value)} + > + diff --git a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCase.tsx b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCase.tsx index f680ca4e9..00449b87b 100644 --- a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCase.tsx +++ b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCase.tsx @@ -1,29 +1,21 @@ import { - Button, Col, - ContainerCard, Grid, - LG, ModalFullScreen, - Paragraph, Row, - retrieveComponentStyles, } from '@appquality/unguess-design-system'; -import { FieldArray, FormikProps } from 'formik'; -import { useTranslation } from 'react-i18next'; +import { useFormikContext } from 'formik'; import { useAppDispatch, useAppSelector } from 'src/app/hooks'; import { appTheme } from 'src/app/theme'; -import { ReactComponent as TrashIcon } from 'src/assets/icons/trash-stroke.svg'; -import { ReactComponent as EmptyImg } from 'src/assets/modal-use-case-empty.svg'; import { LayoutWrapper } from 'src/common/components/LayoutWrapper'; import { closeUseCaseModal } from 'src/features/express/expressSlice'; import { UseCase } from 'src/pages/ExpressWizard/fields/how'; import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; import styled from 'styled-components'; +import { ModalUseCaseBody } from './modalUseCaseBody'; import { ModalUseCaseHeader } from './modalUseCaseHeader'; -import { ModalUseCaseHelp, ScrollingContainer } from './modalUseCaseHelp'; +import { ModalUseCaseHelp } from './modalUseCaseHelp'; import { ModalUseCaseTabLayout } from './modalUseCaseTabLayout'; -import { UseCaseDetails } from './useCaseDetails'; const Body = styled(ModalFullScreen.Body)` padding: 0; @@ -80,60 +72,6 @@ const TextCasesTabs = styled.div` } `; -const CenteredContainer = styled.div` - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - flex: 1; -`; - -const PullLeft = styled.div` - display: flex; - flex-direction: row; - align-items: center; - justify-content: flex-start; - margin-top: ${({ theme }) => theme.space.md}; -`; - -const BodyScrollingContainer = styled(ScrollingContainer)` - padding-left: calc( - ${({ theme }) => theme.space.xxl} + ${({ theme }) => theme.space.xxl} - ); - padding-right: ${({ theme }) => theme.space.lg}; - - ::-webkit-scrollbar { - background-color: transparent; - } - - &:hover { - ::-webkit-scrollbar { - background-color: inherit; - } - } - - @media screen and (max-width: ${({ theme }) => theme.breakpoints.sm}) { - padding: 0 ${({ theme }) => theme.space.sm}; - } -`; - -const EmptyStateTitle = styled(LG)` - ${(props) => retrieveComponentStyles('text.primary', props)}; - font-weight: ${({ theme }) => theme.fontWeights.medium}; -`; - -const EmptyStateText = styled(Paragraph)` - color: ${({ theme }) => theme.palette.grey[600]}; -`; - -const StyledContainerCard = styled(ContainerCard)` - padding: ${({ theme }) => theme.space.xl}; - - @media screen and (max-width: ${({ theme }) => theme.breakpoints.sm}) { - padding: ${({ theme }) => `${theme.space.lg} ${theme.space.md}`}; - } -`; - const StyledModal = styled(ModalFullScreen)` background-color: ${({ theme }) => theme.palette.grey[100]}; `; @@ -143,32 +81,19 @@ const ModalBodyLayout = styled(LayoutWrapper)` `; export const ModalUseCase = ({ - formikProps, currentUseCase, setUseCase, }: { - formikProps: FormikProps; currentUseCase?: UseCase; setUseCase: (item?: UseCase) => void; }) => { - const { t } = useTranslation(); const dispatch = useAppDispatch(); - - const { values, validateForm } = formikProps; - const { use_cases } = values; - + const { validateForm } = useFormikContext(); const { isUseCaseModalOpen } = useAppSelector((state) => state.express); - const useCaseIndex = - currentUseCase && use_cases && Array.isArray(use_cases) && use_cases.length - ? use_cases.findIndex((item) => item.id === currentUseCase.id) - : 0; - const closeModal = () => { validateForm().then(() => { - // if (!errors || !errors.use_cases) { dispatch(closeUseCaseModal()); - // } }); }; @@ -186,72 +111,14 @@ export const ModalUseCase = ({ - - - {use_cases && currentUseCase && use_cases.length ? ( - <> - - - - {({ remove }) => ( - - )} - - - - ) : ( - - - - {t( - '__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_LABEL' - )} - - - {t( - '__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_DESCRIPTION' - )} - - - )} - - + diff --git a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCaseBody.tsx b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCaseBody.tsx new file mode 100644 index 000000000..51a1fe3eb --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCaseBody.tsx @@ -0,0 +1,153 @@ +import { + Button, + ContainerCard, + LG, + Paragraph, + retrieveComponentStyles, +} from '@appquality/unguess-design-system'; +import { FieldArray, useFormikContext } from 'formik'; +import { useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { ReactComponent as TrashIcon } from 'src/assets/icons/trash-stroke.svg'; +import { ReactComponent as EmptyImg } from 'src/assets/modal-use-case-empty.svg'; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; +import styled from 'styled-components'; +import { ScrollingContainer } from './modalUseCaseHelp'; +import { UseCaseDetails } from './useCaseDetails'; + +const CenteredContainer = styled.div` + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + flex: 1; +`; + +const PullLeft = styled.div` + display: flex; + flex-direction: row; + align-items: center; + justify-content: flex-start; + margin-top: ${({ theme }) => theme.space.md}; +`; + +const BodyScrollingContainer = styled(ScrollingContainer)` + padding-left: calc( + ${({ theme }) => theme.space.xxl} + ${({ theme }) => theme.space.xxl} + ); + padding-right: ${({ theme }) => theme.space.lg}; + + ::-webkit-scrollbar { + background-color: transparent; + } + + &:hover { + ::-webkit-scrollbar { + background-color: inherit; + } + } + + @media screen and (max-width: ${({ theme }) => theme.breakpoints.sm}) { + padding: 0 ${({ theme }) => theme.space.sm}; + } +`; + +const EmptyStateTitle = styled(LG)` + ${(props) => retrieveComponentStyles('text.primary', props)}; + font-weight: ${({ theme }) => theme.fontWeights.medium}; + text-align: center; +`; + +const EmptyStateText = styled(Paragraph)` + color: ${({ theme }) => theme.palette.grey[600]}; + text-align: center; +`; + +const StyledContainerCard = styled(ContainerCard)` + padding: ${({ theme }) => theme.space.xl}; + + @media screen and (max-width: ${({ theme }) => theme.breakpoints.sm}) { + padding: ${({ theme }) => `${theme.space.lg} ${theme.space.md}`}; + } +`; + +export const ModalUseCaseBody = ({ + currentUseCase, + setUseCase, +}: { + currentUseCase?: UseCase; + setUseCase: (item?: UseCase) => void; +}) => { + const { t } = useTranslation(); + const { values } = useFormikContext(); + const { use_cases } = values; + + const useCaseIndex = + currentUseCase && use_cases && Array.isArray(use_cases) && use_cases.length + ? use_cases.findIndex((item) => item.id === currentUseCase.id) + : 0; + + return ( + + + {use_cases && currentUseCase && use_cases.length ? ( + <> + + + + {({ remove }) => ( + + )} + + + + ) : ( + + + + {t( + '__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_LABEL' + )} + + + {t( + '__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_EMPTY_USE_CASE_DESCRIPTION' + )} + + + )} + + + ); +}; diff --git a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCaseTabLayout.tsx b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCaseTabLayout.tsx index 5a08996b5..3d3357cce 100644 --- a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCaseTabLayout.tsx +++ b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/modalUseCaseTabLayout.tsx @@ -4,7 +4,7 @@ import { getColor, retrieveComponentStyles, } from '@appquality/unguess-design-system'; -import { FieldArray, FormikProps } from 'formik'; +import { FieldArray, useFormikContext } from 'formik'; import i18n from 'i18next'; import { useEffect, useState } from 'react'; import { useTranslation } from 'react-i18next'; @@ -101,16 +101,14 @@ const UseCasesWrapper = styled.div` `; export const ModalUseCaseTabLayout = ({ - formikProps, handleCurrentUseCase, currentUseCase, }: { - formikProps: FormikProps; handleCurrentUseCase: (useCase: UseCase) => void; currentUseCase?: UseCase; }) => { const { t } = useTranslation(); - const { values, validateForm } = formikProps; + const { values, validateForm } = useFormikContext(); const [highestUseCaseId, setHighestUseCaseId] = useState(0); const { use_cases } = values; @@ -162,8 +160,8 @@ export const ModalUseCaseTabLayout = ({ {t( '__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_USE_CASE_LABEL' )}{' '} + {index + 1} - {index + 1} ))} {use_cases && use_cases.length < EXPRESS_USE_CASES_LIMIT && ( diff --git a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetails.tsx b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetails.tsx index 1c88715e5..559741a18 100644 --- a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetails.tsx +++ b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetails.tsx @@ -1,241 +1,19 @@ -import { - Label, - Span, - MediaInput, - Paragraph, - LG, - Editor, - Button, - Col, - Row, - InputToggle, -} from '@appquality/unguess-design-system'; -import { FormikProps } from 'formik'; -import { ReactComponent as LinkIcon } from 'src/assets/icons/link-stroke.svg'; -import { ReactComponent as InfoIcon } from 'src/assets/icons/info-icon.svg'; -import { ReactComponent as EditIcon } from 'src/assets/icons/edit-icon.svg'; -import { useCallback, useEffect, useState } from 'react'; -import { Notes, NotesTitle } from 'src/pages/ExpressWizard/notesCard'; -import { useTranslation } from 'react-i18next'; -import styled from 'styled-components'; -import { HelpTextMessage } from 'src/common/components/helpTextMessage'; -import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; -import { UseCase } from 'src/pages/ExpressWizard/fields/how'; import { AnimatedContainer } from 'src/common/components/animatedContainer'; -import { appTheme } from 'src/app/theme'; - -const StyledFormField = styled.div` - margin-top: ${({ theme }) => theme.space.md}; -`; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { UseCaseEditor } from './useCaseDetailsEditor'; +import { UseCaseLink } from './useCaseDetailsLink'; +import { UseCaseTitle } from './useCaseDetailsTitle'; export const UseCaseDetails = ({ - formikProps, useCase, useCaseIndex, }: { - formikProps: FormikProps; useCase: UseCase; useCaseIndex: number; -}) => { - const { t } = useTranslation(); - const { getFieldProps, setFieldValue, validateForm, errors } = formikProps; - - const [isEditing, setIsEditing] = useState(false); - const [editorContent, setEditorContent] = useState( - useCase ? useCase.description : '' - ); - const [editorChars, setEditorChars] = useState( - useCase ? useCase.description.length : 0 - ); - - const [showLabel, setShowLabel] = useState(false); - - const useCaseErrors = - errors && errors.use_cases && Array.isArray(errors.use_cases) - ? (errors.use_cases[useCaseIndex as number] as UseCase) - : null; - - const handleSave = useCallback(() => { - if (editorChars) { - setFieldValue(`use_cases[${useCaseIndex}].description`, editorContent); - useCase.description = editorContent; - setIsEditing(false); - } - }, [editorChars, editorContent]); - - useEffect(() => { - setIsEditing(false); - }, [useCase]); - - return ( - - {/* Title */} - - - {t('__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_TITLE')} - * - - - { - setShowLabel(true); - }} - onBlur={() => { - validateForm(); - setShowLabel(false); - }} - /> - - {useCaseErrors && useCaseErrors?.title && ( - - {t('__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_REQUIRED')} - - )} - - - {/* Editor */} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_INSTRUCTIONS_FIELD_TITLE' - )} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_INSTRUCTIONS_FIELD_DESCRIPTION' - )} - - {isEditing ? ( - { - setEditorChars(editor.storage.characterCount.characters()); - setEditorContent(editor.getHTML()); - }} - hasInlineMenu - onSave={handleSave} - > - {useCase ? useCase.description : ''} - - ) : ( - - - {useCase ? useCase.description : ''} - - - - )} - - {isEditing && ( - - - {!editorChars ? ( - - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_TITLE' - )} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_SUBTITLE' - )} - - - ) : ( - - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_TITLE' - )} - - - {t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_SUBTITLE' - )} - - - )} - - - - - - - )} - - {/* Link */} - - - - {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_SUBTITLE')} - - } - type="text" - placeholder={t( - '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_PLACEHOLDER' - )} - focusInset - {...(useCase && - useCase.link && { - value: useCase.link, - })} - {...getFieldProps(`use_cases[${useCaseIndex}].link`)} - {...(useCaseErrors && useCaseErrors?.link && { validation: 'error' })} - onBlur={() => validateForm()} - /> - {useCaseErrors && useCaseErrors?.link ? ( - - {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_INVALID')} - - ) : ( - - - {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_MESSAGE')} - - )} - - - ); -}; +}) => ( + + + + + +); diff --git a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsEditor.tsx b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsEditor.tsx new file mode 100644 index 000000000..ffcc0aeaa --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsEditor.tsx @@ -0,0 +1,151 @@ +import { + Button, + Col, + Editor, + LG, + Paragraph, + Row, +} from '@appquality/unguess-design-system'; +import { useFormikContext } from 'formik'; +import { useCallback, useEffect, useMemo, useState } from 'react'; +import { useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { ReactComponent as EditIcon } from 'src/assets/icons/edit-icon.svg'; +import { ReactComponent as InfoIcon } from 'src/assets/icons/info-icon.svg'; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { Notes, NotesTitle } from 'src/pages/ExpressWizard/notesCard'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; + +const UseCaseEditor = ({ + useCase, + useCaseIndex, +}: { + useCase: UseCase; + useCaseIndex: number; +}) => { + const { t } = useTranslation(); + const { setFieldValue } = useFormikContext(); + const [isEditing, setIsEditing] = useState(false); + const [editorContent, setEditorContent] = useState( + useCase ? useCase.description : '' + ); + const [editorChars, setEditorChars] = useState( + useCase ? useCase.description.length : 0 + ); + + const handleSave = useCallback(() => { + if (editorChars) { + setFieldValue(`use_cases[${useCaseIndex}].description`, editorContent); + useCase.description = editorContent; + setIsEditing(false); + } + }, [editorChars, editorContent]); + + const memoEditor = useMemo( + () => ( + + + {editorContent} + + + + ), + [useCase, editorContent] + ); + + useEffect(() => { + setIsEditing(false); + }, [useCase]); + + return ( +
+ + {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_INSTRUCTIONS_FIELD_TITLE')} + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_INSTRUCTIONS_FIELD_DESCRIPTION' + )} + + {isEditing ? ( + { + setEditorChars(editor.storage.characterCount.characters()); + setEditorContent(editor.getHTML()); + }} + hasInlineMenu + onSave={handleSave} + > + {useCase ? useCase.description : ''} + + ) : ( + memoEditor + )} + {isEditing && ( + + + {!editorChars ? ( + + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_TITLE' + )} + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_DESCRIPTION_FIELD_ERROR_SUBTITLE' + )} + + + ) : ( + + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_TITLE' + )} + + + {t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_NOTES_FIELD_SUBTITLE' + )} + + + )} + + + + + + + )} +
+ ); +}; + +export { UseCaseEditor }; diff --git a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsLink.tsx b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsLink.tsx new file mode 100644 index 000000000..b9ca3b5be --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsLink.tsx @@ -0,0 +1,72 @@ +import { + Label, + MediaInput, + Paragraph, + Span, +} from '@appquality/unguess-design-system'; +import { useFormikContext } from 'formik'; +import { useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { ReactComponent as InfoIcon } from 'src/assets/icons/info-icon.svg'; +import { ReactComponent as LinkIcon } from 'src/assets/icons/link-stroke.svg'; +import { HelpTextMessage } from 'src/common/components/helpTextMessage'; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; + +const UseCaseLink = ({ + useCase, + useCaseIndex, +}: { + useCase: UseCase; + useCaseIndex: number; +}) => { + const { t } = useTranslation(); + const { getFieldProps, validateForm, errors } = + useFormikContext(); + + const useCaseErrors = + errors && errors.use_cases && Array.isArray(errors.use_cases) + ? (errors.use_cases[useCaseIndex as number] as UseCase) + : null; + + return ( +
+ + + {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_SUBTITLE')} + + } + type="text" + placeholder={t( + '__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_PLACEHOLDER' + )} + focusInset + {...(useCase && + useCase.link && { + value: useCase.link, + })} + {...getFieldProps(`use_cases[${useCaseIndex}].link`)} + {...(useCaseErrors && useCaseErrors?.link && { validation: 'error' })} + onBlur={() => validateForm()} + /> + {useCaseErrors && useCaseErrors?.link ? ( + + {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_INVALID')} + + ) : ( + + + {t('__EXPRESS_WIZARD_STEP_HOW_USE_CASE_MODAL_LINK_FIELD_MESSAGE')} + + )} +
+ ); +}; + +export { UseCaseLink }; diff --git a/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsTitle.tsx b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsTitle.tsx new file mode 100644 index 000000000..6a452b918 --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-3/ModalUseCase/useCaseDetailsTitle.tsx @@ -0,0 +1,59 @@ +import { InputToggle, Span } from '@appquality/unguess-design-system'; +import { useFormikContext } from 'formik'; +import { useTranslation } from 'react-i18next'; +import { appTheme } from 'src/app/theme'; +import { HelpTextMessage } from 'src/common/components/helpTextMessage'; +import { UseCase } from 'src/pages/ExpressWizard/fields/how'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; + +const UseCaseTitle = ({ + useCase, + useCaseIndex, +}: { + useCase: UseCase; + useCaseIndex: number; +}) => { + const { t } = useTranslation(); + const { getFieldProps, validateForm, errors } = + useFormikContext(); + + const useCaseErrors = + errors && errors.use_cases && Array.isArray(errors.use_cases) + ? (errors.use_cases[useCaseIndex as number] as UseCase) + : null; + + return ( + <> + + + {t('__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_FIELD_TITLE')} + * + + { + validateForm(); + }} + /> + + {useCaseErrors && useCaseErrors?.title && ( + + {t('__EXPRESS_3_WIZARD_STEP_HOW_USE_CASE_MODAL_TITLE_REQUIRED')} + + )} + + ); +}; + +export { UseCaseTitle }; diff --git a/src/pages/ExpressWizard/steps/express-3/confirm/language.tsx b/src/pages/ExpressWizard/steps/express-3/confirm/language.tsx new file mode 100644 index 000000000..3cd1bbc2c --- /dev/null +++ b/src/pages/ExpressWizard/steps/express-3/confirm/language.tsx @@ -0,0 +1,24 @@ +import { Span } from '@appquality/unguess-design-system'; +import { FormikProps } from 'formik'; +import { Trans } from 'react-i18next'; +import { getLanguage } from 'src/pages/ExpressWizard/getLanguage'; +import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; + +export const Language = (props: FormikProps) => { + const { values } = props; + const { campaign_language: language } = values; + const lang = getLanguage(language || 'en'); + + return ( + , + }} + values={{ + spoken_language: lang.label, + }} + defaults="Are speaking {{spoken_language}}." + /> + ); +}; diff --git a/src/pages/ExpressWizard/steps/express-3/confirm/whoConfirm.tsx b/src/pages/ExpressWizard/steps/express-3/confirm/whoConfirm.tsx index 3aedc9705..805919baf 100644 --- a/src/pages/ExpressWizard/steps/express-3/confirm/whoConfirm.tsx +++ b/src/pages/ExpressWizard/steps/express-3/confirm/whoConfirm.tsx @@ -8,6 +8,7 @@ import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; import { AgeRange } from './ageRange'; import { Gender } from './gender'; import { Digitalization } from './digitalization'; +import { Language } from './language'; const StyledLabel = styled(Label)` font-size: ${({ theme }) => theme.fontSizes.sm}; @@ -32,6 +33,8 @@ export const WhoConfirm = (props: FormikProps) => { {t('__EXPRESS_3_WIZARD_STEP_CONFIRM_WHO_TEXT')}:
+ +

diff --git a/src/pages/ExpressWizard/steps/express-3/how.tsx b/src/pages/ExpressWizard/steps/express-3/how.tsx index 371664598..9dc392388 100644 --- a/src/pages/ExpressWizard/steps/express-3/how.tsx +++ b/src/pages/ExpressWizard/steps/express-3/how.tsx @@ -144,7 +144,6 @@ export const HowStep = (props: FormikProps) => { return ( <> diff --git a/src/pages/ExpressWizard/steps/express-3/whereApp.tsx b/src/pages/ExpressWizard/steps/express-3/whereApp.tsx index ec7489959..75e4dad93 100644 --- a/src/pages/ExpressWizard/steps/express-3/whereApp.tsx +++ b/src/pages/ExpressWizard/steps/express-3/whereApp.tsx @@ -63,6 +63,9 @@ export const WhereAppStep = (props: FormikProps) => { }; useEffect(() => { + if (!values.withSmartphone && !values.withTablet) { + setFieldValue('withSmartphone', true); + } if (radioValue === 'ios') { setFieldValue('isIOS', true); setFieldValue('isAndroid', false); @@ -88,6 +91,7 @@ export const WhereAppStep = (props: FormikProps) => { Choose a device you want to test on + *
@@ -142,7 +146,10 @@ export const WhereAppStep = (props: FormikProps) => {
- {t('__EXPRESS_WIZARD_STEP_APP_WHERE_OS_LABEL')} + + Choose the operating system + + * ) => { @@ -36,6 +37,12 @@ export const WhereWebStep = (props: FormikProps) => { const { t } = useTranslation(); + useEffect(() => { + if (!values.withSmartphone && !values.withTablet && !values.withDesktop) { + setFieldValue('withSmartphone', true); + } + }, []); + const handleRadioClick = (value: string) => { setFieldValue('withSmartphone', value === 'smartphone'); setFieldValue('withTablet', value === 'tablet'); @@ -56,6 +63,7 @@ export const WhereWebStep = (props: FormikProps) => { Choose a device you want to test on + * diff --git a/src/pages/ExpressWizard/steps/express-3/who.tsx b/src/pages/ExpressWizard/steps/express-3/who.tsx index 1d9c681dc..8e087de7d 100644 --- a/src/pages/ExpressWizard/steps/express-3/who.tsx +++ b/src/pages/ExpressWizard/steps/express-3/who.tsx @@ -17,9 +17,7 @@ import { FormikProps } from 'formik'; import { t } from 'i18next'; import { useState } from 'react'; import { appTheme } from 'src/app/theme'; -import { ReactComponent as TranslationIcon } from 'src/assets/icons/translation-icon.svg'; import { ReactComponent as UsersIcon } from 'src/assets/icons/users-icon.svg'; -import { ReactComponent as WorldIcon } from 'src/assets/icons/world-icon.svg'; import { CardDivider } from 'src/pages/ExpressWizard/cardDivider'; import { WizardCol } from 'src/pages/ExpressWizard/wizardCol'; import { WizardModel } from 'src/pages/ExpressWizard/wizardModel'; @@ -51,26 +49,12 @@ const StyledTag = styled(Tag)` `; const UsersTags = () => ( - <> - - - - - {t('__EXPRESS_3_WIZARD_STEP_WHO_TAG_USERS')} - - - - - - {t('__EXPRESS_3_WIZARD_STEP_WHO_TAG_USERS_LOCATION')} - - - - - - {t('__EXPRESS_3_WIZARD_STEP_WHO_TAG_USERS_LANGUAGE')} - - + + + + + {t('__EXPRESS_3_WIZARD_STEP_WHO_TAG_USERS')} + ); interface RadioItem { @@ -88,6 +72,10 @@ export const WhoStep = ({ const [gender, setGender] = useState(values.gender); const [literacy, setLiteracy] = useState(values.digital_literacy); + const handleLanguageClick = (value: string) => { + props.setFieldValue('campaign_language', value); + }; + const handleAgeClick = (value: string) => { setAge(value); props.setFieldValue('age_range', value); @@ -103,7 +91,25 @@ export const WhoStep = ({ props.setFieldValue('digital_literacy', value); }; - const ageRanges = ['18-24', '25-34', '35-54', '55-70']; + const languages = [ + { + label: t('__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_IT'), + value: 'it', + }, + { + label: t('__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_EN'), + value: 'en', + }, + { + label: t('__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_ES'), + value: 'es', + }, + { + label: t('__EXPRESS_WIZARD_STEP_WHO_FIELD_LANGUAGE_OPTION_FR'), + value: 'fr', + }, + ]; + const ageRanges = ['18-24', '25-34', '35-54', '55+']; const genders: RadioItem[] = [ { label: t('__EXPRESS_3_WIZARD_STEP_WHO_GENDER_MALE'), value: 'male' }, { label: t('__EXPRESS_3_WIZARD_STEP_WHO_GENDER_FEMALE'), value: 'female' }, @@ -151,6 +157,35 @@ export const WhoStep = ({ + {/* Language Radio buttons */} + + + {languages.map((lang: RadioItem) => ( + + + + handleLanguageClick(e.target.value)} + > + + + + + + ))} + + {errors.campaign_language && ( + {errors.campaign_language} + )} + + {/* Age ranges Radio buttons */}