Skip to content

Commit 2176b17

Browse files
committed
Mise à jour de l'état de l'identité pour inclure SYNCED = 99 et PROCESSING = 50
1 parent 305869a commit 2176b17

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/composables/useIdentityStates.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ type useIdentityStateReturnType = {
55
};
66

77
export enum IdentityState {
8-
SYNCED = 3,
8+
SYNCED = 99,
9+
PROCESSING = 50,
910
TO_SYNC = 2,
1011
TO_VALIDATE = 1,
1112
UNKNOWN = 0,

src/constants/enums.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export enum IdentityState {
2-
SYNCED = 3,
2+
SYNCED = 99,
3+
PROCESSING = 50,
34
TO_SYNC = 2,
45
TO_VALIDATE = 1,
56
UNKNOWN = 0,

0 commit comments

Comments
 (0)