@commercelayer/sdk 6.7.1 → 6.7.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/lib/index.d.mts +3 -1
- package/lib/index.d.ts +3 -1
- package/lib/index.js +1 -1
- package/lib/index.mjs +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
@@ -15201,7 +15201,9 @@ declare class ApiError extends SdkError {
|
|
15201
15201
|
errors: any[];
|
15202
15202
|
status?: number;
|
15203
15203
|
statusText?: string;
|
15204
|
-
constructor(error:
|
15204
|
+
constructor(error: {
|
15205
|
+
message: string;
|
15206
|
+
});
|
15205
15207
|
first(): any;
|
15206
15208
|
}
|
15207
15209
|
|
package/lib/index.d.ts
CHANGED
@@ -15201,7 +15201,9 @@ declare class ApiError extends SdkError {
|
|
15201
15201
|
errors: any[];
|
15202
15202
|
status?: number;
|
15203
15203
|
statusText?: string;
|
15204
|
-
constructor(error:
|
15204
|
+
constructor(error: {
|
15205
|
+
message: string;
|
15206
|
+
});
|
15205
15207
|
first(): any;
|
15206
15208
|
}
|
15207
15209
|
|