2024-10-16 17:19:49 +03:00
|
|
|
export interface jobsSchema {
|
2024-04-29 18:55:15 +03:00
|
|
|
type: string;
|
|
|
|
properties: {
|
|
|
|
error: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
id: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
type: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
status: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
contract: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
proof: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
args: {
|
|
|
|
type: string;
|
|
|
|
items: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
txHash: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
confirmations: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
failedReason: {
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
required: string[];
|
2024-10-16 17:19:49 +03:00
|
|
|
}
|
2024-04-29 18:55:15 +03:00
|
|
|
export declare const jobsSchema: jobsSchema;
|
2024-10-16 17:19:49 +03:00
|
|
|
export declare const jobRequestSchema: jobsSchema;
|