@digipair/skill-web 0.25.6 → 0.26.0

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 CHANGED
@@ -23511,14 +23511,14 @@ function indent(str, spaces) {
23511
23511
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23512
23512
  // match is required
23513
23513
  if (!match) {
23514
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23514
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23515
23515
  v: nextMatch1
23516
23516
  };
23517
23517
  }
23518
23518
  var token = match.token, offset = match.offset;
23519
23519
  i1 += offset;
23520
23520
  if (token === " ") {
23521
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23521
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23522
23522
  }
23523
23523
  tokens1 = _to_consumable_array$1(tokens1).concat([
23524
23524
  token
@@ -23537,7 +23537,7 @@ function indent(str, spaces) {
23537
23537
  if (contextKeys.some(function(el) {
23538
23538
  return el.startsWith(name);
23539
23539
  })) {
23540
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23540
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23541
23541
  }
23542
23542
  if (dateTimeIdentifiers.some(function(el) {
23543
23543
  return el === name;
@@ -23556,9 +23556,9 @@ function indent(str, spaces) {
23556
23556
  if (dateTimeIdentifiers.some(function(el) {
23557
23557
  return el.startsWith(name);
23558
23558
  })) {
23559
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23559
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
23560
23560
  }
23561
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23561
+ return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
23562
23562
  v: nextMatch1
23563
23563
  };
23564
23564
  };
package/index.esm.js CHANGED
@@ -23489,14 +23489,14 @@ function indent(str, spaces) {
23489
23489
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23490
23490
  // match is required
23491
23491
  if (!match) {
23492
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23492
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23493
23493
  v: nextMatch1
23494
23494
  };
23495
23495
  }
23496
23496
  var token = match.token, offset = match.offset;
23497
23497
  i1 += offset;
23498
23498
  if (token === " ") {
23499
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23499
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23500
23500
  }
23501
23501
  tokens1 = _to_consumable_array$1(tokens1).concat([
23502
23502
  token
@@ -23515,7 +23515,7 @@ function indent(str, spaces) {
23515
23515
  if (contextKeys.some(function(el) {
23516
23516
  return el.startsWith(name);
23517
23517
  })) {
23518
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23518
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23519
23519
  }
23520
23520
  if (dateTimeIdentifiers.some(function(el) {
23521
23521
  return el === name;
@@ -23534,9 +23534,9 @@ function indent(str, spaces) {
23534
23534
  if (dateTimeIdentifiers.some(function(el) {
23535
23535
  return el.startsWith(name);
23536
23536
  })) {
23537
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23537
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23538
23538
  }
23539
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23539
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23540
23540
  v: nextMatch1
23541
23541
  };
23542
23542
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web",
3
- "version": "0.25.6",
3
+ "version": "0.26.0",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js"
package/schema.fr.json ADDED
@@ -0,0 +1,131 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "@digipair/skill-web",
5
+ "summary": "Affichage de pages web",
6
+ "description": "Cette compétence englobe la connaissance et l'utilisation des technologies web nécessaires pour développer et maintenir des sites internet.",
7
+ "version": "0.1.0",
8
+ "x-icon": "🌐"
9
+ },
10
+ "paths": {
11
+ "/executeFactory": {
12
+ "post": {
13
+ "summary": "Dans la factory",
14
+ "description": "Exécution d'une liste de capacité dans la factory",
15
+ "tags": ["web"],
16
+ "metadata": [],
17
+ "parameters": [
18
+ {
19
+ "name": "execute",
20
+ "summary": "Exécuter",
21
+ "required": true,
22
+ "description": "Liste de capacité à exécuter",
23
+ "schema": {
24
+ "type": "array",
25
+ "items": {
26
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
27
+ }
28
+ }
29
+ }
30
+ ]
31
+ }
32
+ }
33
+ },
34
+ "components": {
35
+ "schemas": {}
36
+ },
37
+ "x-scene-blocks": {
38
+ "/page": {
39
+ "summary": "Page internet",
40
+ "description": "Affichage d'une page d'un site internet.",
41
+ "tags": ["web", "service"],
42
+ "metadata": [],
43
+ "parameters": [
44
+ {
45
+ "name": "body",
46
+ "summary": "Contenu",
47
+ "required": true,
48
+ "description": "Contenu de la page",
49
+ "schema": {
50
+ "type": "array",
51
+ "items": {
52
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
53
+ }
54
+ }
55
+ },
56
+ {
57
+ "name": "title",
58
+ "summary": "Titre",
59
+ "required": false,
60
+ "description": "Titre de la page",
61
+ "schema": {
62
+ "type": "string"
63
+ }
64
+ },
65
+ {
66
+ "name": "favicon",
67
+ "summary": "Icone de la page",
68
+ "required": false,
69
+ "description": "Icone de la page",
70
+ "schema": {
71
+ "type": "string"
72
+ }
73
+ },
74
+ {
75
+ "name": "styleHtml",
76
+ "summary": "Style CSS du HTML",
77
+ "required": false,
78
+ "description": "Style css de l'élément HTML",
79
+ "schema": {
80
+ "type": "string"
81
+ }
82
+ },
83
+ {
84
+ "name": "styleBody",
85
+ "summary": "Style CSS du BODY",
86
+ "required": false,
87
+ "description": "Style css de l'élément BODY",
88
+ "schema": {
89
+ "type": "string"
90
+ }
91
+ },
92
+ {
93
+ "name": "factoryInitialize",
94
+ "summary": "Lors de la l'initialisation coté factory",
95
+ "required": false,
96
+ "description": "Action déclenchée lors de l'initialisation coté factory",
97
+ "schema": {
98
+ "type": "array",
99
+ "items": {
100
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
101
+ }
102
+ }
103
+ },
104
+ {
105
+ "name": "browserInitialize",
106
+ "summary": "Lors de la l'initialisation coté navigateur",
107
+ "required": false,
108
+ "description": "Action déclenchée lors de l'initialisation coté navigateur",
109
+ "schema": {
110
+ "type": "array",
111
+ "items": {
112
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
113
+ }
114
+ }
115
+ },
116
+ {
117
+ "name": "browserLoad",
118
+ "summary": "Lorsque la page est chargée",
119
+ "required": false,
120
+ "description": "Action déclenchée lorsque la page est chargée coté navigateur",
121
+ "schema": {
122
+ "type": "array",
123
+ "items": {
124
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
125
+ }
126
+ }
127
+ }
128
+ ]
129
+ }
130
+ }
131
+ }
package/schema.json CHANGED
@@ -2,24 +2,24 @@
2
2
  "openapi": "3.0.0",
3
3
  "info": {
4
4
  "title": "@digipair/skill-web",
5
- "summary": "Affichage de pages web",
6
- "description": "Cette compétence englobe la connaissance et l'utilisation des technologies web nécessaires pour développer et maintenir des sites internet.",
5
+ "summary": "Web page display",
6
+ "description": "This skill encompasses the knowledge and use of web technologies necessary to develop and maintain websites.",
7
7
  "version": "0.1.0",
8
8
  "x-icon": "🌐"
9
9
  },
10
10
  "paths": {
11
11
  "/executeFactory": {
12
12
  "post": {
13
- "summary": "Dans la factory",
14
- "description": "Exécution d'une liste de capacité dans la factory",
13
+ "summary": "In the factory",
14
+ "description": "Execution of a list of capabilities in the factory",
15
15
  "tags": ["web"],
16
16
  "metadata": [],
17
17
  "parameters": [
18
18
  {
19
19
  "name": "execute",
20
- "summary": "Exécuter",
20
+ "summary": "Execute",
21
21
  "required": true,
22
- "description": "Liste de capacité à exécuter",
22
+ "description": "List of capabilities to execute",
23
23
  "schema": {
24
24
  "type": "array",
25
25
  "items": {
@@ -36,16 +36,16 @@
36
36
  },
37
37
  "x-scene-blocks": {
38
38
  "/page": {
39
- "summary": "Page internet",
40
- "description": "Affichage d'une page d'un site internet.",
39
+ "summary": "Web page",
40
+ "description": "Display of a page from a website.",
41
41
  "tags": ["web", "service"],
42
42
  "metadata": [],
43
43
  "parameters": [
44
44
  {
45
45
  "name": "body",
46
- "summary": "Contenu",
46
+ "summary": "Content",
47
47
  "required": true,
48
- "description": "Contenu de la page",
48
+ "description": "Content of the page",
49
49
  "schema": {
50
50
  "type": "array",
51
51
  "items": {
@@ -55,45 +55,45 @@
55
55
  },
56
56
  {
57
57
  "name": "title",
58
- "summary": "Titre",
58
+ "summary": "Title",
59
59
  "required": false,
60
- "description": "Titre de la page",
60
+ "description": "Title of the page",
61
61
  "schema": {
62
62
  "type": "string"
63
63
  }
64
64
  },
65
65
  {
66
66
  "name": "favicon",
67
- "summary": "Icone de la page",
67
+ "summary": "Page icon",
68
68
  "required": false,
69
- "description": "Icone de la page",
69
+ "description": "Icon of the page",
70
70
  "schema": {
71
71
  "type": "string"
72
72
  }
73
73
  },
74
74
  {
75
75
  "name": "styleHtml",
76
- "summary": "Style CSS du HTML",
76
+ "summary": "HTML CSS style",
77
77
  "required": false,
78
- "description": "Style css de l'élément HTML",
78
+ "description": "CSS style of the HTML element",
79
79
  "schema": {
80
80
  "type": "string"
81
81
  }
82
82
  },
83
83
  {
84
84
  "name": "styleBody",
85
- "summary": "Style CSS du BODY",
85
+ "summary": "BODY CSS style",
86
86
  "required": false,
87
- "description": "Style css de l'élément BODY",
87
+ "description": "CSS style of the BODY element",
88
88
  "schema": {
89
89
  "type": "string"
90
90
  }
91
91
  },
92
92
  {
93
93
  "name": "factoryInitialize",
94
- "summary": "Lors de la l'initialisation coté factory",
94
+ "summary": "During factory initialization",
95
95
  "required": false,
96
- "description": "Action déclenchée lors de l'initialisation coté factory",
96
+ "description": "Action triggered during factory initialization",
97
97
  "schema": {
98
98
  "type": "array",
99
99
  "items": {
@@ -103,9 +103,9 @@
103
103
  },
104
104
  {
105
105
  "name": "browserInitialize",
106
- "summary": "Lors de la l'initialisation coté navigateur",
106
+ "summary": "During browser initialization",
107
107
  "required": false,
108
- "description": "Action déclenchée lors de l'initialisation coté navigateur",
108
+ "description": "Action triggered during browser initialization",
109
109
  "schema": {
110
110
  "type": "array",
111
111
  "items": {
@@ -115,9 +115,9 @@
115
115
  },
116
116
  {
117
117
  "name": "browserLoad",
118
- "summary": "Lorsque la page est chargée",
118
+ "summary": "When the page is loaded",
119
119
  "required": false,
120
- "description": "Action déclenchée lorsque la page est chargée coté navigateur",
120
+ "description": "Action triggered when the page is loaded in the browser",
121
121
  "schema": {
122
122
  "type": "array",
123
123
  "items": {