@dereekb/zoho 11.0.3 → 11.0.4
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/index.cjs.js +4 -0
- package/index.esm.js +3 -0
- package/nestjs/CHANGELOG.md +4 -0
- package/nestjs/package.json +1 -1
- package/package.json +1 -1
- package/src/lib/recruit/recruit.error.api.d.ts +3 -0
package/index.cjs.js
CHANGED
|
@@ -3765,6 +3765,10 @@ function tryFindZohoServerErrorData(errorResponseData, responseError) {
|
|
|
3765
3765
|
return error;
|
|
3766
3766
|
}
|
|
3767
3767
|
|
|
3768
|
+
/**
|
|
3769
|
+
* Thrown when a record with the given id has no content. Typically also means it does not exist.
|
|
3770
|
+
*/
|
|
3771
|
+
|
|
3768
3772
|
function _await$2(value, then, direct) {
|
|
3769
3773
|
if (direct) {
|
|
3770
3774
|
return then ? then(value) : value;
|
package/index.esm.js
CHANGED
|
@@ -3797,6 +3797,9 @@ function tryFindZohoServerErrorData(errorResponseData, responseError) {
|
|
|
3797
3797
|
return error;
|
|
3798
3798
|
}
|
|
3799
3799
|
|
|
3800
|
+
/**
|
|
3801
|
+
* Thrown when a record with the given id has no content. Typically also means it does not exist.
|
|
3802
|
+
*/
|
|
3800
3803
|
class ZohoRecruitRecordNoContentError extends BaseError {
|
|
3801
3804
|
constructor(moduleName, recordId) {
|
|
3802
3805
|
super(`There was no content or matching records for the content. It may not exist.`);
|
package/nestjs/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [11.0.4](https://github.com/dereekb/dbx-components/compare/v11.0.3-dev...v11.0.4) (2024-11-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [11.0.3](https://github.com/dereekb/dbx-components/compare/v11.0.2-dev...v11.0.3) (2024-11-15)
|
|
6
10
|
|
|
7
11
|
|
package/nestjs/package.json
CHANGED
package/package.json
CHANGED
|
@@ -3,6 +3,9 @@ import { BaseError } from 'make-error';
|
|
|
3
3
|
import { ZohoServerErrorDataWithDetails, ZohoServerErrorResponseData, ZohoServerError, ParsedZohoServerError } from '../zoho.error.api';
|
|
4
4
|
import { ZohoRecruitModuleName, ZohoRecruitRecordId } from './recruit';
|
|
5
5
|
import { ZohoDataArrayResultRef } from '../zoho.api.page';
|
|
6
|
+
/**
|
|
7
|
+
* Thrown when a record with the given id has no content. Typically also means it does not exist.
|
|
8
|
+
*/
|
|
6
9
|
export declare class ZohoRecruitRecordNoContentError extends BaseError {
|
|
7
10
|
readonly moduleName?: string | undefined;
|
|
8
11
|
readonly recordId?: string | undefined;
|