@dfns/sdk 0.7.9-rc.1 → 0.7.9-rc.2
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/dfnsApiClient.d.ts +1 -0
- package/dfnsApiClient.js +3 -0
- package/package.json +1 -1
package/dfnsApiClient.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export type DfnsApiClientOptions = DfnsBaseApiOptions & {
|
|
|
18
18
|
export declare class DfnsApiClient {
|
|
19
19
|
private apiOptions;
|
|
20
20
|
constructor(apiOptions: DfnsApiClientOptions);
|
|
21
|
+
get signer(): CredentialSigner<import("./signer").FirstFactorAssertion> | undefined;
|
|
21
22
|
get auth(): AuthClient;
|
|
22
23
|
get exchanges(): ExchangesClient;
|
|
23
24
|
get feeSponsors(): FeeSponsorsClient;
|
package/dfnsApiClient.js
CHANGED