@dynamic-labs/sdk-api 0.0.255 → 0.0.257

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",
3
- "version": "0.0.255",
3
+ "version": "0.0.257",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -34,6 +34,7 @@ function JwtVerifiedCredentialFromJSONTyped(json, ignoreDiscriminator) {
34
34
  'oauthAccountPhotos': !runtime.exists(json, 'oauth_account_photos') ? undefined : json['oauth_account_photos'],
35
35
  'oauthEmails': !runtime.exists(json, 'oauth_emails') ? undefined : json['oauth_emails'],
36
36
  'previousUsers': !runtime.exists(json, 'previous_users') ? undefined : json['previous_users'],
37
+ 'embeddedWalletId': !runtime.exists(json, 'embedded_wallet_id') ? undefined : json['embedded_wallet_id'],
37
38
  };
38
39
  }
39
40
  function JwtVerifiedCredentialToJSON(value) {
@@ -61,6 +62,7 @@ function JwtVerifiedCredentialToJSON(value) {
61
62
  'oauth_account_photos': value.oauthAccountPhotos,
62
63
  'oauth_emails': value.oauthEmails,
63
64
  'previous_users': value.previousUsers,
65
+ 'embedded_wallet_id': value.embeddedWalletId,
64
66
  };
65
67
  }
66
68
 
@@ -121,6 +121,12 @@ export interface JwtVerifiedCredential {
121
121
  * @memberof JwtVerifiedCredential
122
122
  */
123
123
  previousUsers?: Array<string>;
124
+ /**
125
+ *
126
+ * @type {string}
127
+ * @memberof JwtVerifiedCredential
128
+ */
129
+ embeddedWalletId?: string | null;
124
130
  }
125
131
  export declare function JwtVerifiedCredentialFromJSON(json: any): JwtVerifiedCredential;
126
132
  export declare function JwtVerifiedCredentialFromJSONTyped(json: any, ignoreDiscriminator: boolean): JwtVerifiedCredential;
@@ -30,6 +30,7 @@ function JwtVerifiedCredentialFromJSONTyped(json, ignoreDiscriminator) {
30
30
  'oauthAccountPhotos': !exists(json, 'oauth_account_photos') ? undefined : json['oauth_account_photos'],
31
31
  'oauthEmails': !exists(json, 'oauth_emails') ? undefined : json['oauth_emails'],
32
32
  'previousUsers': !exists(json, 'previous_users') ? undefined : json['previous_users'],
33
+ 'embeddedWalletId': !exists(json, 'embedded_wallet_id') ? undefined : json['embedded_wallet_id'],
33
34
  };
34
35
  }
35
36
  function JwtVerifiedCredentialToJSON(value) {
@@ -57,6 +58,7 @@ function JwtVerifiedCredentialToJSON(value) {
57
58
  'oauth_account_photos': value.oauthAccountPhotos,
58
59
  'oauth_emails': value.oauthEmails,
59
60
  'previous_users': value.previousUsers,
61
+ 'embedded_wallet_id': value.embeddedWalletId,
60
62
  };
61
63
  }
62
64
 
@@ -51,6 +51,7 @@ exports.UnprocessableEntityErrorCode = void 0;
51
51
  UnprocessableEntityErrorCode["TooManyProjectsForOrganization"] = "too_many_projects_for_organization";
52
52
  UnprocessableEntityErrorCode["EmailAssociatedWithDifferentProvider"] = "email_associated_with_different_provider";
53
53
  UnprocessableEntityErrorCode["UserHasAlreadyAccountWithEmail"] = "user_has_already_account_with_email";
54
+ UnprocessableEntityErrorCode["OtherVerifyFailure"] = "other_verify_failure";
54
55
  })(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
55
56
  function UnprocessableEntityErrorCodeFromJSON(json) {
56
57
  return UnprocessableEntityErrorCodeFromJSONTyped(json);
@@ -43,7 +43,8 @@ export declare enum UnprocessableEntityErrorCode {
43
43
  TooManyOrganizationsForUser = "too_many_organizations_for_user",
44
44
  TooManyProjectsForOrganization = "too_many_projects_for_organization",
45
45
  EmailAssociatedWithDifferentProvider = "email_associated_with_different_provider",
46
- UserHasAlreadyAccountWithEmail = "user_has_already_account_with_email"
46
+ UserHasAlreadyAccountWithEmail = "user_has_already_account_with_email",
47
+ OtherVerifyFailure = "other_verify_failure"
47
48
  }
48
49
  export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
49
50
  export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
@@ -47,6 +47,7 @@ var UnprocessableEntityErrorCode;
47
47
  UnprocessableEntityErrorCode["TooManyProjectsForOrganization"] = "too_many_projects_for_organization";
48
48
  UnprocessableEntityErrorCode["EmailAssociatedWithDifferentProvider"] = "email_associated_with_different_provider";
49
49
  UnprocessableEntityErrorCode["UserHasAlreadyAccountWithEmail"] = "user_has_already_account_with_email";
50
+ UnprocessableEntityErrorCode["OtherVerifyFailure"] = "other_verify_failure";
50
51
  })(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
51
52
  function UnprocessableEntityErrorCodeFromJSON(json) {
52
53
  return UnprocessableEntityErrorCodeFromJSONTyped(json);