@digipair/skill-pushbullet 0.96.0 → 0.97.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-pushbullet",
3
- "version": "0.96.0",
3
+ "version": "0.97.0",
4
4
  "keywords": [
5
5
  "digipair",
6
6
  "service",
package/schema.fr.json CHANGED
@@ -59,7 +59,48 @@
59
59
  }
60
60
  }
61
61
  ],
62
- "x-events": []
62
+ "x-events": [],
63
+ "responses": {
64
+ "200": {
65
+ "description": "Résultat de l'envoi SMS depuis l'API Pushbullet",
66
+ "content": {
67
+ "application/json": {
68
+ "schema": {
69
+ "type": "object",
70
+ "properties": {
71
+ "iden": {
72
+ "type": "string",
73
+ "description": "Identifiant unique du texte envoyé"
74
+ },
75
+ "type": {
76
+ "type": "string",
77
+ "description": "Type de la réponse (toujours 'text')"
78
+ },
79
+ "direction": {
80
+ "type": "string",
81
+ "description": "Direction du message (sortant/entrant)"
82
+ },
83
+ "timestamp": {
84
+ "type": "number",
85
+ "description": "Horodatage Unix de l'envoi du message"
86
+ },
87
+ "addresses": {
88
+ "type": "array",
89
+ "items": {
90
+ "type": "string"
91
+ },
92
+ "description": "Liste des numéros de téléphone destinataires"
93
+ },
94
+ "message": {
95
+ "type": "string",
96
+ "description": "Contenu du message envoyé"
97
+ }
98
+ }
99
+ }
100
+ }
101
+ }
102
+ }
103
+ }
63
104
  }
64
105
  }
65
106
  },
package/schema.json CHANGED
@@ -59,7 +59,48 @@
59
59
  }
60
60
  }
61
61
  ],
62
- "x-events": []
62
+ "x-events": [],
63
+ "responses": {
64
+ "200": {
65
+ "description": "SMS sending result from Pushbullet API",
66
+ "content": {
67
+ "application/json": {
68
+ "schema": {
69
+ "type": "object",
70
+ "properties": {
71
+ "iden": {
72
+ "type": "string",
73
+ "description": "Unique identifier for the sent text"
74
+ },
75
+ "type": {
76
+ "type": "string",
77
+ "description": "Type of the response (always 'text')"
78
+ },
79
+ "direction": {
80
+ "type": "string",
81
+ "description": "Direction of the message (outgoing/incoming)"
82
+ },
83
+ "timestamp": {
84
+ "type": "number",
85
+ "description": "Unix timestamp when the message was sent"
86
+ },
87
+ "addresses": {
88
+ "type": "array",
89
+ "items": {
90
+ "type": "string"
91
+ },
92
+ "description": "List of recipient phone numbers"
93
+ },
94
+ "message": {
95
+ "type": "string",
96
+ "description": "The sent message content"
97
+ }
98
+ }
99
+ }
100
+ }
101
+ }
102
+ }
103
+ }
63
104
  }
64
105
  }
65
106
  },