@ledgerhq/errors 6.10.1-monorepo.1 → 6.10.1-nightly.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/.turbo/turbo-build.log +6 -5
- package/CHANGELOG.md +2 -8
- package/lib/helpers.d.ts +0 -0
- package/lib/helpers.d.ts.map +0 -0
- package/lib/helpers.js +0 -0
- package/lib/helpers.js.map +0 -0
- package/lib/index.d.ts +0 -0
- package/lib/index.d.ts.map +0 -0
- package/lib/index.js +0 -0
- package/lib/index.js.map +0 -0
- package/lib-es/helpers.d.ts +0 -0
- package/lib-es/helpers.d.ts.map +0 -0
- package/lib-es/helpers.js +0 -0
- package/lib-es/helpers.js.map +0 -0
- package/lib-es/index.d.ts +0 -0
- package/lib-es/index.d.ts.map +0 -0
- package/lib-es/index.js +0 -0
- package/lib-es/index.js.map +0 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
@ledgerhq/errors:build: cache hit, replaying output 4ef394fe4865033a
|
|
2
|
+
@ledgerhq/errors:build:
|
|
3
|
+
@ledgerhq/errors:build: > @ledgerhq/errors@6.10.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/errors
|
|
4
|
+
@ledgerhq/errors:build: > bash ../../script/build.sh
|
|
5
|
+
@ledgerhq/errors:build:
|
|
6
|
+
@ledgerhq/errors:build: /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/errors
|
package/CHANGELOG.md
CHANGED
package/lib/helpers.d.ts
CHANGED
|
File without changes
|
package/lib/helpers.d.ts.map
CHANGED
|
File without changes
|
package/lib/helpers.js
CHANGED
|
File without changes
|
package/lib/helpers.js.map
CHANGED
|
File without changes
|
package/lib/index.d.ts
CHANGED
|
File without changes
|
package/lib/index.d.ts.map
CHANGED
|
File without changes
|
package/lib/index.js
CHANGED
|
File without changes
|
package/lib/index.js.map
CHANGED
|
File without changes
|
package/lib-es/helpers.d.ts
CHANGED
|
File without changes
|
package/lib-es/helpers.d.ts.map
CHANGED
|
File without changes
|
package/lib-es/helpers.js
CHANGED
|
File without changes
|
package/lib-es/helpers.js.map
CHANGED
|
File without changes
|
package/lib-es/index.d.ts
CHANGED
|
File without changes
|
package/lib-es/index.d.ts.map
CHANGED
|
File without changes
|
package/lib-es/index.js
CHANGED
|
File without changes
|
package/lib-es/index.js.map
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/errors",
|
|
3
|
-
"version": "6.10.1-
|
|
3
|
+
"version": "6.10.1-nightly.0",
|
|
4
4
|
"description": "Ledger common errors",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"watch": "bash ../../script/watch.sh",
|
|
28
28
|
"doc": "bash ../../script/doc.sh",
|
|
29
29
|
"lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx",
|
|
30
|
+
"lint:fix": "pnpm lint --fix",
|
|
30
31
|
"test": "jest"
|
|
31
|
-
}
|
|
32
|
-
"readme": "<img src=\"https://user-images.githubusercontent.com/211411/34776833-6f1ef4da-f618-11e7-8b13-f0697901d6a8.png\" height=\"100\" />\n\n## @ledgerhq/errors\n\nHodl all possible errors of Ledger (live, ledgerjs) so we can deal with them in a unified way (share between libraries, `instanceof` them,...)\n\n## API\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n#### Table of Contents\n\n* [TransportError](#transporterror)\n * [Parameters](#parameters)\n* [TransportStatusError](#transportstatuserror)\n * [Parameters](#parameters-1)\n\n### TransportError\n\nTransportError is used for any generic transport errors.\ne.g. Error thrown when data received by exchanges are incorrect or if exchanged failed to communicate with the device for various reason.\n\n#### Parameters\n\n* `message` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** \n* `id` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** \n\nReturns **void** \n\n### TransportStatusError\n\nError thrown when a device returned a non success status.\nthe error.statusCode is one of the `StatusCodes` exported by this library.\n\n#### Parameters\n\n* `statusCode` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** \n\nReturns **void** \n"
|
|
32
|
+
}
|
|
33
33
|
}
|