This repository has been archived by the owner on Dec 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
regenerate types without localization
- Loading branch information
Showing
12 changed files
with
21 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type { Entry, EntryFields } from "contentful"; | ||
|
||
export interface TypeBreakFields { | ||
isDouble: EntryFields.Boolean; | ||
room?: "IB025" | "IB028"; | ||
startDate: EntryFields.Date; | ||
endDate: EntryFields.Date; | ||
content: EntryFields.Text; | ||
} | ||
|
||
export type TypeBreak = Entry<TypeBreakFields>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export type { LocalizedEntry, LocalizedFields } from "./Localized"; | ||
export type { LocalizedTypeGalleryImages, LocalizedTypeGalleryImagesFields, TypeGalleryImages, TypeGalleryImagesFields } from "./TypeGalleryImages"; | ||
export type { LocalizedTypeOrganizer, LocalizedTypeOrganizerFields, TypeOrganizer, TypeOrganizerFields } from "./TypeOrganizer"; | ||
export type { LocalizedTypeParagraph, LocalizedTypeParagraphFields, TypeParagraph, TypeParagraphFields } from "./TypeParagraph"; | ||
export type { LocalizedTypePresentation, LocalizedTypePresentationFields, TypePresentation, TypePresentationFields } from "./TypePresentation"; | ||
export type { LocalizedTypeSponsorLogo, LocalizedTypeSponsorLogoFields, TypeSponsorLogo, TypeSponsorLogoFields } from "./TypeSponsorLogo"; | ||
export type { LocalizedTypeWorkshop, LocalizedTypeWorkshopFields, TypeWorkshop, TypeWorkshopFields } from "./TypeWorkshop"; | ||
export type { LocalizedTypeWorkshopPerson, LocalizedTypeWorkshopPersonFields, TypeWorkshopPerson, TypeWorkshopPersonFields } from "./TypeWorkshopPerson"; | ||
export type { LocalizedTypeWorkshopSlot, LocalizedTypeWorkshopSlotFields, TypeWorkshopSlot, TypeWorkshopSlotFields } from "./TypeWorkshopSlot"; | ||
export type { TypeBreak, TypeBreakFields } from "./TypeBreak"; | ||
export type { TypeGalleryImages, TypeGalleryImagesFields } from "./TypeGalleryImages"; | ||
export type { TypeOrganizer, TypeOrganizerFields } from "./TypeOrganizer"; | ||
export type { TypeParagraph, TypeParagraphFields } from "./TypeParagraph"; | ||
export type { TypePresentation, TypePresentationFields } from "./TypePresentation"; | ||
export type { TypeSponsorLogo, TypeSponsorLogoFields } from "./TypeSponsorLogo"; | ||
export type { TypeWorkshop, TypeWorkshopFields } from "./TypeWorkshop"; | ||
export type { TypeWorkshopPerson, TypeWorkshopPersonFields } from "./TypeWorkshopPerson"; | ||
export type { TypeWorkshopSlot, TypeWorkshopSlotFields } from "./TypeWorkshopSlot"; |