@digipair/skill-client-websocket 0.95.6 → 0.96.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.esm.js +5 -5
- package/package.json +1 -1
- package/schema.fr.json +18 -6
- package/schema.json +18 -6
package/index.esm.js
CHANGED
|
@@ -23899,14 +23899,14 @@ function indent(str, spaces) {
|
|
|
23899
23899
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23900
23900
|
// match is required
|
|
23901
23901
|
if (!match) {
|
|
23902
|
-
return
|
|
23902
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23903
23903
|
v: nextMatch1
|
|
23904
23904
|
};
|
|
23905
23905
|
}
|
|
23906
23906
|
var token = match.token, offset = match.offset;
|
|
23907
23907
|
i1 += offset;
|
|
23908
23908
|
if (token === " ") {
|
|
23909
|
-
return
|
|
23909
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23910
23910
|
}
|
|
23911
23911
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
|
23912
23912
|
token
|
|
@@ -23925,7 +23925,7 @@ function indent(str, spaces) {
|
|
|
23925
23925
|
if (contextKeys.some(function(el) {
|
|
23926
23926
|
return el.startsWith(name);
|
|
23927
23927
|
})) {
|
|
23928
|
-
return
|
|
23928
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23929
23929
|
}
|
|
23930
23930
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23931
23931
|
return el === name;
|
|
@@ -23944,9 +23944,9 @@ function indent(str, spaces) {
|
|
|
23944
23944
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23945
23945
|
return el.startsWith(name);
|
|
23946
23946
|
})) {
|
|
23947
|
-
return
|
|
23947
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23948
23948
|
}
|
|
23949
|
-
return
|
|
23949
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23950
23950
|
v: nextMatch1
|
|
23951
23951
|
};
|
|
23952
23952
|
};
|
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -10,7 +10,11 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/connect": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service",
|
|
15
|
+
"web",
|
|
16
|
+
"spatial"
|
|
17
|
+
],
|
|
14
18
|
"summary": "Connexion Websocket",
|
|
15
19
|
"parameters": [
|
|
16
20
|
{
|
|
@@ -28,7 +32,7 @@
|
|
|
28
32
|
"required": false,
|
|
29
33
|
"description": "Intervalle de temps entre chaque réessai de connexion",
|
|
30
34
|
"schema": {
|
|
31
|
-
"type": "
|
|
35
|
+
"type": "number"
|
|
32
36
|
}
|
|
33
37
|
},
|
|
34
38
|
{
|
|
@@ -37,7 +41,7 @@
|
|
|
37
41
|
"required": false,
|
|
38
42
|
"description": "Nombre maximum de réessais de connexion",
|
|
39
43
|
"schema": {
|
|
40
|
-
"type": "
|
|
44
|
+
"type": "number"
|
|
41
45
|
}
|
|
42
46
|
},
|
|
43
47
|
{
|
|
@@ -94,7 +98,11 @@
|
|
|
94
98
|
},
|
|
95
99
|
"/send": {
|
|
96
100
|
"post": {
|
|
97
|
-
"tags": [
|
|
101
|
+
"tags": [
|
|
102
|
+
"service",
|
|
103
|
+
"web",
|
|
104
|
+
"spatial"
|
|
105
|
+
],
|
|
98
106
|
"summary": "Envoi de message",
|
|
99
107
|
"parameters": [
|
|
100
108
|
{
|
|
@@ -121,7 +129,11 @@
|
|
|
121
129
|
},
|
|
122
130
|
"/close": {
|
|
123
131
|
"post": {
|
|
124
|
-
"tags": [
|
|
132
|
+
"tags": [
|
|
133
|
+
"service",
|
|
134
|
+
"web",
|
|
135
|
+
"spatial"
|
|
136
|
+
],
|
|
125
137
|
"summary": "Fermeture Websocket",
|
|
126
138
|
"parameters": [
|
|
127
139
|
{
|
|
@@ -142,4 +154,4 @@
|
|
|
142
154
|
"schemas": {}
|
|
143
155
|
},
|
|
144
156
|
"x-scene-blocks": {}
|
|
145
|
-
}
|
|
157
|
+
}
|
package/schema.json
CHANGED
|
@@ -10,7 +10,11 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/connect": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service",
|
|
15
|
+
"web",
|
|
16
|
+
"spatial"
|
|
17
|
+
],
|
|
14
18
|
"summary": "Websocket server connection",
|
|
15
19
|
"parameters": [
|
|
16
20
|
{
|
|
@@ -28,7 +32,7 @@
|
|
|
28
32
|
"required": false,
|
|
29
33
|
"description": "Time interval between each connection retry",
|
|
30
34
|
"schema": {
|
|
31
|
-
"type": "
|
|
35
|
+
"type": "number"
|
|
32
36
|
}
|
|
33
37
|
},
|
|
34
38
|
{
|
|
@@ -37,7 +41,7 @@
|
|
|
37
41
|
"required": false,
|
|
38
42
|
"description": "Maximum number of connection retries",
|
|
39
43
|
"schema": {
|
|
40
|
-
"type": "
|
|
44
|
+
"type": "number"
|
|
41
45
|
}
|
|
42
46
|
},
|
|
43
47
|
{
|
|
@@ -93,7 +97,11 @@
|
|
|
93
97
|
},
|
|
94
98
|
"/send": {
|
|
95
99
|
"post": {
|
|
96
|
-
"tags": [
|
|
100
|
+
"tags": [
|
|
101
|
+
"service",
|
|
102
|
+
"web",
|
|
103
|
+
"spatial"
|
|
104
|
+
],
|
|
97
105
|
"summary": "Send message",
|
|
98
106
|
"parameters": [
|
|
99
107
|
{
|
|
@@ -120,7 +128,11 @@
|
|
|
120
128
|
},
|
|
121
129
|
"/close": {
|
|
122
130
|
"post": {
|
|
123
|
-
"tags": [
|
|
131
|
+
"tags": [
|
|
132
|
+
"service",
|
|
133
|
+
"web",
|
|
134
|
+
"spatial"
|
|
135
|
+
],
|
|
124
136
|
"summary": "Close Websocket",
|
|
125
137
|
"parameters": [
|
|
126
138
|
{
|
|
@@ -141,4 +153,4 @@
|
|
|
141
153
|
"schemas": {}
|
|
142
154
|
},
|
|
143
155
|
"x-scene-blocks": {}
|
|
144
|
-
}
|
|
156
|
+
}
|