-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore!: bump primer backend, adapt to new selection info api
When selecting a non-empty hole, the API now emits information about both the expected and actual types. We adapt to this change by ignoring the actual type and just displaying the expected one (this matches the behaviour with the old backend version). In a subsequent commit we will show both. BREAKING CHANGE: the API is different from the previous backend pin. Thus this version of the frontend cannot talk to the previous version of the backend and vice versa. Signed-off-by: Ben Price <[email protected]>
- Loading branch information
Showing
12 changed files
with
159 additions
and
65 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,11 @@ | ||
/** | ||
* Generated by orval v6.19.1 🍺 | ||
* Do not edit manually. | ||
* Primer backend API | ||
* A backend service implementing a pedagogic functional programming language. | ||
* OpenAPI spec version: 0.7 | ||
*/ | ||
import type { OkOrMismatchOneOf } from './okOrMismatchOneOf'; | ||
import type { OkOrMismatchOneOfThree } from './okOrMismatchOneOfThree'; | ||
|
||
export type OkOrMismatch = OkOrMismatchOneOf | OkOrMismatchOneOfThree; |
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,14 @@ | ||
/** | ||
* Generated by orval v6.19.1 🍺 | ||
* Do not edit manually. | ||
* Primer backend API | ||
* A backend service implementing a pedagogic functional programming language. | ||
* OpenAPI spec version: 0.7 | ||
*/ | ||
import type { Tree } from './tree'; | ||
import type { OkOrMismatchOneOfTag } from './okOrMismatchOneOfTag'; | ||
|
||
export type OkOrMismatchOneOf = { | ||
contents: Tree; | ||
tag: OkOrMismatchOneOfTag; | ||
}; |
Oops, something went wrong.