@rebilly/revel 6.30.5 → 6.30.7
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/types.d.ts
CHANGED
|
@@ -17,10 +17,8 @@ interface ApiErrorField {
|
|
|
17
17
|
field: string;
|
|
18
18
|
message: string;
|
|
19
19
|
}
|
|
20
|
-
export interface ApiError {
|
|
20
|
+
export interface ApiError extends Error {
|
|
21
21
|
status?: number;
|
|
22
|
-
name?: 'RebillyConflictError' | 'RebillyCanceledError';
|
|
23
|
-
message?: string;
|
|
24
22
|
details?: string[];
|
|
25
23
|
invalidFields?: ApiErrorField[];
|
|
26
24
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebilly/revel",
|
|
3
|
-
"version": "6.30.
|
|
3
|
+
"version": "6.30.7",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"CHANGELOG.md"
|
|
@@ -32,8 +32,6 @@
|
|
|
32
32
|
"docs:dev": "vuepress dev docs",
|
|
33
33
|
"docs:build": "vuepress build docs",
|
|
34
34
|
"playground:dev": "vite serve ./src/playground/ --config vite.config.ts",
|
|
35
|
-
"cy": "cypress open",
|
|
36
|
-
"cy:ci": "cypress run --quiet --reporter spec",
|
|
37
35
|
"test:unit": "vitest run",
|
|
38
36
|
"test:unit:watch": "vitest",
|
|
39
37
|
"type:check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|