@dynamic-labs/sdk-api-core 0.0.474 → 0.0.475
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
|
@@ -57,7 +57,6 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
57
57
|
'discordNotification': !runtime.exists(json, 'discord_notification') ? undefined : json['discord_notification'],
|
|
58
58
|
'newsletterNotification': !runtime.exists(json, 'newsletter_notification') ? undefined : json['newsletter_notification'],
|
|
59
59
|
'metadata': !runtime.exists(json, 'metadata') ? undefined : json['metadata'],
|
|
60
|
-
'memberEnvironmentIds': !runtime.exists(json, 'member_environment_ids') ? undefined : json['member_environment_ids'],
|
|
61
60
|
'info': !runtime.exists(json, 'info') ? undefined : JwtPayloadDeprecatedInfo.JwtPayloadDeprecatedInfoFromJSON(json['info']),
|
|
62
61
|
};
|
|
63
62
|
}
|
|
@@ -109,7 +108,6 @@ function DynamicJwtToJSON(value) {
|
|
|
109
108
|
'discord_notification': value.discordNotification,
|
|
110
109
|
'newsletter_notification': value.newsletterNotification,
|
|
111
110
|
'metadata': value.metadata,
|
|
112
|
-
'member_environment_ids': value.memberEnvironmentIds,
|
|
113
111
|
'info': JwtPayloadDeprecatedInfo.JwtPayloadDeprecatedInfoToJSON(value.info),
|
|
114
112
|
};
|
|
115
113
|
}
|
|
@@ -259,12 +259,6 @@ export interface DynamicJwt {
|
|
|
259
259
|
* @memberof DynamicJwt
|
|
260
260
|
*/
|
|
261
261
|
metadata?: object;
|
|
262
|
-
/**
|
|
263
|
-
* This will be populated when `environment_id` is the Dynamic production environment ID. This is a list of environment IDs that the subject user ID can make configuration and set up changes as as organization admin.
|
|
264
|
-
* @type {Array<string>}
|
|
265
|
-
* @memberof DynamicJwt
|
|
266
|
-
*/
|
|
267
|
-
memberEnvironmentIds?: Array<string>;
|
|
268
262
|
/**
|
|
269
263
|
*
|
|
270
264
|
* @type {JwtPayloadDeprecatedInfo}
|
package/src/models/DynamicJwt.js
CHANGED
|
@@ -53,7 +53,6 @@ function DynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
53
53
|
'discordNotification': !exists(json, 'discord_notification') ? undefined : json['discord_notification'],
|
|
54
54
|
'newsletterNotification': !exists(json, 'newsletter_notification') ? undefined : json['newsletter_notification'],
|
|
55
55
|
'metadata': !exists(json, 'metadata') ? undefined : json['metadata'],
|
|
56
|
-
'memberEnvironmentIds': !exists(json, 'member_environment_ids') ? undefined : json['member_environment_ids'],
|
|
57
56
|
'info': !exists(json, 'info') ? undefined : JwtPayloadDeprecatedInfoFromJSON(json['info']),
|
|
58
57
|
};
|
|
59
58
|
}
|
|
@@ -105,7 +104,6 @@ function DynamicJwtToJSON(value) {
|
|
|
105
104
|
'discord_notification': value.discordNotification,
|
|
106
105
|
'newsletter_notification': value.newsletterNotification,
|
|
107
106
|
'metadata': value.metadata,
|
|
108
|
-
'member_environment_ids': value.memberEnvironmentIds,
|
|
109
107
|
'info': JwtPayloadDeprecatedInfoToJSON(value.info),
|
|
110
108
|
};
|
|
111
109
|
}
|
|
@@ -22,7 +22,6 @@ function MinifiedDynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
'iat': !runtime.exists(json, 'iat') ? undefined : json['iat'],
|
|
23
23
|
'environmentId': json['environment_id'],
|
|
24
24
|
'lastVerifiedCredentialId': json['last_verified_credential_id'],
|
|
25
|
-
'memberEnvironmentIds': !runtime.exists(json, 'member_environment_ids') ? undefined : json['member_environment_ids'],
|
|
26
25
|
'scope': !runtime.exists(json, 'scope') ? undefined : json['scope'],
|
|
27
26
|
};
|
|
28
27
|
}
|
|
@@ -43,7 +42,6 @@ function MinifiedDynamicJwtToJSON(value) {
|
|
|
43
42
|
'iat': value.iat,
|
|
44
43
|
'environment_id': value.environmentId,
|
|
45
44
|
'last_verified_credential_id': value.lastVerifiedCredentialId,
|
|
46
|
-
'member_environment_ids': value.memberEnvironmentIds,
|
|
47
45
|
'scope': value.scope,
|
|
48
46
|
};
|
|
49
47
|
}
|
|
@@ -69,12 +69,6 @@ export interface MinifiedDynamicJwt {
|
|
|
69
69
|
* @memberof MinifiedDynamicJwt
|
|
70
70
|
*/
|
|
71
71
|
lastVerifiedCredentialId: string;
|
|
72
|
-
/**
|
|
73
|
-
* This will be populated when `environment_id` is the Dynamic production environment ID. This is a list of environment IDs that the subject user ID can make configuration and set up changes as as organization admin.
|
|
74
|
-
* @type {Array<string>}
|
|
75
|
-
* @memberof MinifiedDynamicJwt
|
|
76
|
-
*/
|
|
77
|
-
memberEnvironmentIds?: Array<string>;
|
|
78
72
|
/**
|
|
79
73
|
* 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
|
|
80
74
|
* @type {string}
|
|
@@ -18,7 +18,6 @@ function MinifiedDynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
18
18
|
'iat': !exists(json, 'iat') ? undefined : json['iat'],
|
|
19
19
|
'environmentId': json['environment_id'],
|
|
20
20
|
'lastVerifiedCredentialId': json['last_verified_credential_id'],
|
|
21
|
-
'memberEnvironmentIds': !exists(json, 'member_environment_ids') ? undefined : json['member_environment_ids'],
|
|
22
21
|
'scope': !exists(json, 'scope') ? undefined : json['scope'],
|
|
23
22
|
};
|
|
24
23
|
}
|
|
@@ -39,7 +38,6 @@ function MinifiedDynamicJwtToJSON(value) {
|
|
|
39
38
|
'iat': value.iat,
|
|
40
39
|
'environment_id': value.environmentId,
|
|
41
40
|
'last_verified_credential_id': value.lastVerifiedCredentialId,
|
|
42
|
-
'member_environment_ids': value.memberEnvironmentIds,
|
|
43
41
|
'scope': value.scope,
|
|
44
42
|
};
|
|
45
43
|
}
|