@unicitylabs/sphere-sdk 0.6.11 → 0.6.12
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/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +8 -8
- package/dist/core/index.d.ts +8 -8
- package/dist/core/index.js.map +1 -1
- package/dist/impl/nodejs/index.d.cts +2 -2
- package/dist/impl/nodejs/index.d.ts +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/core/index.d.cts
CHANGED
|
@@ -3734,8 +3734,8 @@ interface SphereCreateOptions {
|
|
|
3734
3734
|
transport: TransportProvider;
|
|
3735
3735
|
/** Oracle provider instance */
|
|
3736
3736
|
oracle: OracleProvider;
|
|
3737
|
-
/** L1 (ALPHA blockchain) configuration */
|
|
3738
|
-
l1?: L1Config;
|
|
3737
|
+
/** L1 (ALPHA blockchain) configuration. Pass null to disable L1 entirely. */
|
|
3738
|
+
l1?: L1Config | null;
|
|
3739
3739
|
/** Optional price provider for fiat conversion */
|
|
3740
3740
|
price?: PriceProvider;
|
|
3741
3741
|
/**
|
|
@@ -3772,8 +3772,8 @@ interface SphereLoadOptions {
|
|
|
3772
3772
|
transport: TransportProvider;
|
|
3773
3773
|
/** Oracle provider instance */
|
|
3774
3774
|
oracle: OracleProvider;
|
|
3775
|
-
/** L1 (ALPHA blockchain) configuration */
|
|
3776
|
-
l1?: L1Config;
|
|
3775
|
+
/** L1 (ALPHA blockchain) configuration. Pass null to disable L1 entirely. */
|
|
3776
|
+
l1?: L1Config | null;
|
|
3777
3777
|
/** Optional price provider for fiat conversion */
|
|
3778
3778
|
price?: PriceProvider;
|
|
3779
3779
|
/**
|
|
@@ -3824,8 +3824,8 @@ interface SphereImportOptions {
|
|
|
3824
3824
|
transport: TransportProvider;
|
|
3825
3825
|
/** Oracle provider instance */
|
|
3826
3826
|
oracle: OracleProvider;
|
|
3827
|
-
/** L1 (ALPHA blockchain) configuration */
|
|
3828
|
-
l1?: L1Config;
|
|
3827
|
+
/** L1 (ALPHA blockchain) configuration. Pass null to disable L1 entirely. */
|
|
3828
|
+
l1?: L1Config | null;
|
|
3829
3829
|
/** Optional price provider for fiat conversion */
|
|
3830
3830
|
price?: PriceProvider;
|
|
3831
3831
|
/** Group chat configuration (NIP-29). Omit to disable groupchat. */
|
|
@@ -3873,8 +3873,8 @@ interface SphereInitOptions {
|
|
|
3873
3873
|
derivationPath?: string;
|
|
3874
3874
|
/** Optional nametag to register (only on create). Token is auto-minted. */
|
|
3875
3875
|
nametag?: string;
|
|
3876
|
-
/** L1 (ALPHA blockchain) configuration */
|
|
3877
|
-
l1?: L1Config;
|
|
3876
|
+
/** L1 (ALPHA blockchain) configuration. Pass null to disable L1 entirely. */
|
|
3877
|
+
l1?: L1Config | null;
|
|
3878
3878
|
/** Optional price provider for fiat conversion */
|
|
3879
3879
|
price?: PriceProvider;
|
|
3880
3880
|
/**
|
package/dist/core/index.d.ts
CHANGED
|
@@ -3734,8 +3734,8 @@ interface SphereCreateOptions {
|
|
|
3734
3734
|
transport: TransportProvider;
|
|
3735
3735
|
/** Oracle provider instance */
|
|
3736
3736
|
oracle: OracleProvider;
|
|
3737
|
-
/** L1 (ALPHA blockchain) configuration */
|
|
3738
|
-
l1?: L1Config;
|
|
3737
|
+
/** L1 (ALPHA blockchain) configuration. Pass null to disable L1 entirely. */
|
|
3738
|
+
l1?: L1Config | null;
|
|
3739
3739
|
/** Optional price provider for fiat conversion */
|
|
3740
3740
|
price?: PriceProvider;
|
|
3741
3741
|
/**
|
|
@@ -3772,8 +3772,8 @@ interface SphereLoadOptions {
|
|
|
3772
3772
|
transport: TransportProvider;
|
|
3773
3773
|
/** Oracle provider instance */
|
|
3774
3774
|
oracle: OracleProvider;
|
|
3775
|
-
/** L1 (ALPHA blockchain) configuration */
|
|
3776
|
-
l1?: L1Config;
|
|
3775
|
+
/** L1 (ALPHA blockchain) configuration. Pass null to disable L1 entirely. */
|
|
3776
|
+
l1?: L1Config | null;
|
|
3777
3777
|
/** Optional price provider for fiat conversion */
|
|
3778
3778
|
price?: PriceProvider;
|
|
3779
3779
|
/**
|
|
@@ -3824,8 +3824,8 @@ interface SphereImportOptions {
|
|
|
3824
3824
|
transport: TransportProvider;
|
|
3825
3825
|
/** Oracle provider instance */
|
|
3826
3826
|
oracle: OracleProvider;
|
|
3827
|
-
/** L1 (ALPHA blockchain) configuration */
|
|
3828
|
-
l1?: L1Config;
|
|
3827
|
+
/** L1 (ALPHA blockchain) configuration. Pass null to disable L1 entirely. */
|
|
3828
|
+
l1?: L1Config | null;
|
|
3829
3829
|
/** Optional price provider for fiat conversion */
|
|
3830
3830
|
price?: PriceProvider;
|
|
3831
3831
|
/** Group chat configuration (NIP-29). Omit to disable groupchat. */
|
|
@@ -3873,8 +3873,8 @@ interface SphereInitOptions {
|
|
|
3873
3873
|
derivationPath?: string;
|
|
3874
3874
|
/** Optional nametag to register (only on create). Token is auto-minted. */
|
|
3875
3875
|
nametag?: string;
|
|
3876
|
-
/** L1 (ALPHA blockchain) configuration */
|
|
3877
|
-
l1?: L1Config;
|
|
3876
|
+
/** L1 (ALPHA blockchain) configuration. Pass null to disable L1 entirely. */
|
|
3877
|
+
l1?: L1Config | null;
|
|
3878
3878
|
/** Optional price provider for fiat conversion */
|
|
3879
3879
|
price?: PriceProvider;
|
|
3880
3880
|
/**
|