@connectedxm/admin 6.21.1 → 6.21.2
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/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/openapi.json +12 -7
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3547,10 +3547,11 @@ interface BaseLogin {
|
|
|
3547
3547
|
firstName: string | null;
|
|
3548
3548
|
lastName: string | null;
|
|
3549
3549
|
internalRefId: string | null;
|
|
3550
|
-
|
|
3551
|
-
updatedAt: string;
|
|
3550
|
+
lastLoginAt: string | null;
|
|
3552
3551
|
}
|
|
3553
3552
|
interface Login extends BaseLogin {
|
|
3553
|
+
createdAt: string;
|
|
3554
|
+
updatedAt: string;
|
|
3554
3555
|
_count: {
|
|
3555
3556
|
accounts: number;
|
|
3556
3557
|
devices: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -3547,10 +3547,11 @@ interface BaseLogin {
|
|
|
3547
3547
|
firstName: string | null;
|
|
3548
3548
|
lastName: string | null;
|
|
3549
3549
|
internalRefId: string | null;
|
|
3550
|
-
|
|
3551
|
-
updatedAt: string;
|
|
3550
|
+
lastLoginAt: string | null;
|
|
3552
3551
|
}
|
|
3553
3552
|
interface Login extends BaseLogin {
|
|
3553
|
+
createdAt: string;
|
|
3554
|
+
updatedAt: string;
|
|
3554
3555
|
_count: {
|
|
3555
3556
|
accounts: number;
|
|
3556
3557
|
devices: number;
|
package/openapi.json
CHANGED
|
@@ -102863,11 +102863,9 @@
|
|
|
102863
102863
|
"type": "string",
|
|
102864
102864
|
"nullable": true
|
|
102865
102865
|
},
|
|
102866
|
-
"
|
|
102867
|
-
"type": "string"
|
|
102868
|
-
|
|
102869
|
-
"updatedAt": {
|
|
102870
|
-
"type": "string"
|
|
102866
|
+
"lastLoginAt": {
|
|
102867
|
+
"type": "string",
|
|
102868
|
+
"nullable": true
|
|
102871
102869
|
}
|
|
102872
102870
|
},
|
|
102873
102871
|
"required": [
|
|
@@ -102881,8 +102879,7 @@
|
|
|
102881
102879
|
"firstName",
|
|
102882
102880
|
"lastName",
|
|
102883
102881
|
"internalRefId",
|
|
102884
|
-
"
|
|
102885
|
-
"updatedAt"
|
|
102882
|
+
"lastLoginAt"
|
|
102886
102883
|
]
|
|
102887
102884
|
},
|
|
102888
102885
|
"Login": {
|
|
@@ -102893,6 +102890,12 @@
|
|
|
102893
102890
|
{
|
|
102894
102891
|
"type": "object",
|
|
102895
102892
|
"properties": {
|
|
102893
|
+
"createdAt": {
|
|
102894
|
+
"type": "string"
|
|
102895
|
+
},
|
|
102896
|
+
"updatedAt": {
|
|
102897
|
+
"type": "string"
|
|
102898
|
+
},
|
|
102896
102899
|
"_count": {
|
|
102897
102900
|
"type": "object",
|
|
102898
102901
|
"properties": {
|
|
@@ -102910,6 +102913,8 @@
|
|
|
102910
102913
|
}
|
|
102911
102914
|
},
|
|
102912
102915
|
"required": [
|
|
102916
|
+
"createdAt",
|
|
102917
|
+
"updatedAt",
|
|
102913
102918
|
"_count"
|
|
102914
102919
|
]
|
|
102915
102920
|
}
|