@digipair/skill-keycloak 0.32.1 → 0.32.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 +5 -5
- package/index.esm.js +5 -5
- package/libs/engine/src/lib/pins-settings.interface.d.ts +1 -7
- package/package.json +1 -1
- package/schema.en.json +13 -24
- package/schema.fr.json +13 -24
- package/schema.json +13 -24
package/index.cjs.js
CHANGED
@@ -23523,14 +23523,14 @@ function indent(str, spaces) {
|
|
23523
23523
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23524
23524
|
// match is required
|
23525
23525
|
if (!match) {
|
23526
|
-
return
|
23526
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
23527
23527
|
v: nextMatch1
|
23528
23528
|
};
|
23529
23529
|
}
|
23530
23530
|
var token = match.token, offset = match.offset;
|
23531
23531
|
i1 += offset;
|
23532
23532
|
if (token === " ") {
|
23533
|
-
return
|
23533
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23534
23534
|
}
|
23535
23535
|
tokens1 = _to_consumable_array$3(tokens1).concat([
|
23536
23536
|
token
|
@@ -23549,7 +23549,7 @@ function indent(str, spaces) {
|
|
23549
23549
|
if (contextKeys.some(function(el) {
|
23550
23550
|
return el.startsWith(name);
|
23551
23551
|
})) {
|
23552
|
-
return
|
23552
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23553
23553
|
}
|
23554
23554
|
if (dateTimeIdentifiers.some(function(el) {
|
23555
23555
|
return el === name;
|
@@ -23568,9 +23568,9 @@ function indent(str, spaces) {
|
|
23568
23568
|
if (dateTimeIdentifiers.some(function(el) {
|
23569
23569
|
return el.startsWith(name);
|
23570
23570
|
})) {
|
23571
|
-
return
|
23571
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
23572
23572
|
}
|
23573
|
-
return
|
23573
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
23574
23574
|
v: nextMatch1
|
23575
23575
|
};
|
23576
23576
|
};
|
package/index.esm.js
CHANGED
@@ -23494,14 +23494,14 @@ function indent(str, spaces) {
|
|
23494
23494
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
23495
23495
|
// match is required
|
23496
23496
|
if (!match) {
|
23497
|
-
return
|
23497
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
23498
23498
|
v: nextMatch1
|
23499
23499
|
};
|
23500
23500
|
}
|
23501
23501
|
var token = match.token, offset = match.offset;
|
23502
23502
|
i1 += offset;
|
23503
23503
|
if (token === " ") {
|
23504
|
-
return
|
23504
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
23505
23505
|
}
|
23506
23506
|
tokens1 = _to_consumable_array$3(tokens1).concat([
|
23507
23507
|
token
|
@@ -23520,7 +23520,7 @@ function indent(str, spaces) {
|
|
23520
23520
|
if (contextKeys.some(function(el) {
|
23521
23521
|
return el.startsWith(name);
|
23522
23522
|
})) {
|
23523
|
-
return
|
23523
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
23524
23524
|
}
|
23525
23525
|
if (dateTimeIdentifiers.some(function(el) {
|
23526
23526
|
return el === name;
|
@@ -23539,9 +23539,9 @@ function indent(str, spaces) {
|
|
23539
23539
|
if (dateTimeIdentifiers.some(function(el) {
|
23540
23540
|
return el.startsWith(name);
|
23541
23541
|
})) {
|
23542
|
-
return
|
23542
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
23543
23543
|
}
|
23544
|
-
return
|
23544
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
23545
23545
|
v: nextMatch1
|
23546
23546
|
};
|
23547
23547
|
};
|
@@ -1,14 +1,9 @@
|
|
1
1
|
export interface PinsSettings {
|
2
|
-
element: string;
|
3
|
-
name: string;
|
4
|
-
description: string;
|
5
2
|
library: string;
|
3
|
+
element: string;
|
6
4
|
properties?: {
|
7
5
|
[key: string]: any;
|
8
6
|
};
|
9
|
-
variables?: {
|
10
|
-
[key: string]: any;
|
11
|
-
};
|
12
7
|
conditions?: {
|
13
8
|
if?: boolean;
|
14
9
|
each?: any[];
|
@@ -17,5 +12,4 @@ export interface PinsSettings {
|
|
17
12
|
events?: {
|
18
13
|
[key: string]: PinsSettings[];
|
19
14
|
};
|
20
|
-
context?: any;
|
21
15
|
}
|
package/package.json
CHANGED
package/schema.en.json
CHANGED
@@ -86,23 +86,6 @@
|
|
86
86
|
},
|
87
87
|
"required": []
|
88
88
|
},
|
89
|
-
"SecuredTrigger": {
|
90
|
-
"type": "object",
|
91
|
-
"tags": ["boost"],
|
92
|
-
"summary": "Trigger",
|
93
|
-
"properties": {
|
94
|
-
"name": {
|
95
|
-
"type": "string"
|
96
|
-
},
|
97
|
-
"selector": {
|
98
|
-
"type": "string"
|
99
|
-
},
|
100
|
-
"url": {
|
101
|
-
"type": "string"
|
102
|
-
}
|
103
|
-
},
|
104
|
-
"required": []
|
105
|
-
},
|
106
89
|
"SecuredStep": {
|
107
90
|
"type": "object",
|
108
91
|
"tags": ["boost"],
|
@@ -330,15 +313,21 @@
|
|
330
313
|
"tags": ["boost", "service"],
|
331
314
|
"metadata": [
|
332
315
|
{
|
333
|
-
"name": "
|
334
|
-
"summary": "
|
316
|
+
"name": "boostSelector",
|
317
|
+
"summary": "Selector",
|
335
318
|
"required": true,
|
336
|
-
"description": "
|
319
|
+
"description": "CSS selector",
|
337
320
|
"schema": {
|
338
|
-
"type": "
|
339
|
-
|
340
|
-
|
341
|
-
|
321
|
+
"type": "string"
|
322
|
+
}
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"name": "boostUrl",
|
326
|
+
"summary": "RegEx Url",
|
327
|
+
"required": true,
|
328
|
+
"description": "RegEx url",
|
329
|
+
"schema": {
|
330
|
+
"type": "string"
|
342
331
|
}
|
343
332
|
}
|
344
333
|
],
|
package/schema.fr.json
CHANGED
@@ -86,23 +86,6 @@
|
|
86
86
|
},
|
87
87
|
"required": []
|
88
88
|
},
|
89
|
-
"SecuredTrigger": {
|
90
|
-
"type": "object",
|
91
|
-
"tags": ["boost"],
|
92
|
-
"summary": "Déclencheur",
|
93
|
-
"properties": {
|
94
|
-
"name": {
|
95
|
-
"type": "string"
|
96
|
-
},
|
97
|
-
"selector": {
|
98
|
-
"type": "string"
|
99
|
-
},
|
100
|
-
"url": {
|
101
|
-
"type": "string"
|
102
|
-
}
|
103
|
-
},
|
104
|
-
"required": []
|
105
|
-
},
|
106
89
|
"SecuredStep": {
|
107
90
|
"type": "object",
|
108
91
|
"tags": ["boost"],
|
@@ -330,15 +313,21 @@
|
|
330
313
|
"tags": ["boost", "service"],
|
331
314
|
"metadata": [
|
332
315
|
{
|
333
|
-
"name": "
|
334
|
-
"summary": "
|
316
|
+
"name": "boostSelector",
|
317
|
+
"summary": "Sélecteur CSS du déclencheur",
|
335
318
|
"required": true,
|
336
|
-
"description": "
|
319
|
+
"description": "Sélecteur CSS du déclencheur",
|
337
320
|
"schema": {
|
338
|
-
"type": "
|
339
|
-
|
340
|
-
|
341
|
-
|
321
|
+
"type": "string"
|
322
|
+
}
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"name": "boostUrl",
|
326
|
+
"summary": "Correspondance URL",
|
327
|
+
"required": false,
|
328
|
+
"description": "Correspondance URL du déclencheur",
|
329
|
+
"schema": {
|
330
|
+
"type": "string"
|
342
331
|
}
|
343
332
|
}
|
344
333
|
],
|
package/schema.json
CHANGED
@@ -86,23 +86,6 @@
|
|
86
86
|
},
|
87
87
|
"required": []
|
88
88
|
},
|
89
|
-
"SecuredTrigger": {
|
90
|
-
"type": "object",
|
91
|
-
"tags": ["boost"],
|
92
|
-
"summary": "Trigger",
|
93
|
-
"properties": {
|
94
|
-
"name": {
|
95
|
-
"type": "string"
|
96
|
-
},
|
97
|
-
"selector": {
|
98
|
-
"type": "string"
|
99
|
-
},
|
100
|
-
"url": {
|
101
|
-
"type": "string"
|
102
|
-
}
|
103
|
-
},
|
104
|
-
"required": []
|
105
|
-
},
|
106
89
|
"SecuredStep": {
|
107
90
|
"type": "object",
|
108
91
|
"tags": ["boost"],
|
@@ -330,15 +313,21 @@
|
|
330
313
|
"tags": ["boost", "service"],
|
331
314
|
"metadata": [
|
332
315
|
{
|
333
|
-
"name": "
|
334
|
-
"summary": "
|
316
|
+
"name": "boostSelector",
|
317
|
+
"summary": "Selector",
|
335
318
|
"required": true,
|
336
|
-
"description": "
|
319
|
+
"description": "CSS selector",
|
337
320
|
"schema": {
|
338
|
-
"type": "
|
339
|
-
|
340
|
-
|
341
|
-
|
321
|
+
"type": "string"
|
322
|
+
}
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"name": "boostUrl",
|
326
|
+
"summary": "RegEx Url",
|
327
|
+
"required": true,
|
328
|
+
"description": "RegEx url",
|
329
|
+
"schema": {
|
330
|
+
"type": "string"
|
342
331
|
}
|
343
332
|
}
|
344
333
|
],
|