@dynamic-labs/sdk-api 0.0.214 → 0.0.215
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
|
@@ -23,6 +23,7 @@ function InternalUserFieldsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
'team': !runtime.exists(json, 'team') ? undefined : json['team'],
|
|
24
24
|
'policiesConsent': !runtime.exists(json, 'policiesConsent') ? undefined : json['policiesConsent'],
|
|
25
25
|
'country': !runtime.exists(json, 'country') ? undefined : json['country'],
|
|
26
|
+
'username': !runtime.exists(json, 'username') ? undefined : json['username'],
|
|
26
27
|
};
|
|
27
28
|
}
|
|
28
29
|
function InternalUserFieldsToJSON(value) {
|
|
@@ -43,6 +44,7 @@ function InternalUserFieldsToJSON(value) {
|
|
|
43
44
|
'team': value.team,
|
|
44
45
|
'policiesConsent': value.policiesConsent,
|
|
45
46
|
'country': value.country,
|
|
47
|
+
'username': value.username,
|
|
46
48
|
};
|
|
47
49
|
}
|
|
48
50
|
|
|
@@ -75,6 +75,12 @@ export interface InternalUserFields {
|
|
|
75
75
|
* @memberof InternalUserFields
|
|
76
76
|
*/
|
|
77
77
|
country?: string | null;
|
|
78
|
+
/**
|
|
79
|
+
* Alphanumeric username
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof InternalUserFields
|
|
82
|
+
*/
|
|
83
|
+
username?: string | null;
|
|
78
84
|
}
|
|
79
85
|
export declare function InternalUserFieldsFromJSON(json: any): InternalUserFields;
|
|
80
86
|
export declare function InternalUserFieldsFromJSONTyped(json: any, ignoreDiscriminator: boolean): InternalUserFields;
|
|
@@ -19,6 +19,7 @@ function InternalUserFieldsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
19
19
|
'team': !exists(json, 'team') ? undefined : json['team'],
|
|
20
20
|
'policiesConsent': !exists(json, 'policiesConsent') ? undefined : json['policiesConsent'],
|
|
21
21
|
'country': !exists(json, 'country') ? undefined : json['country'],
|
|
22
|
+
'username': !exists(json, 'username') ? undefined : json['username'],
|
|
22
23
|
};
|
|
23
24
|
}
|
|
24
25
|
function InternalUserFieldsToJSON(value) {
|
|
@@ -39,6 +40,7 @@ function InternalUserFieldsToJSON(value) {
|
|
|
39
40
|
'team': value.team,
|
|
40
41
|
'policiesConsent': value.policiesConsent,
|
|
41
42
|
'country': value.country,
|
|
43
|
+
'username': value.username,
|
|
42
44
|
};
|
|
43
45
|
}
|
|
44
46
|
|