@opensea/cli 1.0.0 → 1.0.1
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/dist/cli.js +51 -6
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +7 -6
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/client.ts
|
|
2
2
|
var DEFAULT_BASE_URL = "https://api.opensea.io";
|
|
3
3
|
var DEFAULT_TIMEOUT_MS = 3e4;
|
|
4
|
-
var USER_AGENT = `opensea-cli/${"1.0.
|
|
4
|
+
var USER_AGENT = `opensea-cli/${"1.0.1"}`;
|
|
5
5
|
var DEFAULT_MAX_RETRIES = 0;
|
|
6
6
|
var DEFAULT_RETRY_BASE_DELAY_MS = 1e3;
|
|
7
7
|
function isRetryableStatus(status, method) {
|