-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated Update for Version v1.15.0 (#189)
This PR contains automated updates to the internal API client and Sindri manifest schema. - **Raw API Version**: v1.15.0-rc2 - **Production API Version**: v1.15.0 - **Branch Name**: gha-automatic-update-206c260a7d3a79ce Please review the changes, test new functionality manually, merge this PR, and create a new release. Manual changes might be required if CI fails. If a new framework has been added, you will need to add a new response type to the `CircuitInfoResponse` interface in `src/lib/client.ts`. You may also need to re-record the test fixtures with `npm run test:record` (export if not running against production and authenticate with first). --------- Co-authored-by: GitHub Action <[email protected]> Co-authored-by: Evan Sangaline <[email protected]>
- Loading branch information
1 parent
842a17c
commit 2f2225f
Showing
27 changed files
with
367 additions
and
16 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
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 |
---|---|---|
|
@@ -13,4 +13,5 @@ export type CircuitType = | |
| "halo2" | ||
| "jolt" | ||
| "noir" | ||
| "plonky2"; | ||
| "plonky2" | ||
| "sp1"; |
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 |
---|---|---|
|
@@ -8,5 +8,6 @@ | |
*/ | ||
export type ForgeInvalidUploadResponse = { | ||
error: string; | ||
exception_id?: string; | ||
message?: string; | ||
}; |
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 |
---|---|---|
|
@@ -8,5 +8,6 @@ | |
*/ | ||
export type ForgeValueErrorResponse = { | ||
error: string; | ||
exception_id?: string; | ||
message?: string; | ||
}; |
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 |
---|---|---|
|
@@ -9,5 +9,6 @@ | |
*/ | ||
export type ProofCannotBeCreatedResponse = { | ||
error: string; | ||
exception_id?: string; | ||
message?: string; | ||
}; |
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 using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
/** | ||
* Client input for filtering proof histograms. | ||
*/ | ||
export type ProofHistogramInput = { | ||
/** | ||
* The bin size in seconds. | ||
*/ | ||
bin_size?: number; | ||
/** | ||
* Limit to proofs created on/after this timezone-aware, ISO8601 formatted time. | ||
*/ | ||
start_time: string; | ||
/** | ||
* Limit to proofs created on/before this timezone-aware, ISO8601 formatted time. Defaults to now. | ||
*/ | ||
end_time?: string | null; | ||
}; |
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,38 @@ | ||
/* generated using openapi-typescript-codegen -- do no edit */ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
/** | ||
* Response for producing proof histograms. | ||
*/ | ||
export type ProofHistogramResponse = { | ||
/** | ||
* The bin size in seconds. | ||
*/ | ||
bin_size: number; | ||
/** | ||
* A list of dictionaries in the format:</br> | ||
* ``` | ||
* { | ||
* 'bin': '2021-01-01T00:00:00Z', | ||
* 'ready': 2, | ||
* 'failed': 1, | ||
* 'in_progress': 3, | ||
* 'queued': 4, | ||
* } | ||
* ```</br> | ||
* where 'bin' is an ISO8601 timestamp indicating the start | ||
* of the bin, and proof status keys (e.g. 'ready') indicating | ||
* the number of proofs with that status in the bin. | ||
*/ | ||
data: Array<Record<string, any>>; | ||
/** | ||
* The end of the histogram in timezone-aware ISO8601 format. | ||
*/ | ||
end_time: string; | ||
/** | ||
* The start of the histogram in timezone-aware ISO8601 format. | ||
*/ | ||
start_time: string; | ||
}; |
Oops, something went wrong.