@digipair/skill-pushbullet 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/package.json +1 -1
- package/schema.fr.json +70 -0
- package/schema.json +12 -12
package/package.json
CHANGED
package/schema.fr.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-pushbullet",
|
|
5
|
+
"summary": "Gestion du service Pushbullet",
|
|
6
|
+
"description": "Cette compétence permet d'utiliser le service Pushbullet",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "💬"
|
|
9
|
+
},
|
|
10
|
+
"paths": {
|
|
11
|
+
"/sendSms": {
|
|
12
|
+
"post": {
|
|
13
|
+
"tags": ["service"],
|
|
14
|
+
"summary": "Envoi un SMS via Pushbullet",
|
|
15
|
+
"parameters": [
|
|
16
|
+
{
|
|
17
|
+
"name": "message",
|
|
18
|
+
"summary": "Message",
|
|
19
|
+
"required": true,
|
|
20
|
+
"description": "Message à envoyer",
|
|
21
|
+
"schema": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "phoneNumber",
|
|
27
|
+
"summary": "Numéro de téléphone",
|
|
28
|
+
"required": true,
|
|
29
|
+
"description": "Numéro de téléphone du destinataire",
|
|
30
|
+
"schema": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "PUSHBULLET_ACCESS_TOKEN",
|
|
36
|
+
"summary": "Clé d'API",
|
|
37
|
+
"required": false,
|
|
38
|
+
"description": "Clé d'API Pushbullet",
|
|
39
|
+
"schema": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "PUSHBULLET_TARGET_DEVICE_ID",
|
|
45
|
+
"summary": "Identifiant du périphérique",
|
|
46
|
+
"required": false,
|
|
47
|
+
"description": "Identifiant du périphérique Pushbullet",
|
|
48
|
+
"schema": {
|
|
49
|
+
"type": "string"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "PUSHBULLET_API_ENDPOINT",
|
|
54
|
+
"summary": "Endpoint de l'API",
|
|
55
|
+
"required": false,
|
|
56
|
+
"description": "Endpoint de l'API Pushbullet",
|
|
57
|
+
"schema": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"x-events": []
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"components": {
|
|
67
|
+
"schemas": {}
|
|
68
|
+
},
|
|
69
|
+
"x-scene-blocks": {}
|
|
70
|
+
}
|
package/schema.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"openapi": "3.0.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "@digipair/skill-pushbullet",
|
|
5
|
-
"summary": "
|
|
6
|
-
"description": "
|
|
5
|
+
"summary": "Management of the Pushbullet service",
|
|
6
|
+
"description": "This skill allows the use of the Pushbullet service",
|
|
7
7
|
"version": "0.1.0",
|
|
8
8
|
"x-icon": "💬"
|
|
9
9
|
},
|
|
@@ -11,49 +11,49 @@
|
|
|
11
11
|
"/sendSms": {
|
|
12
12
|
"post": {
|
|
13
13
|
"tags": ["service"],
|
|
14
|
-
"summary": "
|
|
14
|
+
"summary": "Sends an SMS via Pushbullet",
|
|
15
15
|
"parameters": [
|
|
16
16
|
{
|
|
17
17
|
"name": "message",
|
|
18
18
|
"summary": "Message",
|
|
19
19
|
"required": true,
|
|
20
|
-
"description": "Message
|
|
20
|
+
"description": "Message to be sent",
|
|
21
21
|
"schema": {
|
|
22
22
|
"type": "string"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"name": "phoneNumber",
|
|
27
|
-
"summary": "
|
|
27
|
+
"summary": "Phone Number",
|
|
28
28
|
"required": true,
|
|
29
|
-
"description": "
|
|
29
|
+
"description": "Recipient's phone number",
|
|
30
30
|
"schema": {
|
|
31
31
|
"type": "string"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
"name": "PUSHBULLET_ACCESS_TOKEN",
|
|
36
|
-
"summary": "
|
|
36
|
+
"summary": "API Key",
|
|
37
37
|
"required": false,
|
|
38
|
-
"description": "
|
|
38
|
+
"description": "Pushbullet API key",
|
|
39
39
|
"schema": {
|
|
40
40
|
"type": "string"
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "PUSHBULLET_TARGET_DEVICE_ID",
|
|
45
|
-
"summary": "
|
|
45
|
+
"summary": "Device ID",
|
|
46
46
|
"required": false,
|
|
47
|
-
"description": "
|
|
47
|
+
"description": "Pushbullet device ID",
|
|
48
48
|
"schema": {
|
|
49
49
|
"type": "string"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"name": "PUSHBULLET_API_ENDPOINT",
|
|
54
|
-
"summary": "Endpoint
|
|
54
|
+
"summary": "API Endpoint",
|
|
55
55
|
"required": false,
|
|
56
|
-
"description": "
|
|
56
|
+
"description": "Pushbullet API endpoint",
|
|
57
57
|
"schema": {
|
|
58
58
|
"type": "string"
|
|
59
59
|
}
|