yolkbot 0.1.1-alpha.7 → 0.1.1-alpha.8

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,7 +1,7 @@
1
1
  {
2
2
  "name": "yolkbot",
3
3
  "description": "create a shell shockers (self) bot in under 10 lines.",
4
- "version": "0.1.1-alpha.7",
4
+ "version": "0.1.1-alpha.8",
5
5
  "keywords": [
6
6
  "shell shockers",
7
7
  "shellshock.io",
@@ -280,6 +280,8 @@ export class Bot {
280
280
  claimURLReward(reward: string): Promise<{ result: string; eggsGiven: number; itemIds: number[]; }>;
281
281
  claimSocialReward(rewardTag: string): Promise<{ result: string; eggsGiven: number; itemIds: number[]; }>;
282
282
  buyItem(itemId: number): Promise<{ result: string; currentBalance: number; itemId: number; }>;
283
+
284
+ quit(noCleanup?: boolean): void;
283
285
  }
284
286
 
285
287
  export default Bot;