@digipair/skill-mybuddy 0.23.3 → 0.23.5

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.
@@ -42,3 +42,4 @@ export declare const getDigitalInput: (params: any, pinsSettingsList: PinsSettin
42
42
  export declare const getGripperValue: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<null>;
43
43
  export declare const getBasicOutput: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<null>;
44
44
  export declare const isGripperMoving: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<null>;
45
+ export declare const sleep: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-mybuddy",
3
- "version": "0.23.3",
3
+ "version": "0.23.5",
4
4
  "dependencies": {
5
5
  "@marcbuils/mybuddy": "^0.0.8"
6
6
  },
package/schema.json CHANGED
@@ -1202,6 +1202,24 @@
1202
1202
  ],
1203
1203
  "x-events": []
1204
1204
  }
1205
+ },
1206
+ "/sleep": {
1207
+ "post": {
1208
+ "tags": ["service"],
1209
+ "summary": "Attend un certain temps",
1210
+ "parameters": [
1211
+ {
1212
+ "name": "time",
1213
+ "summary": "temps en secondes",
1214
+ "required": true,
1215
+ "description": "temps en secondes à attendre",
1216
+ "schema": {
1217
+ "type": "number"
1218
+ }
1219
+ }
1220
+ ],
1221
+ "x-events": []
1222
+ }
1205
1223
  }
1206
1224
  },
1207
1225
  "components": {},