aurival 0.1.5 → 0.1.6

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/README.md CHANGED
@@ -32,9 +32,15 @@ Learn one and you have learned the other.
32
32
 
33
33
  ## Start from nothing
34
34
 
35
- ```
35
+ ```bash
36
36
  npm install aurival
37
+ ```
38
+
39
+ ```bash
37
40
  npx aurival init
41
+ ```
42
+
43
+ ```bash
38
44
  node bot.js
39
45
  ```
40
46
 
package/dist/index.d.ts CHANGED
@@ -24,5 +24,5 @@ export { APIError, AccessTokenExpired, AccessTokenInvalid, AckUnknownEvent, Asse
24
24
  export { Context, Event } from './events.js';
25
25
  export type { Chat, Command, User } from './events.js';
26
26
  export { BYE_ACTIONS, ByeAction, actionForBye } from './socket.js';
27
- export declare const version = "0.1.5";
27
+ export declare const version = "0.1.6";
28
28
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -23,5 +23,5 @@ export { Bot } from './bot.js';
23
23
  export { APIError, AccessTokenExpired, AccessTokenInvalid, AckUnknownEvent, AssertionExpired, AssertionReplay, AurivalAPIError, AurivalError, AuthenticationError, BadAssertion, BadProof, BadPublicKey, BotLinkNotAllowed, BotPlaygroundOnly, BotSuspended, CODE_CLASSES, DOC_URL_PREFIX, EmptyText, FrameInvalid, FrameTooLarge, IdempotencyKeyInvalid, IdempotencyKeyReused, IdleTimeout, InternalError, InvalidCommandName, InvalidJSON, InvalidRequestError, KeyAlreadyPaired, KeyRevoked, NotFound, PairRateLimited, ParameterInvalid, ParameterMissing, PermissionDeniedError, ProtocolError, RateLimitError, RateLimited, ServerRestarting, SessionSuperseded, SyncRateLimited, TYPE_CLASSES, TextTooLong, TooManyProblems, TransportError, UnknownOperation, UnknownParameter, fromEnvelope, } from './errors.js';
24
24
  export { Context, Event } from './events.js';
25
25
  export { BYE_ACTIONS, ByeAction, actionForBye } from './socket.js';
26
- export const version = '0.1.5';
26
+ export const version = '0.1.6';
27
27
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aurival",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Write a bot for Aurival. Declare commands, call run(), we handle the rest.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",