@solibo/solibo-sdk 1.1.69 → 1.1.70
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/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -12168,13 +12168,13 @@ export declare namespace SettlementType {
|
|
|
12168
12168
|
}
|
|
12169
12169
|
export interface SoftwareTokenAssociationProps {
|
|
12170
12170
|
secret: string;
|
|
12171
|
-
session
|
|
12171
|
+
session?: string | null | undefined;
|
|
12172
12172
|
}
|
|
12173
12173
|
export declare class SoftwareTokenAssociation {
|
|
12174
12174
|
constructor(props: SoftwareTokenAssociationProps);
|
|
12175
|
-
constructor(secret: string, session
|
|
12175
|
+
constructor(secret: string, session?: string | null | undefined);
|
|
12176
12176
|
get secret(): string;
|
|
12177
|
-
get session(): string;
|
|
12177
|
+
get session(): string | null | undefined;
|
|
12178
12178
|
}
|
|
12179
12179
|
export declare namespace SoftwareTokenAssociation {
|
|
12180
12180
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|