@gearbox-protocol/sdk 13.6.0-kyc.4 → 13.6.0-kyc.6
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.
|
@@ -16,9 +16,11 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
16
16
|
var kyc_exports = {};
|
|
17
17
|
module.exports = __toCommonJS(kyc_exports);
|
|
18
18
|
__reExport(kyc_exports, require("./KYCRegistry.js"), module.exports);
|
|
19
|
+
__reExport(kyc_exports, require("./securitize/index.js"), module.exports);
|
|
19
20
|
__reExport(kyc_exports, require("./types.js"), module.exports);
|
|
20
21
|
// Annotate the CommonJS export names for ESM import in node:
|
|
21
22
|
0 && (module.exports = {
|
|
22
23
|
...require("./KYCRegistry.js"),
|
|
24
|
+
...require("./securitize/index.js"),
|
|
23
25
|
...require("./types.js")
|
|
24
26
|
});
|
|
@@ -104,7 +104,7 @@ export declare abstract class AbstractCreditAccountService extends SDKConstruct
|
|
|
104
104
|
/**
|
|
105
105
|
* {@inheritDoc ICreditAccountsService.getOpenAccountRequirements}
|
|
106
106
|
*/
|
|
107
|
-
getOpenAccountRequirements(borrower: Address, props: OpenCAProps): Promise<OpenAccountRequirements | undefined>;
|
|
107
|
+
getOpenAccountRequirements(borrower: Address, props: Pick<OpenCAProps, "creditManager">): Promise<OpenAccountRequirements | undefined>;
|
|
108
108
|
/**
|
|
109
109
|
* {@inheritDoc ICreditAccountsService.openCA}
|
|
110
110
|
**/
|
|
@@ -737,7 +737,7 @@ export interface ICreditAccountsService extends Construct {
|
|
|
737
737
|
* @param props - {@link OpenCAProps}
|
|
738
738
|
* @returns Open account requirements or undefined if the user can open a credit account without any further actions
|
|
739
739
|
*/
|
|
740
|
-
getOpenAccountRequirements(borrower: Address, props: OpenCAProps): Promise<OpenAccountRequirements | undefined>;
|
|
740
|
+
getOpenAccountRequirements(borrower: Address, props: Pick<OpenCAProps, "creditManager">): Promise<OpenAccountRequirements | undefined>;
|
|
741
741
|
/**
|
|
742
742
|
* Executes swap specified by given calls, update quotas of affected tokens
|
|
743
743
|
* - Open credit account is executed in the following order: price update -> increase debt -> add collateral ->
|