@dynamic-labs/sdk-api 0.0.196 → 0.0.197

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.196",
3
+ "version": "0.0.197",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -19,6 +19,7 @@ function JwtVerifiedCredentialFromJSONTyped(json, ignoreDiscriminator) {
19
19
  return {
20
20
  'address': !runtime.exists(json, 'address') ? undefined : json['address'],
21
21
  'chain': !runtime.exists(json, 'chain') ? undefined : json['chain'],
22
+ 'refId': !runtime.exists(json, 'refId') ? undefined : json['refId'],
22
23
  'email': !runtime.exists(json, 'email') ? undefined : json['email'],
23
24
  'id': json['id'],
24
25
  'nameService': !runtime.exists(json, 'name_service') ? undefined : NameServiceData.NameServiceDataFromJSON(json['name_service']),
@@ -45,6 +46,7 @@ function JwtVerifiedCredentialToJSON(value) {
45
46
  return {
46
47
  'address': value.address,
47
48
  'chain': value.chain,
49
+ 'refId': value.refId,
48
50
  'email': value.email,
49
51
  'id': value.id,
50
52
  'name_service': NameServiceData.NameServiceDataToJSON(value.nameService),
@@ -31,6 +31,12 @@ export interface JwtVerifiedCredential {
31
31
  * @memberof JwtVerifiedCredential
32
32
  */
33
33
  chain?: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof JwtVerifiedCredential
38
+ */
39
+ refId?: string;
34
40
  /**
35
41
  *
36
42
  * @type {string}
@@ -15,6 +15,7 @@ function JwtVerifiedCredentialFromJSONTyped(json, ignoreDiscriminator) {
15
15
  return {
16
16
  'address': !exists(json, 'address') ? undefined : json['address'],
17
17
  'chain': !exists(json, 'chain') ? undefined : json['chain'],
18
+ 'refId': !exists(json, 'refId') ? undefined : json['refId'],
18
19
  'email': !exists(json, 'email') ? undefined : json['email'],
19
20
  'id': json['id'],
20
21
  'nameService': !exists(json, 'name_service') ? undefined : NameServiceDataFromJSON(json['name_service']),
@@ -41,6 +42,7 @@ function JwtVerifiedCredentialToJSON(value) {
41
42
  return {
42
43
  'address': value.address,
43
44
  'chain': value.chain,
45
+ 'refId': value.refId,
44
46
  'email': value.email,
45
47
  'id': value.id,
46
48
  'name_service': NameServiceDataToJSON(value.nameService),