@vleap/warps 3.0.0-alpha.95 → 3.0.0-alpha.96

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/index.d.cts CHANGED
@@ -203,7 +203,7 @@ interface AdapterWarpRegistry {
203
203
  getRegistryConfig(): WarpRegistryConfigInfo;
204
204
  createWarpRegisterTransaction(txHash: string, alias?: string | null, brand?: string | null): Promise<WarpAdapterGenericTransaction>;
205
205
  createWarpUnregisterTransaction(txHash: string): Promise<WarpAdapterGenericTransaction>;
206
- createWarpUpgradeTransaction(alias: string, txHash: string): Promise<WarpAdapterGenericTransaction>;
206
+ createWarpUpgradeTransaction(alias: string, txHash: string, brand?: string | null): Promise<WarpAdapterGenericTransaction>;
207
207
  createWarpAliasSetTransaction(txHash: string, alias: string): Promise<WarpAdapterGenericTransaction>;
208
208
  createWarpVerifyTransaction(txHash: string): Promise<WarpAdapterGenericTransaction>;
209
209
  createWarpTransferOwnershipTransaction(txHash: string, newOwner: string): Promise<WarpAdapterGenericTransaction>;
package/dist/index.d.ts CHANGED
@@ -203,7 +203,7 @@ interface AdapterWarpRegistry {
203
203
  getRegistryConfig(): WarpRegistryConfigInfo;
204
204
  createWarpRegisterTransaction(txHash: string, alias?: string | null, brand?: string | null): Promise<WarpAdapterGenericTransaction>;
205
205
  createWarpUnregisterTransaction(txHash: string): Promise<WarpAdapterGenericTransaction>;
206
- createWarpUpgradeTransaction(alias: string, txHash: string): Promise<WarpAdapterGenericTransaction>;
206
+ createWarpUpgradeTransaction(alias: string, txHash: string, brand?: string | null): Promise<WarpAdapterGenericTransaction>;
207
207
  createWarpAliasSetTransaction(txHash: string, alias: string): Promise<WarpAdapterGenericTransaction>;
208
208
  createWarpVerifyTransaction(txHash: string): Promise<WarpAdapterGenericTransaction>;
209
209
  createWarpTransferOwnershipTransaction(txHash: string, newOwner: string): Promise<WarpAdapterGenericTransaction>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vleap/warps",
3
- "version": "3.0.0-alpha.95",
3
+ "version": "3.0.0-alpha.96",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",