@unicitylabs/sphere-sdk 0.6.3 → 0.6.5
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 +11201 -9653
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +8 -0
- package/dist/core/index.d.ts +8 -0
- package/dist/core/index.js +11312 -9752
- package/dist/core/index.js.map +1 -1
- package/dist/impl/browser/connect/index.cjs +502 -1
- package/dist/impl/browser/connect/index.cjs.map +1 -1
- package/dist/impl/browser/connect/index.d.cts +181 -1
- package/dist/impl/browser/connect/index.d.ts +181 -1
- package/dist/impl/browser/connect/index.js +502 -1
- package/dist/impl/browser/connect/index.js.map +1 -1
- package/dist/impl/browser/index.cjs +45 -10
- package/dist/impl/browser/index.cjs.map +1 -1
- package/dist/impl/browser/index.js +45 -10
- package/dist/impl/browser/index.js.map +1 -1
- package/dist/impl/nodejs/index.cjs +45 -10
- package/dist/impl/nodejs/index.cjs.map +1 -1
- package/dist/impl/nodejs/index.d.cts +12 -0
- package/dist/impl/nodejs/index.d.ts +12 -0
- package/dist/impl/nodejs/index.js +45 -10
- package/dist/impl/nodejs/index.js.map +1 -1
- package/dist/index.cjs +11565 -10017
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6101 -4541
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/core/index.d.cts
CHANGED
|
@@ -1780,6 +1780,14 @@ declare class MultiAddressTransportMux {
|
|
|
1780
1780
|
* Create and publish a NIP-17 gift wrap message for a specific address.
|
|
1781
1781
|
*/
|
|
1782
1782
|
sendGiftWrap(addressIndex: number, recipientPubkey: string, content: string): Promise<string>;
|
|
1783
|
+
/**
|
|
1784
|
+
* Send a NIP-17 read receipt (kind 15) for a specific address.
|
|
1785
|
+
*/
|
|
1786
|
+
sendReadReceipt(addressIndex: number, recipientPubkey: string, messageEventId: string): Promise<void>;
|
|
1787
|
+
/**
|
|
1788
|
+
* Send a composing indicator (kind 25050) gift wrap for a specific address.
|
|
1789
|
+
*/
|
|
1790
|
+
sendComposingIndicator(addressIndex: number, recipientPubkey: string, content: string): Promise<void>;
|
|
1783
1791
|
/**
|
|
1784
1792
|
* Publish a raw event (e.g., identity binding, broadcast).
|
|
1785
1793
|
*/
|
package/dist/core/index.d.ts
CHANGED
|
@@ -1780,6 +1780,14 @@ declare class MultiAddressTransportMux {
|
|
|
1780
1780
|
* Create and publish a NIP-17 gift wrap message for a specific address.
|
|
1781
1781
|
*/
|
|
1782
1782
|
sendGiftWrap(addressIndex: number, recipientPubkey: string, content: string): Promise<string>;
|
|
1783
|
+
/**
|
|
1784
|
+
* Send a NIP-17 read receipt (kind 15) for a specific address.
|
|
1785
|
+
*/
|
|
1786
|
+
sendReadReceipt(addressIndex: number, recipientPubkey: string, messageEventId: string): Promise<void>;
|
|
1787
|
+
/**
|
|
1788
|
+
* Send a composing indicator (kind 25050) gift wrap for a specific address.
|
|
1789
|
+
*/
|
|
1790
|
+
sendComposingIndicator(addressIndex: number, recipientPubkey: string, content: string): Promise<void>;
|
|
1783
1791
|
/**
|
|
1784
1792
|
* Publish a raw event (e.g., identity binding, broadcast).
|
|
1785
1793
|
*/
|