-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to latest openAPI spec from DPL-CMS
- Loading branch information
1 parent
e8ee476
commit 8c0bb1a
Showing
26 changed files
with
599 additions
and
11 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 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** | ||
* Generated by orval v6.8.1 🍺 | ||
* Do not edit manually. | ||
* DPL CMS - REST API | ||
* The REST API provide by the core REST module. | ||
* OpenAPI spec version: Versioning not supported | ||
*/ | ||
import type { DplOpeningHoursDELETE200Category } from "./dplOpeningHoursDELETE200Category"; | ||
|
||
export type DplOpeningHoursDELETE200 = { | ||
/** An serial unique id of the opening hours instance. */ | ||
id: number; | ||
category: DplOpeningHoursDELETE200Category; | ||
/** The date which the opening hours applies to. In ISO 8601 format. */ | ||
date: string; | ||
/** When the opening hours start. In format HH:MM */ | ||
start_time: string; | ||
/** When the opening hours end. In format HH:MM */ | ||
end_time: string; | ||
/** The id for the branch the instance belongs to */ | ||
branch_id: number; | ||
}; |
13 changes: 13 additions & 0 deletions
13
src/core/dpl-cms/model/dplOpeningHoursDELETE200Category.ts
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,13 @@ | ||
/** | ||
* Generated by orval v6.8.1 🍺 | ||
* Do not edit manually. | ||
* DPL CMS - REST API | ||
* The REST API provide by the core REST module. | ||
* OpenAPI spec version: Versioning not supported | ||
*/ | ||
|
||
export type DplOpeningHoursDELETE200Category = { | ||
title: string; | ||
/** A CSS compatible color code which can be used to represent the category */ | ||
color: string; | ||
}; |
Oops, something went wrong.