@dynamic-labs/sdk-api-core 0.0.536 → 0.0.538

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api-core",
3
- "version": "0.0.536",
3
+ "version": "0.0.538",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -20,7 +20,7 @@ import { UserIdentifierTypeEnum } from './UserIdentifierTypeEnum';
20
20
  */
21
21
  export interface CreateUserEmbeddedWalletsRequest {
22
22
  /**
23
- * Identifier for the user. Must be either an email, phone number, or user id
23
+ * Identifier for the user. Must be either an email, phone number, user id, external user id, or username from a supported social provider
24
24
  * @type {string}
25
25
  * @memberof CreateUserEmbeddedWalletsRequest
26
26
  */
@@ -24,6 +24,8 @@ exports.WalletAddressType = void 0;
24
24
  (function (WalletAddressType) {
25
25
  WalletAddressType["Ordinals"] = "ordinals";
26
26
  WalletAddressType["Payment"] = "payment";
27
+ WalletAddressType["Cosmos"] = "cosmos";
28
+ WalletAddressType["Evm"] = "evm";
27
29
  })(exports.WalletAddressType || (exports.WalletAddressType = {}));
28
30
  function WalletAddressTypeFromJSON(json) {
29
31
  return WalletAddressTypeFromJSONTyped(json);
@@ -16,7 +16,9 @@
16
16
  */
17
17
  export declare enum WalletAddressType {
18
18
  Ordinals = "ordinals",
19
- Payment = "payment"
19
+ Payment = "payment",
20
+ Cosmos = "cosmos",
21
+ Evm = "evm"
20
22
  }
21
23
  export declare function WalletAddressTypeFromJSON(json: any): WalletAddressType;
22
24
  export declare function WalletAddressTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletAddressType;
@@ -20,6 +20,8 @@ var WalletAddressType;
20
20
  (function (WalletAddressType) {
21
21
  WalletAddressType["Ordinals"] = "ordinals";
22
22
  WalletAddressType["Payment"] = "payment";
23
+ WalletAddressType["Cosmos"] = "cosmos";
24
+ WalletAddressType["Evm"] = "evm";
23
25
  })(WalletAddressType || (WalletAddressType = {}));
24
26
  function WalletAddressTypeFromJSON(json) {
25
27
  return WalletAddressTypeFromJSONTyped(json);