@notabene/javascript-sdk 2.15.0-next.1 → 2.15.0-next.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/dist/cjs/notabene.d.ts +1 -1
- package/dist/cjs/package.json +1 -1
- package/dist/esm/notabene.d.ts +1 -1
- package/dist/esm/package.json +1 -1
- package/dist/notabene.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.ts +3 -3
package/dist/cjs/notabene.d.ts
CHANGED
|
@@ -1731,7 +1731,7 @@ export declare interface ScreenshotProof extends OwnershipProof {
|
|
|
1731
1731
|
*
|
|
1732
1732
|
* @public
|
|
1733
1733
|
*/
|
|
1734
|
-
export declare type SectionOption =
|
|
1734
|
+
export declare type SectionOption = 'self-declaration' | 'screenshot' | 'microtransfer' | 'signature' | 'manual-signing' | 'add-vasp';
|
|
1735
1735
|
|
|
1736
1736
|
/**
|
|
1737
1737
|
* Interface for signature-based ownership proofs that use cryptographic message signing
|
package/dist/cjs/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"author": "Notabene <developers@notabene.id>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"packageManager": "yarn@4.5.1",
|
|
13
|
-
"version": "2.15.0-next.
|
|
13
|
+
"version": "2.15.0-next.2",
|
|
14
14
|
"source": "src/notabene.ts",
|
|
15
15
|
"main": "dist/cjs/notabene.cjs",
|
|
16
16
|
"module": "dist/esm/notabene.js",
|
package/dist/esm/notabene.d.ts
CHANGED
|
@@ -1731,7 +1731,7 @@ export declare interface ScreenshotProof extends OwnershipProof {
|
|
|
1731
1731
|
*
|
|
1732
1732
|
* @public
|
|
1733
1733
|
*/
|
|
1734
|
-
export declare type SectionOption =
|
|
1734
|
+
export declare type SectionOption = 'self-declaration' | 'screenshot' | 'microtransfer' | 'signature' | 'manual-signing' | 'add-vasp';
|
|
1735
1735
|
|
|
1736
1736
|
/**
|
|
1737
1737
|
* Interface for signature-based ownership proofs that use cryptographic message signing
|
package/dist/esm/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"author": "Notabene <developers@notabene.id>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"packageManager": "yarn@4.5.1",
|
|
13
|
-
"version": "2.15.0-next.
|
|
13
|
+
"version": "2.15.0-next.2",
|
|
14
14
|
"source": "src/notabene.ts",
|
|
15
15
|
"main": "dist/cjs/notabene.cjs",
|
|
16
16
|
"module": "dist/esm/notabene.js",
|
package/dist/notabene.d.ts
CHANGED
|
@@ -1731,7 +1731,7 @@ export declare interface ScreenshotProof extends OwnershipProof {
|
|
|
1731
1731
|
*
|
|
1732
1732
|
* @public
|
|
1733
1733
|
*/
|
|
1734
|
-
export declare type SectionOption =
|
|
1734
|
+
export declare type SectionOption = 'self-declaration' | 'screenshot' | 'microtransfer' | 'signature' | 'manual-signing' | 'add-vasp';
|
|
1735
1735
|
|
|
1736
1736
|
/**
|
|
1737
1737
|
* Interface for signature-based ownership proofs that use cryptographic message signing
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"author": "Notabene <developers@notabene.id>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"packageManager": "yarn@4.5.1",
|
|
13
|
-
"version": "2.15.0-next.
|
|
13
|
+
"version": "2.15.0-next.2",
|
|
14
14
|
"source": "src/notabene.ts",
|
|
15
15
|
"main": "dist/cjs/notabene.cjs",
|
|
16
16
|
"module": "dist/esm/notabene.js",
|
package/src/types.ts
CHANGED
|
@@ -878,9 +878,9 @@ export interface ThresholdOptions {
|
|
|
878
878
|
* @public
|
|
879
879
|
*/
|
|
880
880
|
export type SectionOption =
|
|
881
|
-
| ProofTypes.SelfDeclaration
|
|
882
|
-
| ProofTypes.Screenshot
|
|
883
|
-
| ProofTypes.MicroTransfer
|
|
881
|
+
| 'self-declaration' // ProofTypes.SelfDeclaration
|
|
882
|
+
| 'screenshot' // ProofTypes.Screenshot
|
|
883
|
+
| 'microtransfer' // ProofTypes.MicroTransfer
|
|
884
884
|
| 'signature'
|
|
885
885
|
| 'manual-signing'
|
|
886
886
|
| 'add-vasp';
|