@crewdle/web-sdk-types 1.0.6 → 1.0.8
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.
package/dist/core/sdk/SDK.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface ISDK {
|
|
|
22
22
|
* @param reportCapacity A callback to report the agent capacity.
|
|
23
23
|
* @returns A promise that resolves with the authenticated agent.
|
|
24
24
|
*/
|
|
25
|
-
authenticateAgent(credentials: IAgentCredentials, reportCapacity?: () => IAgentCapacity): Promise<IAuthAgent>;
|
|
25
|
+
authenticateAgent(credentials: IAgentCredentials, reportCapacity?: () => Promise<IAgentCapacity>): Promise<IAuthAgent>;
|
|
26
26
|
/**
|
|
27
27
|
* Join a cluster.
|
|
28
28
|
* @param clusterId The ID of the cluster to join.
|