@live-change/user-frontend 0.9.169 → 0.9.173
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/front/src/sign/SignInEmail.vue +16 -6
- package/package.json +26 -26
- package/.nx/cache/file-map.json +0 -521
- package/.nx/cache/nx_files.nxt +0 -0
- package/.nx/cache/project-graph.json +0 -6
|
@@ -3,8 +3,12 @@
|
|
|
3
3
|
<div class="bg-surface-0 dark:bg-surface-900 p-6 shadow rounded-border">
|
|
4
4
|
|
|
5
5
|
<div class="text-center mb-8">
|
|
6
|
-
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
7
|
-
|
|
6
|
+
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
7
|
+
{{ t('auth.welcomeBack') }}
|
|
8
|
+
</div>
|
|
9
|
+
<span class="text-surface-600 dark:text-surface-200 font-medium leading-normal">
|
|
10
|
+
{{ t('auth.dontHaveAccount') }}
|
|
11
|
+
</span>
|
|
8
12
|
<router-link :to="{ name: 'user:signUpEmail' }"
|
|
9
13
|
class="font-medium no-underline ml-2 text-blue-500 cursor-pointer">
|
|
10
14
|
{{ t('auth.createToday') }}</router-link>
|
|
@@ -26,7 +30,9 @@
|
|
|
26
30
|
</div>
|
|
27
31
|
|
|
28
32
|
<div class="p-field mb-4">
|
|
29
|
-
<label for="password" class="block text-surface-900 dark:text-surface-0 font-medium mb-2">
|
|
33
|
+
<label for="password" class="block text-surface-900 dark:text-surface-0 font-medium mb-2">
|
|
34
|
+
{{ t('auth.passwordOptional') }}
|
|
35
|
+
</label>
|
|
30
36
|
<Password id="password" class="w-full" inputClass="w-full" toggleMask :feedback="false"
|
|
31
37
|
aria-describedby="password-help" :invalid="data.passwordHashError"
|
|
32
38
|
v-model="data.passwordHash" />
|
|
@@ -52,14 +58,18 @@
|
|
|
52
58
|
</command-form>
|
|
53
59
|
|
|
54
60
|
<Divider v-if="availableAccountTypes.length > 0" align="center" class="my-6">
|
|
55
|
-
<span class="text-surface-600 dark:text-surface-200 font-normal text-sm">
|
|
61
|
+
<span class="text-surface-600 dark:text-surface-200 font-normal text-sm">
|
|
62
|
+
{{ t('common.or') }}
|
|
63
|
+
</span>
|
|
56
64
|
</Divider>
|
|
57
65
|
|
|
58
66
|
<router-link v-for="accountType in availableAccountTypes"
|
|
59
67
|
:to="accountType.connectRoute"
|
|
60
68
|
class="no-underline">
|
|
61
69
|
<Button
|
|
62
|
-
:label="t('auth.signInWith', {
|
|
70
|
+
:label="t('auth.signInWith', {
|
|
71
|
+
provider: accountType.accountType[0].toUpperCase() + accountType.accountType.slice(1)
|
|
72
|
+
})"
|
|
63
73
|
:icon="`pi pi-${accountType.accountType}`"
|
|
64
74
|
class="w-full p-button-secondary mb-1"
|
|
65
75
|
/>
|
|
@@ -88,7 +98,7 @@
|
|
|
88
98
|
import { useI18n } from 'vue-i18n'
|
|
89
99
|
const { t } = useI18n()
|
|
90
100
|
|
|
91
|
-
import { getContactTypes, getAccountTypes} from '../connected/connected.js'
|
|
101
|
+
import { getContactTypes, getAccountTypes } from '../connected/connected.js'
|
|
92
102
|
const contactsTypes = getContactTypes()
|
|
93
103
|
const accountTypes = getAccountTypes()
|
|
94
104
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/user-frontend",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.173",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "tsx --inspect --expose-gc server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "tsx server/start.js localDev --enableSessions --initScript ./init.js --dbAccess",
|
|
@@ -36,29 +36,29 @@
|
|
|
36
36
|
},
|
|
37
37
|
"type": "module",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@live-change/cli": "^0.9.
|
|
40
|
-
"@live-change/dao": "^0.9.
|
|
41
|
-
"@live-change/dao-vue3": "^0.9.
|
|
42
|
-
"@live-change/dao-websocket": "^0.9.
|
|
43
|
-
"@live-change/email-service": "^0.9.
|
|
44
|
-
"@live-change/framework": "^0.9.
|
|
45
|
-
"@live-change/identicon-service": "^0.9.
|
|
46
|
-
"@live-change/image-frontend": "^0.9.
|
|
47
|
-
"@live-change/message-authentication-service": "^0.9.
|
|
48
|
-
"@live-change/notification-service": "^0.9.
|
|
49
|
-
"@live-change/password-authentication-service": "^0.9.
|
|
50
|
-
"@live-change/pattern": "^0.9.
|
|
51
|
-
"@live-change/secret-code-service": "^0.9.
|
|
52
|
-
"@live-change/secret-link-service": "^0.9.
|
|
53
|
-
"@live-change/security-frontend": "^0.9.
|
|
54
|
-
"@live-change/security-service": "^0.9.
|
|
55
|
-
"@live-change/session-service": "^0.9.
|
|
56
|
-
"@live-change/timer-service": "^0.9.
|
|
57
|
-
"@live-change/upload-service": "^0.9.
|
|
58
|
-
"@live-change/user-identification-service": "^0.9.
|
|
59
|
-
"@live-change/user-service": "^0.9.
|
|
60
|
-
"@live-change/vue3-components": "^0.9.
|
|
61
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
39
|
+
"@live-change/cli": "^0.9.173",
|
|
40
|
+
"@live-change/dao": "^0.9.173",
|
|
41
|
+
"@live-change/dao-vue3": "^0.9.173",
|
|
42
|
+
"@live-change/dao-websocket": "^0.9.173",
|
|
43
|
+
"@live-change/email-service": "^0.9.173",
|
|
44
|
+
"@live-change/framework": "^0.9.173",
|
|
45
|
+
"@live-change/identicon-service": "^0.9.173",
|
|
46
|
+
"@live-change/image-frontend": "^0.9.173",
|
|
47
|
+
"@live-change/message-authentication-service": "^0.9.173",
|
|
48
|
+
"@live-change/notification-service": "^0.9.173",
|
|
49
|
+
"@live-change/password-authentication-service": "^0.9.173",
|
|
50
|
+
"@live-change/pattern": "^0.9.173",
|
|
51
|
+
"@live-change/secret-code-service": "^0.9.173",
|
|
52
|
+
"@live-change/secret-link-service": "^0.9.173",
|
|
53
|
+
"@live-change/security-frontend": "^0.9.173",
|
|
54
|
+
"@live-change/security-service": "^0.9.173",
|
|
55
|
+
"@live-change/session-service": "^0.9.173",
|
|
56
|
+
"@live-change/timer-service": "^0.9.173",
|
|
57
|
+
"@live-change/upload-service": "^0.9.173",
|
|
58
|
+
"@live-change/user-identification-service": "^0.9.173",
|
|
59
|
+
"@live-change/user-service": "^0.9.173",
|
|
60
|
+
"@live-change/vue3-components": "^0.9.173",
|
|
61
|
+
"@live-change/vue3-ssr": "^0.9.173",
|
|
62
62
|
"@vueuse/core": "^12.3.0",
|
|
63
63
|
"codeceptjs-assert": "^0.0.5",
|
|
64
64
|
"codeceptjs-video-helper": "0.1.3",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"wtfnode": "^0.9.1"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@live-change/codeceptjs-helper": "^0.9.
|
|
82
|
+
"@live-change/codeceptjs-helper": "^0.9.173",
|
|
83
83
|
"codeceptjs": "^3.6.10",
|
|
84
84
|
"generate-password": "1.7.1",
|
|
85
85
|
"playwright": "1.49.1",
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
91
91
|
"license": "BSD-3-Clause",
|
|
92
92
|
"description": "",
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "1d70f7baf204d8f9848f53f5023db91016c6093f"
|
|
94
94
|
}
|
package/.nx/cache/file-map.json
DELETED
|
@@ -1,521 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "6.0",
|
|
3
|
-
"nxVersion": "18.0.6",
|
|
4
|
-
"deps": {
|
|
5
|
-
"@live-change/cli": "0.8.112",
|
|
6
|
-
"@live-change/dao": "0.8.112",
|
|
7
|
-
"@live-change/dao-vue3": "0.8.112",
|
|
8
|
-
"@live-change/dao-websocket": "0.8.112",
|
|
9
|
-
"@live-change/email-service": "0.8.112",
|
|
10
|
-
"@live-change/framework": "0.8.112",
|
|
11
|
-
"@live-change/identicon-service": "0.8.112",
|
|
12
|
-
"@live-change/image-frontend": "0.8.112",
|
|
13
|
-
"@live-change/message-authentication-service": "0.8.112",
|
|
14
|
-
"@live-change/notification-service": "0.8.112",
|
|
15
|
-
"@live-change/password-authentication-service": "0.8.112",
|
|
16
|
-
"@live-change/pattern": "0.8.112",
|
|
17
|
-
"@live-change/secret-code-service": "0.8.112",
|
|
18
|
-
"@live-change/secret-link-service": "0.8.112",
|
|
19
|
-
"@live-change/security-frontend": "0.8.112",
|
|
20
|
-
"@live-change/security-service": "0.8.112",
|
|
21
|
-
"@live-change/session-service": "0.8.112",
|
|
22
|
-
"@live-change/timer-service": "0.8.112",
|
|
23
|
-
"@live-change/upload-service": "0.8.112",
|
|
24
|
-
"@live-change/user-identification-service": "0.8.112",
|
|
25
|
-
"@live-change/user-service": "0.8.112",
|
|
26
|
-
"@live-change/vue3-components": "0.8.112",
|
|
27
|
-
"@live-change/vue3-ssr": "0.8.112",
|
|
28
|
-
"@vueuse/core": "^10.11.0",
|
|
29
|
-
"codeceptjs-assert": "^0.0.5",
|
|
30
|
-
"codeceptjs-video-helper": "0.1.3",
|
|
31
|
-
"compression": "^1.7.4",
|
|
32
|
-
"cross-env": "^7.0.3",
|
|
33
|
-
"get-port-sync": "1.0.1",
|
|
34
|
-
"pluralize": "^8.0.0",
|
|
35
|
-
"rollup-plugin-node-builtins": "^2.1.2",
|
|
36
|
-
"rollup-plugin-visualizer": "5.12.0",
|
|
37
|
-
"sass": "^1.66.1",
|
|
38
|
-
"serialize-javascript": "^6.0.2",
|
|
39
|
-
"serve-static": "^1.15.0",
|
|
40
|
-
"unique-names-generator": "4.7.1",
|
|
41
|
-
"v-shared-element": "3.1.1",
|
|
42
|
-
"vue-meta": "^3.0.0-alpha.9",
|
|
43
|
-
"vue-router": "^4.3.3",
|
|
44
|
-
"vue3-scroll-border": "0.1.6",
|
|
45
|
-
"wtfnode": "^0.9.1",
|
|
46
|
-
"@live-change/codeceptjs-helper": "0.8.112",
|
|
47
|
-
"codeceptjs": "^3.6.5",
|
|
48
|
-
"generate-password": "1.7.1",
|
|
49
|
-
"playwright": "^1.41.2",
|
|
50
|
-
"random-profile-generator": "^2.3.0",
|
|
51
|
-
"txtgen": "^3.0.6",
|
|
52
|
-
"webdriverio": "^8.40.2"
|
|
53
|
-
},
|
|
54
|
-
"pathMappings": {},
|
|
55
|
-
"nxJsonPlugins": [],
|
|
56
|
-
"fileMap": {
|
|
57
|
-
"projectFileMap": {},
|
|
58
|
-
"nonProjectFiles": [
|
|
59
|
-
{
|
|
60
|
-
"file": ".gitignore",
|
|
61
|
-
"hash": "15992884437165041643"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"file": "LICENSE",
|
|
65
|
-
"hash": "10221119794387200971"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"file": "e2e/codecept.conf.js",
|
|
69
|
-
"hash": "13791327886840311692"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"file": "e2e/connectEmailCode.test.js",
|
|
73
|
-
"hash": "14206678043412105832"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"file": "e2e/connectEmailLink.test.js",
|
|
77
|
-
"hash": "17799821280936414434"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"file": "e2e/delete.test.js",
|
|
81
|
-
"hash": "16996728991098971051"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"file": "e2e/disconnectEmail.test.js",
|
|
85
|
-
"hash": "7754024349469098539"
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"file": "e2e/resetPasswordWithEmailCode.test.js",
|
|
89
|
-
"hash": "17955367592850168056"
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"file": "e2e/resetPasswordWithEmailLink.test.js",
|
|
93
|
-
"hash": "14350360422856155305"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"file": "e2e/setPassword.test.js",
|
|
97
|
-
"hash": "13938231878418789263"
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"file": "e2e/signInEmailCode.test.js",
|
|
101
|
-
"hash": "17911983529202490125"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"file": "e2e/signInEmailLink.test.js",
|
|
105
|
-
"hash": "3290710928013893290"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"file": "e2e/signInEmailPassword.test.js",
|
|
109
|
-
"hash": "2306938672039699183"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"file": "e2e/signOut.test.js",
|
|
113
|
-
"hash": "1617557249822375178"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"file": "e2e/signUpEmailCode.test.js",
|
|
117
|
-
"hash": "1556060126188311680"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"file": "e2e/signUpEmailLink.test.js",
|
|
121
|
-
"hash": "5701793551029085138"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"file": "e2e/steps.d.ts",
|
|
125
|
-
"hash": "11325738020082554080"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"file": "e2e/steps_file.js",
|
|
129
|
-
"hash": "2840236016458073038"
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"file": "front/index.html",
|
|
133
|
-
"hash": "14592446545376477605"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"file": "front/locales/en.js",
|
|
137
|
-
"hash": "8992398117446253297"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"file": "front/locales/en.json",
|
|
141
|
-
"hash": "17112222239289716263"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"file": "front/public/favicon.ico",
|
|
145
|
-
"hash": "11176796980188620760"
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"file": "front/public/images/empty-photo.svg",
|
|
149
|
-
"hash": "9393138513813369674"
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"file": "front/public/images/empty-user-photo.svg",
|
|
153
|
-
"hash": "17548039285248668212"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"file": "front/public/images/flag_placeholder.png",
|
|
157
|
-
"hash": "13349885107360637643"
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"file": "front/public/images/flags_responsive.png",
|
|
161
|
-
"hash": "16939768183729769737"
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"file": "front/public/images/logo.svg",
|
|
165
|
-
"hash": "5934164668360941413"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"file": "front/public/images/logo128.png",
|
|
169
|
-
"hash": "4924117807669085214"
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
"file": "front/src/App.vue",
|
|
173
|
-
"hash": "2987862695029806083"
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
"file": "front/src/Index.vue",
|
|
177
|
-
"hash": "16358144147744436235"
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"file": "front/src/NavBar.vue",
|
|
181
|
-
"hash": "9986696538250863687"
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"file": "front/src/SettingsTabs.vue",
|
|
185
|
-
"hash": "2781803486651533364"
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"file": "front/src/config.js",
|
|
189
|
-
"hash": "4208481022464725661"
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"file": "front/src/connected/ConnectEmail.vue",
|
|
193
|
-
"hash": "6047225672608740304"
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"file": "front/src/connected/ConnectFinished.vue",
|
|
197
|
-
"hash": "4649707402414653745"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"file": "front/src/connected/ConnectPhone.vue",
|
|
201
|
-
"hash": "16244116470118199184"
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
"file": "front/src/connected/Connected.vue",
|
|
205
|
-
"hash": "12062313542818824169"
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"file": "front/src/connected/connected.js",
|
|
209
|
-
"hash": "16115549822272991576"
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
"file": "front/src/connected/routes.js",
|
|
213
|
-
"hash": "2551528109489035833"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"file": "front/src/delete/Delete.vue",
|
|
217
|
-
"hash": "16143727771050756396"
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
"file": "front/src/delete/DeleteFeedbackSent.vue",
|
|
221
|
-
"hash": "15170493791841025013"
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
"file": "front/src/delete/DeleteFinished.vue",
|
|
225
|
-
"hash": "16041030575966622616"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"file": "front/src/delete/routes.js",
|
|
229
|
-
"hash": "9357303650235381559"
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"file": "front/src/entry-client.js",
|
|
233
|
-
"hash": "1218837904372604167"
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"file": "front/src/entry-server.js",
|
|
237
|
-
"hash": "406370987563099630"
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"file": "front/src/google-access/GoogleAccess.vue",
|
|
241
|
-
"hash": "9529831848748475095"
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"file": "front/src/google-access/GoogleAccessGained.vue",
|
|
245
|
-
"hash": "4309063406044103630"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"file": "front/src/google-access/routes.js",
|
|
249
|
-
"hash": "6244550399322220890"
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
"file": "front/src/identification/IdentificationSettings.vue",
|
|
253
|
-
"hash": "6075780674193448163"
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"file": "front/src/identification/ObjectIdentification.vue",
|
|
257
|
-
"hash": "10686990170124591726"
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
"file": "front/src/identification/UserIdentification.vue",
|
|
261
|
-
"hash": "1431762882689207915"
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
"file": "front/src/identification/routes.js",
|
|
265
|
-
"hash": "4602874923691672825"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"file": "front/src/locale/LocaleSettings.vue",
|
|
269
|
-
"hash": "10243743732240857715"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"file": "front/src/locale/routes.js",
|
|
273
|
-
"hash": "5875032803261464977"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"file": "front/src/message-auth/MessageLink.vue",
|
|
277
|
-
"hash": "10909658230086475069"
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"file": "front/src/message-auth/MessageSent.vue",
|
|
281
|
-
"hash": "12217587488799014941"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
"file": "front/src/message-auth/email/ConnectEmail.vue",
|
|
285
|
-
"hash": "15999102291271043628"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"file": "front/src/message-auth/email/ResetPasswordEmail.vue",
|
|
289
|
-
"hash": "14386986193601895680"
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
"file": "front/src/message-auth/email/SignInEmail.vue",
|
|
293
|
-
"hash": "4205333032756396662"
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"file": "front/src/message-auth/email/SignUpEmail.vue",
|
|
297
|
-
"hash": "12279709009918850463"
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
"file": "front/src/message-auth/routes.js",
|
|
301
|
-
"hash": "13711278663053249645"
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"file": "front/src/message-auth/sms/ConnectSms.vue",
|
|
305
|
-
"hash": "6232771906744126156"
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"file": "front/src/message-auth/sms/ResetPasswordSms.vue",
|
|
309
|
-
"hash": "11765209526602366399"
|
|
310
|
-
},
|
|
311
|
-
{
|
|
312
|
-
"file": "front/src/message-auth/sms/SignInSms.vue",
|
|
313
|
-
"hash": "11869492728457312832"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"file": "front/src/message-auth/sms/SignUpSms.vue",
|
|
317
|
-
"hash": "15934053910402828436"
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
"file": "front/src/nav/UserIcon.vue",
|
|
321
|
-
"hash": "3324270693059299280"
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"file": "front/src/nav/UserMenu.vue",
|
|
325
|
-
"hash": "10869451801798490799"
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"file": "front/src/notifications/NotificationButtons.vue",
|
|
329
|
-
"hash": "13046655156829157134"
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
"file": "front/src/notifications/NotificationListPage.vue",
|
|
333
|
-
"hash": "13999099511070199112"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"file": "front/src/notifications/NotificationsIcon.vue",
|
|
337
|
-
"hash": "4283053980969744770"
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
"file": "front/src/notifications/NotificationsList.vue",
|
|
341
|
-
"hash": "5494707014590733486"
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
"file": "front/src/notifications/NotificationsSettings.vue",
|
|
345
|
-
"hash": "7726744805095021051"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"file": "front/src/notifications/SimpleNotification.vue",
|
|
349
|
-
"hash": "1460799705779112471"
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
"file": "front/src/notifications/TestNotification.vue",
|
|
353
|
-
"hash": "10003299750545373255"
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"file": "front/src/notifications/UnknownNotification.vue",
|
|
357
|
-
"hash": "16830026881025224249"
|
|
358
|
-
},
|
|
359
|
-
{
|
|
360
|
-
"file": "front/src/notifications/notificationTypes.js",
|
|
361
|
-
"hash": "3146154522033447192"
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"file": "front/src/notifications/routes.js",
|
|
365
|
-
"hash": "1355903559734364427"
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"file": "front/src/password/ChangePassword.vue",
|
|
369
|
-
"hash": "8778073854643736454"
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"file": "front/src/password/ChangePasswordFinished.vue",
|
|
373
|
-
"hash": "2576976231513519428"
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"file": "front/src/password/Password.vue",
|
|
377
|
-
"hash": "4081076810396580977"
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
"file": "front/src/password/ResetPassword.vue",
|
|
381
|
-
"hash": "5559350129523550286"
|
|
382
|
-
},
|
|
383
|
-
{
|
|
384
|
-
"file": "front/src/password/ResetPasswordFinished.vue",
|
|
385
|
-
"hash": "8678912109356088895"
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"file": "front/src/password/ResetPasswordForm.vue",
|
|
389
|
-
"hash": "11489334805525493482"
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
"file": "front/src/password/routes.js",
|
|
393
|
-
"hash": "16000852597236211445"
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"file": "front/src/phone/PhoneInput.vue",
|
|
397
|
-
"hash": "11924598677581069223"
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"file": "front/src/phone/phoneNumber.js",
|
|
401
|
-
"hash": "16743730754837962672"
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"file": "front/src/router.js",
|
|
405
|
-
"hash": "6232756401755977821"
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
"file": "front/src/settings/Settings.vue",
|
|
409
|
-
"hash": "4210271156015156233"
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
"file": "front/src/settings/SettingsIndex.vue",
|
|
413
|
-
"hash": "3585943316489919880"
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"file": "front/src/settings/SettingsMenu.vue",
|
|
417
|
-
"hash": "2800442302615416453"
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"file": "front/src/settings/SettingsMenuItem.vue",
|
|
421
|
-
"hash": "2209428044778557264"
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"file": "front/src/sign/GoogleAuth.vue",
|
|
425
|
-
"hash": "9151672834588363056"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"file": "front/src/sign/GoogleAuthReturn.vue",
|
|
429
|
-
"hash": "11166765015834314072"
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"file": "front/src/sign/LinkedinAuth.vue",
|
|
433
|
-
"hash": "9567465782490495596"
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"file": "front/src/sign/LinkedinAuthReturn.vue",
|
|
437
|
-
"hash": "9428875039032707697"
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
"file": "front/src/sign/SignInEmail.vue",
|
|
441
|
-
"hash": "5473411252952204050"
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
"file": "front/src/sign/SignInFinished.vue",
|
|
445
|
-
"hash": "11444495191715209127"
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
"file": "front/src/sign/SignOut.vue",
|
|
449
|
-
"hash": "3093170045439104802"
|
|
450
|
-
},
|
|
451
|
-
{
|
|
452
|
-
"file": "front/src/sign/SignOutFinished.vue",
|
|
453
|
-
"hash": "15351856180816255084"
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
"file": "front/src/sign/SignUpEmail.vue",
|
|
457
|
-
"hash": "15685195918653019588"
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
"file": "front/src/sign/SignUpFinished.vue",
|
|
461
|
-
"hash": "7129131799285242853"
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
"file": "front/src/sign/routes.js",
|
|
465
|
-
"hash": "1023097621604756838"
|
|
466
|
-
},
|
|
467
|
-
{
|
|
468
|
-
"file": "front/src/utils/countries.js",
|
|
469
|
-
"hash": "6201169448865628496"
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
"file": "front/src/utils/flags.scss",
|
|
473
|
-
"hash": "17399308762652936405"
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
"file": "front/src/utils/googleAuth.js",
|
|
477
|
-
"hash": "10682927559112869908"
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
"file": "front/src/utils/linkedinAuth.js",
|
|
481
|
-
"hash": "16435105867959168771"
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
"file": "front/vite.config.js",
|
|
485
|
-
"hash": "4207480426880236517"
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"file": "index.js",
|
|
489
|
-
"hash": "18356623881992972581"
|
|
490
|
-
},
|
|
491
|
-
{
|
|
492
|
-
"file": "package.json",
|
|
493
|
-
"hash": "7911652222995749404"
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
"file": "server/app.config.js",
|
|
497
|
-
"hash": "12086777353628638930"
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
"file": "server/init-functions.js",
|
|
501
|
-
"hash": "7882306578776486201"
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
"file": "server/init.js",
|
|
505
|
-
"hash": "17716626010115562313"
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"file": "server/security.config.js",
|
|
509
|
-
"hash": "6483730663450187822"
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"file": "server/services.list.js",
|
|
513
|
-
"hash": "16936713421708738629"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"file": "server/start.js",
|
|
517
|
-
"hash": "12152681523604331573"
|
|
518
|
-
}
|
|
519
|
-
]
|
|
520
|
-
}
|
|
521
|
-
}
|
package/.nx/cache/nx_files.nxt
DELETED
|
Binary file
|