@gojinko/api-client 2.29.1 → 2.29.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/dist/errors.d.ts +2 -2
- package/package.json +1 -1
package/dist/errors.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ export interface ApiErrorDetail {
|
|
|
10
10
|
* { "error": { "code", "message", "doc_url"? }, "expires_at": "…" }
|
|
11
11
|
*
|
|
12
12
|
* Which key appears is a function of the code: `expires_at` on QUOTE_EXPIRED
|
|
13
|
-
* (410), `status` on TRIP_EXPIRED and TRIP_STATE_CONFLICT (409)
|
|
14
|
-
*
|
|
13
|
+
* (410), `status` on TRIP_EXPIRED and TRIP_STATE_CONFLICT (409).
|
|
14
|
+
* They are what makes a code actionable, so they are
|
|
15
15
|
* captured verbatim rather than enumerated here — a code that starts carrying
|
|
16
16
|
* a new key reaches the caller without a client release.
|
|
17
17
|
*
|