@bsv/sdk 1.2.1 → 1.2.3

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/docs/totp.md CHANGED
@@ -17,6 +17,8 @@ export interface TOTPOptions {
17
17
  }
18
18
  ```
19
19
 
20
+ See also: [TOTPAlgorithm](#type-totpalgorithm)
21
+
20
22
  Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
21
23
 
22
24
  ---
@@ -31,6 +33,8 @@ export class TOTP {
31
33
  }
32
34
  ```
33
35
 
36
+ See also: [TOTPOptions](#interface-totpoptions), [TOTPValidateOptions](#type-totpvalidateoptions)
37
+
34
38
  <details>
35
39
 
36
40
  <summary>Class TOTP Details</summary>
@@ -42,6 +46,7 @@ Generates a Time-based One-Time Password (TOTP).
42
46
  ```ts
43
47
  static generate(secret: number[], options?: TOTPOptions): string
44
48
  ```
49
+ See also: [TOTPOptions](#interface-totpoptions)
45
50
 
46
51
  Returns
47
52
 
@@ -61,6 +66,7 @@ Validates a Time-based One-Time Password (TOTP).
61
66
  ```ts
62
67
  static validate(secret: number[], passcode: string, options?: TOTPValidateOptions): boolean
63
68
  ```
69
+ See also: [TOTPValidateOptions](#type-totpvalidateoptions)
64
70
 
65
71
  Returns
66
72
 
@@ -112,6 +118,8 @@ export type TOTPValidateOptions = TOTPOptions & {
112
118
  }
113
119
  ```
114
120
 
121
+ See also: [TOTPOptions](#interface-totpoptions)
122
+
115
123
  Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
116
124
 
117
125
  ---