@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 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.`);
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/zoho/nestjs",
3
- "version": "11.0.3",
3
+ "version": "11.0.4",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/zoho",
3
- "version": "11.0.3",
3
+ "version": "11.0.4",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./src/index.d.ts",
@@ -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;