@dynamic-labs/sdk-api 0.0.739 → 0.0.741

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.739",
3
+ "version": "0.0.741",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -16,7 +16,6 @@ function GlobalWalletConnectionFromJSONTyped(json, ignoreDiscriminator) {
16
16
  return {
17
17
  'id': json['id'],
18
18
  'userId': json['userId'],
19
- 'connectionId': json['connectionId'],
20
19
  'appUrl': json['appUrl'],
21
20
  'status': GlobalWalletConnectionStatusEnum.GlobalWalletConnectionStatusEnumFromJSON(json['status']),
22
21
  'expiresAt': !runtime.exists(json, 'expiresAt') ? undefined : (json['expiresAt'] === null ? null : new Date(json['expiresAt'])),
@@ -34,7 +33,6 @@ function GlobalWalletConnectionToJSON(value) {
34
33
  return {
35
34
  'id': value.id,
36
35
  'userId': value.userId,
37
- 'connectionId': value.connectionId,
38
36
  'appUrl': value.appUrl,
39
37
  'status': GlobalWalletConnectionStatusEnum.GlobalWalletConnectionStatusEnumToJSON(value.status),
40
38
  'expiresAt': value.expiresAt === undefined ? undefined : (value.expiresAt === null ? null : value.expiresAt.toISOString()),
@@ -28,12 +28,6 @@ export interface GlobalWalletConnection {
28
28
  * @memberof GlobalWalletConnection
29
29
  */
30
30
  userId: string;
31
- /**
32
- *
33
- * @type {string}
34
- * @memberof GlobalWalletConnection
35
- */
36
- connectionId: string;
37
31
  /**
38
32
  * An [RFC 6454](https://www.rfc-editor.org/rfc/rfc6454) valid url. Must not include any paths. A single wildcard (*) can be used as the first subdomain.
39
33
  * @type {string}
@@ -12,7 +12,6 @@ function GlobalWalletConnectionFromJSONTyped(json, ignoreDiscriminator) {
12
12
  return {
13
13
  'id': json['id'],
14
14
  'userId': json['userId'],
15
- 'connectionId': json['connectionId'],
16
15
  'appUrl': json['appUrl'],
17
16
  'status': GlobalWalletConnectionStatusEnumFromJSON(json['status']),
18
17
  'expiresAt': !exists(json, 'expiresAt') ? undefined : (json['expiresAt'] === null ? null : new Date(json['expiresAt'])),
@@ -30,7 +29,6 @@ function GlobalWalletConnectionToJSON(value) {
30
29
  return {
31
30
  'id': value.id,
32
31
  'userId': value.userId,
33
- 'connectionId': value.connectionId,
34
32
  'appUrl': value.appUrl,
35
33
  'status': GlobalWalletConnectionStatusEnumToJSON(value.status),
36
34
  'expiresAt': value.expiresAt === undefined ? undefined : (value.expiresAt === null ? null : value.expiresAt.toISOString()),
@@ -23,7 +23,6 @@ function GlobalWalletConnectionCreateRequestFromJSONTyped(json, ignoreDiscrimina
23
23
  return json;
24
24
  }
25
25
  return {
26
- 'connectionId': json['connectionId'],
27
26
  'expiresAt': (new Date(json['expiresAt'])),
28
27
  };
29
28
  }
@@ -35,7 +34,6 @@ function GlobalWalletConnectionCreateRequestToJSON(value) {
35
34
  return null;
36
35
  }
37
36
  return {
38
- 'connectionId': value.connectionId,
39
37
  'expiresAt': (value.expiresAt.toISOString()),
40
38
  };
41
39
  }
@@ -15,12 +15,6 @@
15
15
  * @interface GlobalWalletConnectionCreateRequest
16
16
  */
17
17
  export interface GlobalWalletConnectionCreateRequest {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof GlobalWalletConnectionCreateRequest
22
- */
23
- connectionId: string;
24
18
  /**
25
19
  *
26
20
  * @type {Date}
@@ -19,7 +19,6 @@ function GlobalWalletConnectionCreateRequestFromJSONTyped(json, ignoreDiscrimina
19
19
  return json;
20
20
  }
21
21
  return {
22
- 'connectionId': json['connectionId'],
23
22
  'expiresAt': (new Date(json['expiresAt'])),
24
23
  };
25
24
  }
@@ -31,7 +30,6 @@ function GlobalWalletConnectionCreateRequestToJSON(value) {
31
30
  return null;
32
31
  }
33
32
  return {
34
- 'connectionId': value.connectionId,
35
33
  'expiresAt': (value.expiresAt.toISOString()),
36
34
  };
37
35
  }