@digipair/skill-keycloak 0.7.0 → 0.7.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/index.cjs.js +7168 -808
- package/index.esm.js +34014 -0
- package/package.json +2 -3
- package/schema.json +74 -35
package/package.json
CHANGED
package/schema.json
CHANGED
|
@@ -26,52 +26,40 @@
|
|
|
26
26
|
"$ref": "https://www.pinser.world/schemas/pinsSettings"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "secured",
|
|
32
|
+
"summary": "Sécurisé",
|
|
33
|
+
"required": false,
|
|
34
|
+
"description": "Sécurise l'exécution via un token Keycloak",
|
|
35
|
+
"schema": {
|
|
36
|
+
"type": "boolean"
|
|
37
|
+
}
|
|
29
38
|
}
|
|
30
39
|
]
|
|
31
40
|
}
|
|
32
41
|
},
|
|
33
|
-
"/
|
|
42
|
+
"/login": {
|
|
34
43
|
"post": {
|
|
35
|
-
"summary": "
|
|
36
|
-
"description": "
|
|
44
|
+
"summary": "Identification de l'utilisateur",
|
|
45
|
+
"description": "Identification de l'utilisateur sur le site internet via le serveur Keycloak",
|
|
37
46
|
"tags": ["web"],
|
|
38
47
|
"metadata": [],
|
|
39
|
-
"parameters": [
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
]
|
|
48
|
+
"parameters": []
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"/logout": {
|
|
52
|
+
"post": {
|
|
53
|
+
"summary": "Désidentification de l'utilisateur",
|
|
54
|
+
"description": "Désidentification de l'utilisateur sur le site internet via le serveur Keycloak",
|
|
55
|
+
"tags": ["web"],
|
|
56
|
+
"metadata": [],
|
|
57
|
+
"parameters": []
|
|
50
58
|
}
|
|
51
59
|
}
|
|
52
60
|
},
|
|
53
61
|
"components": {
|
|
54
|
-
"schemas": {
|
|
55
|
-
"dataAttribute": {
|
|
56
|
-
"tags": ["service"],
|
|
57
|
-
"summary": "Paramètre",
|
|
58
|
-
"type": "object",
|
|
59
|
-
"properties": {
|
|
60
|
-
"name": {
|
|
61
|
-
"type": "string",
|
|
62
|
-
"summary": "Nom"
|
|
63
|
-
},
|
|
64
|
-
"value": {
|
|
65
|
-
"summary": "Valeur",
|
|
66
|
-
"type": "array",
|
|
67
|
-
"items": {
|
|
68
|
-
"$ref": "https://www.pinser.world/schemas/pinsSettings"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
"required": ["name", "value"]
|
|
73
|
-
}
|
|
74
|
-
}
|
|
62
|
+
"schemas": {}
|
|
75
63
|
},
|
|
76
64
|
"x-scene-blocks": {
|
|
77
65
|
"/page": {
|
|
@@ -128,6 +116,33 @@
|
|
|
128
116
|
"type": "string"
|
|
129
117
|
}
|
|
130
118
|
},
|
|
119
|
+
{
|
|
120
|
+
"name": "url",
|
|
121
|
+
"summary": "Adresse du Keycloak",
|
|
122
|
+
"required": false,
|
|
123
|
+
"description": "Adresse du serveur Keycloak",
|
|
124
|
+
"schema": {
|
|
125
|
+
"type": "string"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "realm",
|
|
130
|
+
"summary": "Realm",
|
|
131
|
+
"required": false,
|
|
132
|
+
"description": "Realm du serveur Keycloak",
|
|
133
|
+
"schema": {
|
|
134
|
+
"type": "string"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "clientId",
|
|
139
|
+
"summary": "Client ID",
|
|
140
|
+
"required": false,
|
|
141
|
+
"description": "Client ID du serveur Keycloak",
|
|
142
|
+
"schema": {
|
|
143
|
+
"type": "string"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
131
146
|
{
|
|
132
147
|
"name": "factoryInitialize",
|
|
133
148
|
"summary": "Lors de la l'initialisation coté factory",
|
|
@@ -163,6 +178,30 @@
|
|
|
163
178
|
"$ref": "https://www.pinser.world/schemas/pinsSettings"
|
|
164
179
|
}
|
|
165
180
|
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "unlogged",
|
|
184
|
+
"summary": "Si l'utilisateur n'est pas identifié",
|
|
185
|
+
"required": false,
|
|
186
|
+
"description": "Action déclenchée lorsque la page est chargée coté navigateur si l'utilisateur n'est pas identifié",
|
|
187
|
+
"schema": {
|
|
188
|
+
"type": "array",
|
|
189
|
+
"items": {
|
|
190
|
+
"$ref": "https://www.pinser.world/schemas/pinsSettings"
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"name": "logged",
|
|
196
|
+
"summary": "Si l'utilisateur est identifié",
|
|
197
|
+
"required": false,
|
|
198
|
+
"description": "Action déclenchée lorsque la page est chargée coté navigateur si l'utilisateur est identifié",
|
|
199
|
+
"schema": {
|
|
200
|
+
"type": "array",
|
|
201
|
+
"items": {
|
|
202
|
+
"$ref": "https://www.pinser.world/schemas/pinsSettings"
|
|
203
|
+
}
|
|
204
|
+
}
|
|
166
205
|
}
|
|
167
206
|
]
|
|
168
207
|
}
|