@stripe/link-cli 0.17.2 → 0.17.3

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
@@ -117,7 +117,7 @@ You receive a verification URL and a short phrase. Visit the URL, log in to your
117
117
  link-cli user-info retrieve --format json
118
118
  ```
119
119
 
120
- In addition to identity fields, the response can include Agent Wallet spend limits and a verification requirement:
120
+ In addition to identity fields, the response can include spend limits and verification requirements:
121
121
 
122
122
  ```json
123
123
  {
@@ -135,7 +135,7 @@ In addition to identity fields, the response can include Agent Wallet spend limi
135
135
  }
136
136
  ```
137
137
 
138
- Finite spend-limit values are cents because this response does not include a currency. A `null` limit or remaining amount means unlimited. The verification requirement's `action_url` is null when no action is available. Either Agent Wallet object can be absent when backend enrichment is unavailable; absence does not imply a limit or verification status.
138
+ Finite spend-limit values are cents because this response does not include a currency. A null limit or remaining amount means unlimited. The verification requirement's action_url is null when no action is available.
139
139
 
140
140
  ### List payment methods
141
141
 
package/dist/cli.js CHANGED
@@ -2839,7 +2839,7 @@ function buildHeaders(data, headers) {
2839
2839
  if (key) result[key] = value;
2840
2840
  }
2841
2841
  if (!Object.keys(result).some((key) => key.toLowerCase() === "user-agent")) {
2842
- result["User-Agent"] = `link-cli/${"0.17.2"}`;
2842
+ result["User-Agent"] = `link-cli/${"0.17.3"}`;
2843
2843
  }
2844
2844
  return result;
2845
2845
  }
@@ -7766,7 +7766,7 @@ function cacheUpdateInfo(value, ttlMs = UPDATE_CACHE_TTL_MS) {
7766
7766
  }
7767
7767
 
7768
7768
  // src/cli.tsx
7769
- var cliVersion = "0.17.2";
7769
+ var cliVersion = "0.17.3";
7770
7770
  var cliName = "@stripe/link-cli";
7771
7771
  var defaultHeaders = {
7772
7772
  "User-Agent": `link-cli/${cliVersion}`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stripe/link-cli",
3
- "version": "0.17.2",
3
+ "version": "0.17.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "link-cli": "./dist/cli.js"