@digipair/skill-keycloak 0.87.0 → 0.87.1

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.esm.js CHANGED
@@ -23907,14 +23907,14 @@ function indent(str, spaces) {
23907
23907
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23908
23908
  // match is required
23909
23909
  if (!match) {
23910
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23910
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
23911
23911
  v: nextMatch1
23912
23912
  };
23913
23913
  }
23914
23914
  var token = match.token, offset = match.offset;
23915
23915
  i1 += offset;
23916
23916
  if (token === " ") {
23917
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23917
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23918
23918
  }
23919
23919
  tokens1 = _to_consumable_array$3(tokens1).concat([
23920
23920
  token
@@ -23933,7 +23933,7 @@ function indent(str, spaces) {
23933
23933
  if (contextKeys.some(function(el) {
23934
23934
  return el.startsWith(name);
23935
23935
  })) {
23936
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23936
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23937
23937
  }
23938
23938
  if (dateTimeIdentifiers.some(function(el) {
23939
23939
  return el === name;
@@ -23952,9 +23952,9 @@ function indent(str, spaces) {
23952
23952
  if (dateTimeIdentifiers.some(function(el) {
23953
23953
  return el.startsWith(name);
23954
23954
  })) {
23955
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23955
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
23956
23956
  }
23957
- return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23957
+ return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
23958
23958
  v: nextMatch1
23959
23959
  };
23960
23960
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-keycloak",
3
- "version": "0.87.0",
3
+ "version": "0.87.1",
4
4
  "keywords": [
5
5
  "digipair",
6
6
  "service",
package/schema.fr.json CHANGED
@@ -104,6 +104,34 @@
104
104
  }
105
105
  },
106
106
  "required": ["name", "execute"]
107
+ },
108
+ "ContextParameter": {
109
+ "type": "object",
110
+ "tags": ["service"],
111
+ "summary": "Parametre de contexte",
112
+ "properties": {
113
+ "name": {
114
+ "summary": "Paramètre",
115
+ "type": "string"
116
+ },
117
+ "summary": {
118
+ "summary": "Nom",
119
+ "type": "string"
120
+ },
121
+ "required": {
122
+ "summary": "Requis",
123
+ "type": "boolean"
124
+ },
125
+ "schema": {
126
+ "summary": "Schema",
127
+ "type": "object"
128
+ },
129
+ "description": {
130
+ "summary": "Description",
131
+ "type": "string"
132
+ }
133
+ },
134
+ "required": ["name", "summary", "required", "schema"]
107
135
  }
108
136
  }
109
137
  },
@@ -350,6 +378,18 @@
350
378
  "schema": {
351
379
  "type": "string"
352
380
  }
381
+ },
382
+ {
383
+ "name": "context",
384
+ "summary": "Contexte",
385
+ "required": true,
386
+ "description": "Schema du contexte",
387
+ "schema": {
388
+ "type": "array",
389
+ "items": {
390
+ "$ref": "#/components/schemas/ContextParameter"
391
+ }
392
+ }
353
393
  }
354
394
  ],
355
395
  "parameters": [
package/schema.json CHANGED
@@ -104,6 +104,34 @@
104
104
  }
105
105
  },
106
106
  "required": ["name", "execute"]
107
+ },
108
+ "ContextParameter": {
109
+ "type": "object",
110
+ "tags": ["service"],
111
+ "summary": "Context Parameter",
112
+ "properties": {
113
+ "name": {
114
+ "summary": "Name",
115
+ "type": "string"
116
+ },
117
+ "summary": {
118
+ "summary": "Summary",
119
+ "type": "string"
120
+ },
121
+ "required": {
122
+ "summary": "Required",
123
+ "type": "boolean"
124
+ },
125
+ "schema": {
126
+ "summary": "Schema",
127
+ "type": "object"
128
+ },
129
+ "description": {
130
+ "summary": "Summary",
131
+ "type": "string"
132
+ }
133
+ },
134
+ "required": ["name", "summary", "required", "schema"]
107
135
  }
108
136
  }
109
137
  },
@@ -350,6 +378,18 @@
350
378
  "schema": {
351
379
  "type": "string"
352
380
  }
381
+ },
382
+ {
383
+ "name": "context",
384
+ "summary": "Context",
385
+ "required": true,
386
+ "description": "Context schema",
387
+ "schema": {
388
+ "type": "array",
389
+ "items": {
390
+ "$ref": "#/components/schemas/ContextParameter"
391
+ }
392
+ }
353
393
  }
354
394
  ],
355
395
  "parameters": [