@oceanprotocol/lib 9.0.0-next.4 → 9.0.0-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -76,6 +76,7 @@ export interface ServiceJob {
|
|
|
76
76
|
status: ServiceStatusNumber;
|
|
77
77
|
statusText: string;
|
|
78
78
|
dateCreated: string;
|
|
79
|
+
updatedAt?: number;
|
|
79
80
|
expiresAt: number;
|
|
80
81
|
duration: number;
|
|
81
82
|
exposedPorts: number[];
|
|
@@ -89,6 +90,7 @@ export interface ServiceListFilters {
|
|
|
89
90
|
status?: ServiceStatusNumber;
|
|
90
91
|
includeAllStatuses?: boolean;
|
|
91
92
|
fromTimestamp?: string;
|
|
93
|
+
updatedSince?: string;
|
|
92
94
|
}
|
|
93
95
|
export interface ServicePayment {
|
|
94
96
|
chainId: number;
|
|
@@ -36,6 +36,11 @@ export declare class BaseProvider {
|
|
|
36
36
|
* @param {ComputeJob} job The compute job just started.
|
|
37
37
|
*/
|
|
38
38
|
private notifyIncentiveBackendJobStarted;
|
|
39
|
+
/**
|
|
40
|
+
* @param {OceanNode} nodeUri The provider URI the service runs on.
|
|
41
|
+
* @param {ServiceJob} service The service job just started.
|
|
42
|
+
*/
|
|
43
|
+
private notifyIncentiveBackendServiceStarted;
|
|
39
44
|
computeStreamableLogs(nodeUri: OceanNode, signerOrAuthToken: SignerOrAuthTokenOrSignature, jobId: string, signal?: AbortSignal): Promise<any>;
|
|
40
45
|
computeStop(jobId: string, nodeUri: OceanNode, signerOrAuthToken: SignerOrAuthTokenOrSignature, agreementId?: string, signal?: AbortSignal): Promise<ComputeJob | ComputeJob[]>;
|
|
41
46
|
computeStatus(nodeUri: OceanNode, signerOrAuthToken: SignerOrAuthTokenOrSignature, jobId?: string, agreementId?: string, signal?: AbortSignal): Promise<ComputeJob | ComputeJob[]>;
|
package/package.json
CHANGED