Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

31 linhas
655 B

  1. export type CardType = 'INFO_PAGE' | 'EXTERNAL_LINK' | 'IMAGE_GALLERY' | 'SERVICE_REQUEST';
  2. export type MediaItem = {
  3. url: string;
  4. autoplay?: boolean;
  5. };
  6. export interface Card {
  7. id: string;
  8. portalId: string;
  9. title: string;
  10. imageUrl: string;
  11. extraMedia?: MediaItem[];
  12. shortDescription: string;
  13. fullContent: string;
  14. cardType: CardType;
  15. actionUrl?: string;
  16. displayOrder: number;
  17. }
  18. export interface Portal {
  19. id: string;
  20. tenantId: string;
  21. title: string;
  22. welcomeText: string;
  23. heroImageUrl: string;
  24. logoUrl: string;
  25. themeColor: string;
  26. fadeHeroImage?: boolean;
  27. maxGridColumns?: number;
  28. }