Skip to content

Commit

Permalink
Automated Update for Version v1.13.1 (#177)
Browse files Browse the repository at this point in the history
This PR contains automated updates to the internal API client and Sindri
manifest schema.

- **Raw API Version**: v1.13.1-rc1
- **Production API Version**: v1.13.1
- **Branch Name**: gha-automatic-update-6ec019d0cd84fb01

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]>
  • Loading branch information
sindri-bot[bot] and actions-user authored Oct 29, 2024
1 parent 02be93c commit ead75a9
Show file tree
Hide file tree
Showing 5 changed files with 29,688 additions and 12,895 deletions.
2 changes: 1 addition & 1 deletion src/lib/api/ApiClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class ApiClient {
) {
this.request = new HttpRequest({
BASE: config?.BASE ?? "https://sindri.app",
VERSION: config?.VERSION ?? "1.13.0",
VERSION: config?.VERSION ?? "1.13.1",
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
CREDENTIALS: config?.CREDENTIALS ?? "include",
TOKEN: config?.TOKEN,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/api/core/OpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export type OpenAPIConfig = {

export const OpenAPI: OpenAPIConfig = {
BASE: "https://sindri.app",
VERSION: "1.13.0",
VERSION: "1.13.1",
WITH_CREDENTIALS: false,
CREDENTIALS: "include",
TOKEN: undefined,
Expand Down
4 changes: 4 additions & 0 deletions src/lib/api/models/ProofInfoResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ export type ProofInfoResponse = {
* The status of the proof job.
*/
status: JobStatus;
/**
* The status of proof verification.
*/
verified: boolean | null;
/**
* The name of the team that owns this proof.
*/
Expand Down
Loading

0 comments on commit ead75a9

Please sign in to comment.