@supanovaapp/sdk 0.2.37 → 0.2.39
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/README.md +24 -2
- package/dist/core/client.d.ts +3 -0
- package/dist/core/types.d.ts +36 -4
- package/dist/index.cjs.js +256 -256
- package/dist/index.d.ts +5 -0
- package/dist/index.esm.js +2935 -2905
- package/dist/providers/canton/types.d.ts +9 -4
- package/dist/services/cantonService.d.ts +9 -4
- package/dist/utils/canton.d.ts +9 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -148,6 +148,11 @@ export * from './utils/converters';
|
|
|
148
148
|
* @see {@link getCantonWallets}, {@link getPublicKeyBase64}, {@link isCantonWallet}, {@link CantonWallet}
|
|
149
149
|
*/
|
|
150
150
|
export * from './utils/wallet';
|
|
151
|
+
/**
|
|
152
|
+
* Canton contract utilities (normalize legacy/flat formats)
|
|
153
|
+
* @see {@link normalizeContractItem}, {@link isLegacyContractItem}
|
|
154
|
+
*/
|
|
155
|
+
export { normalizeContractItem, isLegacyContractItem } from './utils/canton';
|
|
151
156
|
/**
|
|
152
157
|
* Canton Network service for direct API access (advanced usage)
|
|
153
158
|
* @see {@link CantonService}
|