@dynamic-labs/sdk-api 0.0.417 → 0.0.418

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.417",
3
+ "version": "0.0.418",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -37,7 +37,6 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
37
37
  'phoneNumber': !runtime.exists(json, 'phone_number') ? undefined : json['phone_number'],
38
38
  'missingFields': (json['missing_fields'].map(ProjectSettingsKyc.ProjectSettingsKycFromJSON)),
39
39
  'scope': !runtime.exists(json, 'scope') ? undefined : json['scope'],
40
- 'requestedScope': !runtime.exists(json, 'requestedScope') ? undefined : json['requestedScope'],
41
40
  'tShirtSize': !runtime.exists(json, 't_shirt_size') ? undefined : json['t_shirt_size'],
42
41
  'team': !runtime.exists(json, 'team') ? undefined : json['team'],
43
42
  'username': !runtime.exists(json, 'username') ? undefined : json['username'],
@@ -90,7 +89,6 @@ function DynamicJwtToJSON(value) {
90
89
  'phone_number': value.phoneNumber,
91
90
  'missing_fields': (value.missingFields.map(ProjectSettingsKyc.ProjectSettingsKycToJSON)),
92
91
  'scope': value.scope,
93
- 'requestedScope': value.requestedScope,
94
92
  't_shirt_size': value.tShirtSize,
95
93
  'team': value.team,
96
94
  'username': value.username,
@@ -139,12 +139,6 @@ export interface DynamicJwt {
139
139
  * @memberof DynamicJwt
140
140
  */
141
141
  scope?: string;
142
- /**
143
- * A whitespace-separate list of permissions associated with the JWT token issued. This conforms to the JWT standard for scope claims: https://datatracker.ietf.org/doc/html/rfc8693#section-4.2
144
- * @type {string}
145
- * @memberof DynamicJwt
146
- */
147
- requestedScope?: string;
148
142
  /**
149
143
  *
150
144
  * @type {string}
@@ -33,7 +33,6 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
33
33
  'phoneNumber': !exists(json, 'phone_number') ? undefined : json['phone_number'],
34
34
  'missingFields': (json['missing_fields'].map(ProjectSettingsKycFromJSON)),
35
35
  'scope': !exists(json, 'scope') ? undefined : json['scope'],
36
- 'requestedScope': !exists(json, 'requestedScope') ? undefined : json['requestedScope'],
37
36
  'tShirtSize': !exists(json, 't_shirt_size') ? undefined : json['t_shirt_size'],
38
37
  'team': !exists(json, 'team') ? undefined : json['team'],
39
38
  'username': !exists(json, 'username') ? undefined : json['username'],
@@ -86,7 +85,6 @@ function DynamicJwtToJSON(value) {
86
85
  'phone_number': value.phoneNumber,
87
86
  'missing_fields': (value.missingFields.map(ProjectSettingsKycToJSON)),
88
87
  'scope': value.scope,
89
- 'requestedScope': value.requestedScope,
90
88
  't_shirt_size': value.tShirtSize,
91
89
  'team': value.team,
92
90
  'username': value.username,
@@ -24,7 +24,6 @@ function MinifiedDynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
24
24
  'lastVerifiedCredentialId': json['last_verified_credential_id'],
25
25
  'memberEnvironmentIds': !runtime.exists(json, 'member_environment_ids') ? undefined : json['member_environment_ids'],
26
26
  'scope': !runtime.exists(json, 'scope') ? undefined : json['scope'],
27
- 'requestedScope': !runtime.exists(json, 'requestedScope') ? undefined : json['requestedScope'],
28
27
  };
29
28
  }
30
29
  function MinifiedDynamicJwtToJSON(value) {
@@ -46,7 +45,6 @@ function MinifiedDynamicJwtToJSON(value) {
46
45
  'last_verified_credential_id': value.lastVerifiedCredentialId,
47
46
  'member_environment_ids': value.memberEnvironmentIds,
48
47
  'scope': value.scope,
49
- 'requestedScope': value.requestedScope,
50
48
  };
51
49
  }
52
50
 
@@ -81,12 +81,6 @@ export interface MinifiedDynamicJwt {
81
81
  * @memberof MinifiedDynamicJwt
82
82
  */
83
83
  scope?: string;
84
- /**
85
- * A whitespace-separate list of permissions associated with the JWT token issued. This conforms to the JWT standard for scope claims: https://datatracker.ietf.org/doc/html/rfc8693#section-4.2
86
- * @type {string}
87
- * @memberof MinifiedDynamicJwt
88
- */
89
- requestedScope?: string;
90
84
  }
91
85
  export declare function MinifiedDynamicJwtFromJSON(json: any): MinifiedDynamicJwt;
92
86
  export declare function MinifiedDynamicJwtFromJSONTyped(json: any, ignoreDiscriminator: boolean): MinifiedDynamicJwt;
@@ -20,7 +20,6 @@ function MinifiedDynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
20
20
  'lastVerifiedCredentialId': json['last_verified_credential_id'],
21
21
  'memberEnvironmentIds': !exists(json, 'member_environment_ids') ? undefined : json['member_environment_ids'],
22
22
  'scope': !exists(json, 'scope') ? undefined : json['scope'],
23
- 'requestedScope': !exists(json, 'requestedScope') ? undefined : json['requestedScope'],
24
23
  };
25
24
  }
26
25
  function MinifiedDynamicJwtToJSON(value) {
@@ -42,7 +41,6 @@ function MinifiedDynamicJwtToJSON(value) {
42
41
  'last_verified_credential_id': value.lastVerifiedCredentialId,
43
42
  'member_environment_ids': value.memberEnvironmentIds,
44
43
  'scope': value.scope,
45
- 'requestedScope': value.requestedScope,
46
44
  };
47
45
  }
48
46