@steffesgroup/steffes-auth
Advanced tools
Comparing version 2.0.3 to 2.0.4
@@ -175,2 +175,3 @@ import { AxiosInstance, AxiosRequestConfig, AxiosResponse, CancelToken } from 'axios'; | ||
fullName?: string | undefined; | ||
industries?: RelationEntity[]; | ||
lastLoginDate?: Date | undefined; | ||
@@ -203,2 +204,3 @@ lastName?: string | undefined; | ||
fullName?: string | undefined; | ||
industries?: RelationEntity[]; | ||
lastLoginDate?: Date | undefined; | ||
@@ -205,0 +207,0 @@ lastName?: string | undefined; |
@@ -652,2 +652,7 @@ "use strict"; | ||
this.fullName = _data["fullName"]; | ||
if (Array.isArray(_data["industries"])) { | ||
this.industries = []; | ||
for (let item of _data["industries"]) | ||
this.industries.push(RelationEntity.fromJS(item)); | ||
} | ||
this.lastLoginDate = _data["lastLoginDate"] ? new Date(_data["lastLoginDate"].toString()) : undefined; | ||
@@ -692,2 +697,7 @@ this.lastName = _data["lastName"]; | ||
data["fullName"] = this.fullName; | ||
if (Array.isArray(this.industries)) { | ||
data["industries"] = []; | ||
for (let item of this.industries) | ||
data["industries"].push(item.toJSON()); | ||
} | ||
data["lastLoginDate"] = this.lastLoginDate ? this.lastLoginDate.toISOString() : undefined; | ||
@@ -694,0 +704,0 @@ data["lastName"] = this.lastName; |
{ | ||
"name": "@steffesgroup/steffes-auth", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "Steffes Auth", | ||
@@ -5,0 +5,0 @@ "main": "dist/api.js", |
71182
1973