@drax/identity-front 0.11.3 → 0.11.5
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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.11.
|
|
6
|
+
"version": "0.11.5",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"format": "prettier --write src/"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@drax/common-front": "^0.11.
|
|
29
|
-
"@drax/crud-share": "^0.11.
|
|
30
|
-
"@drax/identity-share": "^0.11.
|
|
28
|
+
"@drax/common-front": "^0.11.5",
|
|
29
|
+
"@drax/crud-share": "^0.11.5",
|
|
30
|
+
"@drax/identity-share": "^0.11.5"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@rushstack/eslint-patch": "^1.8.0",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"vite-plugin-dts": "^3.9.1",
|
|
50
50
|
"vitest": "^1.4.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "e67f10f0af29468c9d30f16135cfdbdff166d916"
|
|
53
53
|
}
|
|
@@ -1,32 +1,40 @@
|
|
|
1
1
|
const messages = {
|
|
2
2
|
en: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
userapikey: {
|
|
4
|
+
entity: 'ApiKey',
|
|
5
|
+
menu: 'ApiKey',
|
|
6
|
+
crud: 'Manage UserApiKey',
|
|
7
|
+
field:{
|
|
8
|
+
name: "Reference Name",
|
|
9
|
+
secret: "Secret",
|
|
10
|
+
ipv4: "Allowed IPV4",
|
|
11
|
+
ipv6: "Allowed IPV6",
|
|
12
|
+
user: "User",
|
|
13
|
+
createdAt: 'Created At',
|
|
14
|
+
createdBy: 'Created By',
|
|
15
|
+
},
|
|
6
16
|
secretWarning: "ApiKey only shows once. Keep the ApiKey securely.",
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
user: "User",
|
|
10
|
-
createdAt: 'Created At',
|
|
11
|
-
updating: "Updating API Key",
|
|
12
|
-
creating: "Creating API Key",
|
|
13
|
-
deleting: "Deleting API Key",
|
|
14
|
-
managing: 'Managing API Key',
|
|
17
|
+
created: 'ApiKey created successfully',
|
|
18
|
+
|
|
15
19
|
}
|
|
16
20
|
},
|
|
17
21
|
es: {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
22
|
+
userapikey:{
|
|
23
|
+
entity: 'ApiKey',
|
|
24
|
+
menu: 'ApiKey',
|
|
25
|
+
crud: 'Gestionar ApiKey',
|
|
26
|
+
field:{
|
|
27
|
+
name: "Nombre de referencia",
|
|
28
|
+
secret: "Secreto",
|
|
29
|
+
ipv4: "IPv4 permitidos",
|
|
30
|
+
ipv6: "IPv6 permitidos",
|
|
31
|
+
user: "Usuario",
|
|
32
|
+
createdAt: 'Fecha Creación',
|
|
33
|
+
createdBy: 'Creado por',
|
|
34
|
+
},
|
|
21
35
|
secretWarning: "La ApiKey solo se muestra una vez. Guarde la ApiKey de forma segura.",
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
user: "Usuario",
|
|
25
|
-
createdAt: 'Creado',
|
|
26
|
-
updating: "Actualizando API Key",
|
|
27
|
-
creating: "Creando API Key",
|
|
28
|
-
deleting: "Eliminando API Key",
|
|
29
|
-
managing: 'Administrando API Key',
|
|
36
|
+
created: 'ApiKey creado con éxito',
|
|
37
|
+
|
|
30
38
|
}
|
|
31
39
|
}
|
|
32
40
|
}
|
|
@@ -20,7 +20,7 @@ class UserApiKeyGqlProvider implements IUserApiKeyProvider {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
get gqlFields(){
|
|
23
|
-
return `id name secret ipv4 ipv6 createdAt updatedAt`
|
|
23
|
+
return `id name secret ipv4 ipv6 createdAt updatedAt createdBy`
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
async search(value: any): Promise<IUserApiKey[]> {
|