@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.
@@ -1731,7 +1731,7 @@ export declare interface ScreenshotProof extends OwnershipProof {
1731
1731
  *
1732
1732
  * @public
1733
1733
  */
1734
- export declare type SectionOption = ProofTypes.SelfDeclaration | ProofTypes.Screenshot | ProofTypes.MicroTransfer | 'signature' | 'manual-signing' | 'add-vasp';
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
@@ -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.1",
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",
@@ -1731,7 +1731,7 @@ export declare interface ScreenshotProof extends OwnershipProof {
1731
1731
  *
1732
1732
  * @public
1733
1733
  */
1734
- export declare type SectionOption = ProofTypes.SelfDeclaration | ProofTypes.Screenshot | ProofTypes.MicroTransfer | 'signature' | 'manual-signing' | 'add-vasp';
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
@@ -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.1",
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",
@@ -1731,7 +1731,7 @@ export declare interface ScreenshotProof extends OwnershipProof {
1731
1731
  *
1732
1732
  * @public
1733
1733
  */
1734
- export declare type SectionOption = ProofTypes.SelfDeclaration | ProofTypes.Screenshot | ProofTypes.MicroTransfer | 'signature' | 'manual-signing' | 'add-vasp';
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.1",
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';