Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated Update for Version v1.12.8 #152

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions sindri-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -741,12 +741,6 @@
"enum": ["0.2.0", "0.2.1", "0.2.2"],
"title": "Plonky2VersionOptions",
"type": "string"
},
"ZkevmVersionOptions": {
"description": "The supported zkSync Era zkEVM version tags.",
"enum": ["latest", "1.4.2", "1.5.0", "prover-v16.3.0"],
"title": "ZkevmVersionOptions",
"type": "string"
}
},
"anyOf": [
Expand Down
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.12.6",
VERSION: config?.VERSION ?? "1.12.8",
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.12.6",
VERSION: "1.12.8",
WITH_CREDENTIALS: false,
CREDENTIALS: "include",
TOKEN: undefined,
Expand Down
1 change: 1 addition & 0 deletions src/lib/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export type { JobStatus } from "./models/JobStatus";
export type { JWTTokenErrorResponse } from "./models/JWTTokenErrorResponse";
export type { NoirCircuitInfoResponse } from "./models/NoirCircuitInfoResponse";
export type { ObtainApikeyInput } from "./models/ObtainApikeyInput";
export type { PagedCircuitInfoResponse } from "./models/PagedCircuitInfoResponse";
export type { PagedProjectInfoResponse } from "./models/PagedProjectInfoResponse";
export type { PagedProofInfoResponse } from "./models/PagedProofInfoResponse";
export type { PasswordChangeInput } from "./models/PasswordChangeInput";
Expand Down
30 changes: 13 additions & 17 deletions src/lib/api/models/BoojumCircuitInfoResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,61 +68,57 @@ export type BoojumCircuitInfoResponse = {
/**
* Total compute time in ISO8601 format.
*/
compute_time?: string | null;
compute_time: string | null;
/**
* Total compute time in seconds.
*/
compute_time_sec?: number | null;
compute_time_sec: number | null;
/**
* Detailed compute times for the circuit compilation.
*/
compute_times?: null;
compute_times: null;
/**
* Total size of stored file(s) in bytes.
*/
file_size?: number | null;
file_size: number | null;
/**
* Queue time in ISO8601 format.
*/
queue_time?: string | null;
queue_time: string | null;
/**
* Queue time in seconds.
*/
queue_time_sec?: number | null;
queue_time_sec: number | null;
/**
* The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload.
*/
uploaded_file_name: string;
/**
* Boolean indicating whether this circuit has a smart contract verifier available.
*/
has_smart_contract_verifier?: boolean;
has_smart_contract_verifier: boolean;
/**
* Boolean indicating whether this circuit has a verification key available.
*/
has_verification_key?: boolean;
has_verification_key: boolean;
/**
* The verification key of this circuit.
*/
verification_key?: Record<string, any> | null;
verification_key: Record<string, any> | null;
/**
* A list of runtime warnings with UTC timestamps.
*/
warnings?: Array<string> | null;
warnings: Array<string> | null;
/**
* The error message for a failed circuit upload.
*/
error?: string | null;
/**
* The elliptic curve over which the proving protocol takes place.
*/
curve?: string | null;
error: string | null;
/**
* The field over which proofs take place.
*/
field?: string | null;
field: string | null;
/**
* The zkSync Era zkEVM version tag.
*/
zkevm_version?: string | null;
zkevm_version: string | null;
};
30 changes: 15 additions & 15 deletions src/lib/api/models/CircomCircuitInfoResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,69 +68,69 @@ export type CircomCircuitInfoResponse = {
/**
* Total compute time in ISO8601 format.
*/
compute_time?: string | null;
compute_time: string | null;
/**
* Total compute time in seconds.
*/
compute_time_sec?: number | null;
compute_time_sec: number | null;
/**
* Detailed compute times for the circuit compilation.
*/
compute_times?: null;
compute_times: null;
/**
* Total size of stored file(s) in bytes.
*/
file_size?: number | null;
file_size: number | null;
/**
* Queue time in ISO8601 format.
*/
queue_time?: string | null;
queue_time: string | null;
/**
* Queue time in seconds.
*/
queue_time_sec?: number | null;
queue_time_sec: number | null;
/**
* The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload.
*/
uploaded_file_name: string;
/**
* Boolean indicating whether this circuit has a smart contract verifier available.
*/
has_smart_contract_verifier?: boolean;
has_smart_contract_verifier: boolean;
/**
* Boolean indicating whether this circuit has a verification key available.
*/
has_verification_key?: boolean;
has_verification_key: boolean;
/**
* The verification key of this circuit.
*/
verification_key?: Record<string, any> | null;
verification_key: Record<string, any> | null;
/**
* A list of runtime warnings with UTC timestamps.
*/
warnings?: Array<string> | null;
warnings: Array<string> | null;
/**
* The error message for a failed circuit upload.
*/
error?: string | null;
error: string | null;
/**
* The elliptic curve over which the proving protocol takes place.
*/
curve: string;
/**
* The number of constraints in the Rank-1 Constraint System (R1CS) of the circuit.
*/
num_constraints?: number | null;
num_constraints: number | null;
/**
* The number of public outputs from the circuit.
*/
num_outputs?: number | null;
num_outputs: number | null;
/**
* The number of private inputs for the circuit.
*/
num_private_inputs?: number | null;
num_private_inputs: number | null;
/**
* The number of public inputs for the circuit.
*/
num_public_inputs?: number | null;
num_public_inputs: number | null;
};
22 changes: 11 additions & 11 deletions src/lib/api/models/GnarkCircuitInfoResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,51 +68,51 @@ export type GnarkCircuitInfoResponse = {
/**
* Total compute time in ISO8601 format.
*/
compute_time?: string | null;
compute_time: string | null;
/**
* Total compute time in seconds.
*/
compute_time_sec?: number | null;
compute_time_sec: number | null;
/**
* Detailed compute times for the circuit compilation.
*/
compute_times?: null;
compute_times: null;
/**
* Total size of stored file(s) in bytes.
*/
file_size?: number | null;
file_size: number | null;
/**
* Queue time in ISO8601 format.
*/
queue_time?: string | null;
queue_time: string | null;
/**
* Queue time in seconds.
*/
queue_time_sec?: number | null;
queue_time_sec: number | null;
/**
* The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload.
*/
uploaded_file_name: string;
/**
* Boolean indicating whether this circuit has a smart contract verifier available.
*/
has_smart_contract_verifier?: boolean;
has_smart_contract_verifier: boolean;
/**
* Boolean indicating whether this circuit has a verification key available.
*/
has_verification_key?: boolean;
has_verification_key: boolean;
/**
* The verification key of this circuit.
*/
verification_key?: Record<string, any> | null;
verification_key: Record<string, any> | null;
/**
* A list of runtime warnings with UTC timestamps.
*/
warnings?: Array<string> | null;
warnings: Array<string> | null;
/**
* The error message for a failed circuit upload.
*/
error?: string | null;
error: string | null;
/**
* The elliptic curve over which the proving protocol takes place.
*/
Expand Down
22 changes: 11 additions & 11 deletions src/lib/api/models/Halo2CircuitInfoResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,51 +68,51 @@ export type Halo2CircuitInfoResponse = {
/**
* Total compute time in ISO8601 format.
*/
compute_time?: string | null;
compute_time: string | null;
/**
* Total compute time in seconds.
*/
compute_time_sec?: number | null;
compute_time_sec: number | null;
/**
* Detailed compute times for the circuit compilation.
*/
compute_times?: null;
compute_times: null;
/**
* Total size of stored file(s) in bytes.
*/
file_size?: number | null;
file_size: number | null;
/**
* Queue time in ISO8601 format.
*/
queue_time?: string | null;
queue_time: string | null;
/**
* Queue time in seconds.
*/
queue_time_sec?: number | null;
queue_time_sec: number | null;
/**
* The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload.
*/
uploaded_file_name: string;
/**
* Boolean indicating whether this circuit has a smart contract verifier available.
*/
has_smart_contract_verifier?: boolean;
has_smart_contract_verifier: boolean;
/**
* Boolean indicating whether this circuit has a verification key available.
*/
has_verification_key?: boolean;
has_verification_key: boolean;
/**
* The verification key of this circuit.
*/
verification_key?: Record<string, any> | null;
verification_key: Record<string, any> | null;
/**
* A list of runtime warnings with UTC timestamps.
*/
warnings?: Array<string> | null;
warnings: Array<string> | null;
/**
* The error message for a failed circuit upload.
*/
error?: string | null;
error: string | null;
/**
* The path to the circuit struct definition. This is specified during creation in the included sindri.json file.
*/
Expand Down
26 changes: 13 additions & 13 deletions src/lib/api/models/NoirCircuitInfoResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,59 +68,59 @@ export type NoirCircuitInfoResponse = {
/**
* Total compute time in ISO8601 format.
*/
compute_time?: string | null;
compute_time: string | null;
/**
* Total compute time in seconds.
*/
compute_time_sec?: number | null;
compute_time_sec: number | null;
/**
* Detailed compute times for the circuit compilation.
*/
compute_times?: null;
compute_times: null;
/**
* Total size of stored file(s) in bytes.
*/
file_size?: number | null;
file_size: number | null;
/**
* Queue time in ISO8601 format.
*/
queue_time?: string | null;
queue_time: string | null;
/**
* Queue time in seconds.
*/
queue_time_sec?: number | null;
queue_time_sec: number | null;
/**
* The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload.
*/
uploaded_file_name: string;
/**
* Boolean indicating whether this circuit has a smart contract verifier available.
*/
has_smart_contract_verifier?: boolean;
has_smart_contract_verifier: boolean;
/**
* Boolean indicating whether this circuit has a verification key available.
*/
has_verification_key?: boolean;
has_verification_key: boolean;
/**
* The verification key of this circuit.
*/
verification_key?: Record<string, any> | null;
verification_key: Record<string, any> | null;
/**
* A list of runtime warnings with UTC timestamps.
*/
warnings?: Array<string> | null;
warnings: Array<string> | null;
/**
* The error message for a failed circuit upload.
*/
error?: string | null;
error: string | null;
/**
* The number of opcodes in the intermediate representation.
*/
acir_opcodes?: number | null;
acir_opcodes: number | null;
/**
* The number of constraints with an instantiated proving backend in the circuit.
*/
circuit_size?: number | null;
circuit_size: number | null;
/**
* The elliptic curve over which the proving protocol takes place.
*/
Expand Down
Loading
Loading