aurival 0.1.0 → 0.1.2
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/NOTICE +14 -0
- package/README.md +4 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -3
package/NOTICE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Aurival SDK
|
|
2
|
+
Copyright 2026 Nullspire LLC
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
5
|
+
these files except in compliance with the License. A copy of the License is in
|
|
6
|
+
the LICENSE file alongside this notice, and at
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0.
|
|
8
|
+
|
|
9
|
+
Trademarks. "Aurival", the Aurival wordmark, and the Aurival mascot (including
|
|
10
|
+
every file under assets/) are trademarks of Nullspire LLC. They are included in
|
|
11
|
+
this distribution only to identify the project and are NOT licensed under the
|
|
12
|
+
Apache License or any other license. You may not use them to name, brand, or
|
|
13
|
+
endorse your own software or services without written permission from
|
|
14
|
+
Nullspire LLC. Section 6 of the License applies.
|
package/README.md
CHANGED
|
@@ -193,3 +193,7 @@ MIGRATE_TEST_DATABASE_URL='postgres://postgres@127.0.0.1:5432/postgres?sslmode=d
|
|
|
193
193
|
|
|
194
194
|
**Without that variable the end-to-end test announces that it skipped.** It never passes
|
|
195
195
|
quietly — a suite reporting green when it never reached the service is worse than no suite.
|
|
196
|
+
|
|
197
|
+
## License
|
|
198
|
+
|
|
199
|
+
Apache-2.0, see [LICENSE](LICENSE). The Aurival name, wordmark, and mascot are trademarks of Nullspire LLC and are not covered by the license, see [NOTICE](NOTICE).
|
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.
|
|
27
|
+
export declare const version = "0.1.2";
|
|
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.
|
|
26
|
+
export const version = '0.1.2';
|
|
27
27
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aurival",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"aurival": "
|
|
9
|
+
"aurival": "dist/cli.js"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist",
|
|
19
|
-
"LICENSE"
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"NOTICE"
|
|
20
21
|
],
|
|
21
22
|
"homepage": "https://bots.aurival.com/docs",
|
|
22
23
|
"repository": {
|