attlaz-client 1.32.1 → 1.32.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/Service/Endpoint.js +2 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/Service/Endpoint.js
CHANGED
|
@@ -117,10 +117,9 @@ export class Endpoint {
|
|
|
117
117
|
catch (error) {
|
|
118
118
|
if (error.httpStatus === HttpStatus.HTTP_NOTFOUND) {
|
|
119
119
|
result.setData(null);
|
|
120
|
+
return result;
|
|
120
121
|
}
|
|
121
|
-
|
|
122
|
-
throw this.toApiError(error);
|
|
123
|
-
}
|
|
122
|
+
throw this.toApiError(error);
|
|
124
123
|
}
|
|
125
124
|
// TODO: add errors
|
|
126
125
|
/**
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.32.
|
|
1
|
+
export declare const VERSION = "1.32.1";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.32.
|
|
1
|
+
export const VERSION = "1.32.1";
|