@dereekb/zoho 12.6.21 → 13.0.0
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/LICENSE +1 -1
- package/index.cjs.js +1763 -2531
- package/index.esm.js +1655 -2524
- package/nestjs/index.cjs.js +598 -0
- package/nestjs/index.esm.js +582 -0
- package/nestjs/package.json +19 -3
- package/nestjs/src/lib/accounts/accounts.config.d.ts +32 -0
- package/nestjs/src/lib/crm/crm.api.d.ts +43 -0
- package/nestjs/src/lib/crm/crm.config.d.ts +10 -0
- package/nestjs/src/lib/crm/crm.module.d.ts +24 -0
- package/nestjs/src/lib/crm/index.d.ts +3 -0
- package/nestjs/src/lib/recruit/recruit.api.d.ts +7 -7
- package/package.json +14 -7
- package/src/lib/accounts/accounts.api.d.ts +1 -1
- package/src/lib/accounts/accounts.error.api.d.ts +2 -2
- package/src/lib/crm/crm.api.d.ts +430 -0
- package/src/lib/crm/crm.api.notes.d.ts +40 -0
- package/src/lib/crm/crm.api.tags.d.ts +160 -0
- package/src/lib/crm/crm.config.d.ts +24 -0
- package/src/lib/crm/crm.criteria.d.ts +19 -0
- package/src/lib/crm/crm.d.ts +325 -0
- package/src/lib/crm/crm.error.api.d.ts +52 -0
- package/src/lib/crm/crm.factory.d.ts +22 -0
- package/src/lib/crm/crm.notes.d.ts +48 -0
- package/src/lib/crm/crm.tags.d.ts +40 -0
- package/src/lib/crm/index.d.ts +10 -0
- package/src/lib/index.d.ts +1 -0
- package/src/lib/recruit/index.d.ts +0 -1
- package/src/lib/recruit/recruit.api.candidates.d.ts +6 -6
- package/src/lib/recruit/recruit.api.d.ts +102 -22
- package/src/lib/recruit/recruit.api.notes.d.ts +30 -6
- package/src/lib/recruit/recruit.api.tags.d.ts +30 -6
- package/src/lib/recruit/recruit.criteria.d.ts +8 -44
- package/src/lib/recruit/recruit.d.ts +7 -3
- package/src/lib/recruit/recruit.error.api.d.ts +7 -3
- package/src/lib/shared/criteria.d.ts +55 -0
- package/src/lib/shared/criteria.util.d.ts +10 -0
- package/src/lib/zoho.error.api.d.ts +64 -6
- package/src/lib/zoho.type.d.ts +1 -18
- package/nestjs/CHANGELOG.md +0 -459
- package/nestjs/README.md +0 -11
- package/nestjs/src/index.js +0 -5
- package/nestjs/src/index.js.map +0 -1
- package/nestjs/src/lib/accounts/accounts.api.js +0 -37
- package/nestjs/src/lib/accounts/accounts.api.js.map +0 -1
- package/nestjs/src/lib/accounts/accounts.config.js +0 -50
- package/nestjs/src/lib/accounts/accounts.config.js.map +0 -1
- package/nestjs/src/lib/accounts/accounts.service.js +0 -240
- package/nestjs/src/lib/accounts/accounts.service.js.map +0 -1
- package/nestjs/src/lib/accounts/index.js +0 -7
- package/nestjs/src/lib/accounts/index.js.map +0 -1
- package/nestjs/src/lib/index.js +0 -7
- package/nestjs/src/lib/index.js.map +0 -1
- package/nestjs/src/lib/recruit/index.js +0 -7
- package/nestjs/src/lib/recruit/index.js.map +0 -1
- package/nestjs/src/lib/recruit/recruit.api.js +0 -130
- package/nestjs/src/lib/recruit/recruit.api.js.map +0 -1
- package/nestjs/src/lib/recruit/recruit.config.js +0 -16
- package/nestjs/src/lib/recruit/recruit.config.js.map +0 -1
- package/nestjs/src/lib/recruit/recruit.module.js +0 -61
- package/nestjs/src/lib/recruit/recruit.module.js.map +0 -1
- package/nestjs/src/lib/zoho.config.js +0 -52
- package/nestjs/src/lib/zoho.config.js.map +0 -1
- package/src/lib/recruit/recruit.criteria.util.d.ts +0 -10
- /package/{index.cjs.d.ts → index.d.ts} +0 -0
- /package/{index.esm.d.ts → nestjs/index.d.ts} +0 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { type Maybe, type PrimativeKey } from '@dereekb/util';
|
|
2
|
+
/**
|
|
3
|
+
* Encoded criteria string.
|
|
4
|
+
*/
|
|
5
|
+
export type ZohoSearchRecordsCriteriaString = string;
|
|
6
|
+
/**
|
|
7
|
+
* Can search up to 10 criteria at a time.
|
|
8
|
+
*
|
|
9
|
+
* https://www.zoho.com/crm/developer/docs/api/v8/search-records.html
|
|
10
|
+
* https://www.zoho.com/recruit/developer-guide/apiv2/search-records.html
|
|
11
|
+
*
|
|
12
|
+
* "You can search for a maximum of 10 criteria (with the same or different column) with equals and starts_with conditions."
|
|
13
|
+
*/
|
|
14
|
+
export declare const MAX_ZOHO_SEARCH_MODULE_RECORDS_CRITERIA = 10;
|
|
15
|
+
/**
|
|
16
|
+
* Creates a ZohoSearchRecordsCriteriaString from a ZohoSearchRecordsCriteriaTree.
|
|
17
|
+
*
|
|
18
|
+
* If the input tree is empty, returns undefined.
|
|
19
|
+
*/
|
|
20
|
+
export declare function zohoSearchRecordsCriteriaString<T = any>(input: Maybe<ZohoSearchRecordsCriteriaTreeElement<T>>): Maybe<ZohoSearchRecordsCriteriaString>;
|
|
21
|
+
export declare function zohoSearchRecordsCriteriaStringForTree<T = any>(tree: ZohoSearchRecordsCriteriaTree<T>): Maybe<ZohoSearchRecordsCriteriaString>;
|
|
22
|
+
/**
|
|
23
|
+
* Tree items
|
|
24
|
+
*
|
|
25
|
+
* If both AND and OR values are provided at the root tree, then the will be merged together with AND.
|
|
26
|
+
*/
|
|
27
|
+
export interface ZohoSearchRecordsCriteriaTree<T = any> {
|
|
28
|
+
/**
|
|
29
|
+
* Items to AND with eachother
|
|
30
|
+
*/
|
|
31
|
+
readonly and?: Maybe<ZohoSearchRecordsCriteriaTreeElement<T>[]>;
|
|
32
|
+
/**
|
|
33
|
+
* Items to OR with eachother
|
|
34
|
+
*/
|
|
35
|
+
readonly or?: Maybe<ZohoSearchRecordsCriteriaTreeElement<T>[]>;
|
|
36
|
+
}
|
|
37
|
+
export type ZohoSearchRecordsCriteriaTreeElement<T = any> = ZohoSearchRecordsCriteriaEntryArray<T> | ZohoSearchRecordsCriteriaTree<T> | ZohoSearchRecordsCriteriaString;
|
|
38
|
+
export type ZohoSearchRecordsCriteriaFilterType = 'starts_with' | 'equals' | 'contains';
|
|
39
|
+
export type ZohoSearchRecordsCriteriaEntryArray<T = any> = ZohoSearchRecordsCriteriaEntry<T>[];
|
|
40
|
+
export interface ZohoSearchRecordsCriteriaEntry<T = any> {
|
|
41
|
+
readonly field: keyof T extends PrimativeKey ? keyof T : PrimativeKey;
|
|
42
|
+
readonly filter: ZohoSearchRecordsCriteriaFilterType;
|
|
43
|
+
readonly value: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Escape used for ZohoSearchRecordsCriteriaString
|
|
47
|
+
*/
|
|
48
|
+
export declare const escapeZohoFieldValueForCriteriaString: import("@dereekb/util").EscapeStringCharactersFunction;
|
|
49
|
+
/**
|
|
50
|
+
* Converts the input entry to a ZohoSearchRecordsCriteriaString. Properly escapes any parenthesis or commas.
|
|
51
|
+
*
|
|
52
|
+
* @param entry
|
|
53
|
+
* @returns
|
|
54
|
+
*/
|
|
55
|
+
export declare function zohoSearchRecordsCriteriaEntryToCriteriaString<T = any>(entry: ZohoSearchRecordsCriteriaEntry<T>): ZohoSearchRecordsCriteriaString;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type ArrayOrValue, type EmailAddress, type PrimativeKey } from '@dereekb/util';
|
|
2
|
+
import { type ZohoSearchRecordsCriteriaEntryArray } from './criteria';
|
|
3
|
+
/**
|
|
4
|
+
* Creates a ZohoSearchRecordsCriteriaEntryArray from an array of emails.
|
|
5
|
+
*
|
|
6
|
+
* @param emails Email or array of emails to search for.
|
|
7
|
+
* @param field Optional field name to use. Defaults to 'Email'.
|
|
8
|
+
* @returns Array of ZohoSearchRecordsCriteriaEntry
|
|
9
|
+
*/
|
|
10
|
+
export declare function zohoSearchRecordsCriteriaEntriesForEmails<T = any>(emails: ArrayOrValue<EmailAddress>, field?: keyof T extends PrimativeKey ? PrimativeKey & keyof T : PrimativeKey): ZohoSearchRecordsCriteriaEntryArray<T>;
|
|
@@ -1,7 +1,36 @@
|
|
|
1
|
-
import { type Maybe, type
|
|
1
|
+
import { type Maybe, type UnixDateTimeMillisecondsNumber } from '@dereekb/util';
|
|
2
2
|
import { type ConfiguredFetch, type FetchJsonInterceptJsonResponseFunction, type FetchRequestFactoryError, FetchResponseError } from '@dereekb/util/fetch';
|
|
3
3
|
import { BaseError } from 'make-error';
|
|
4
|
+
/**
|
|
5
|
+
* Returned by Zoho CRM.
|
|
6
|
+
*
|
|
7
|
+
* The data array contains the list of possible success
|
|
8
|
+
*/
|
|
9
|
+
export interface ZohoServerErrorResponseDataArrayRef {
|
|
10
|
+
readonly data: ZohoServerErrorResponseDataArrayElement[];
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Array of response elements that may contain either a success or error.
|
|
14
|
+
*/
|
|
15
|
+
export type ZohoServerErrorResponseDataArrayElement = ZohoServerErrorData | ZohoServerSuccessData;
|
|
16
|
+
/**
|
|
17
|
+
* Default place-holder used by the ZohoServerFetchResponseDataArrayError class.
|
|
18
|
+
*/
|
|
19
|
+
export declare const ZOHO_DATA_ARRAY_BLANK_ERROR_CODE = "__internal_data_array_blank_error";
|
|
20
|
+
/**
|
|
21
|
+
* Returns true if the input value is a ZohoServerErrorResponseDataArrayRef.
|
|
22
|
+
*
|
|
23
|
+
* @param value
|
|
24
|
+
* @returns
|
|
25
|
+
*/
|
|
26
|
+
export declare function isZohoServerErrorResponseDataArrayRef(value: unknown): value is ZohoServerErrorResponseDataArrayRef;
|
|
27
|
+
/**
|
|
28
|
+
* Returned by Zoho Recruit.
|
|
29
|
+
*/
|
|
4
30
|
export type ZohoServerErrorResponseDataError = ZohoServerErrorData | ZohoServerErrorCode;
|
|
31
|
+
/**
|
|
32
|
+
* Returned by Zoho Recruit.
|
|
33
|
+
*/
|
|
5
34
|
export interface ZohoServerErrorResponseData {
|
|
6
35
|
readonly error: ZohoServerErrorResponseDataError;
|
|
7
36
|
}
|
|
@@ -35,6 +64,14 @@ export interface ZohoServerErrorData<T = unknown> {
|
|
|
35
64
|
*/
|
|
36
65
|
readonly status?: ZohoServerErrorStatus;
|
|
37
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* Zoho Server Success Data
|
|
69
|
+
*
|
|
70
|
+
* Always contains a code and message. Details and status are optional.
|
|
71
|
+
*/
|
|
72
|
+
export type ZohoServerSuccessData<T = unknown> = Omit<ZohoServerErrorData<T>, 'code'> & {
|
|
73
|
+
readonly code: ZohoServerSuccessCode;
|
|
74
|
+
};
|
|
38
75
|
/**
|
|
39
76
|
* Contains details and a status
|
|
40
77
|
*/
|
|
@@ -53,17 +90,37 @@ export declare class ZohoServerError<D extends ZohoServerErrorData = ZohoServerE
|
|
|
53
90
|
*/
|
|
54
91
|
export declare class ZohoServerFetchResponseError<D extends ZohoServerErrorData = ZohoServerErrorData> extends ZohoServerError<D> {
|
|
55
92
|
readonly data: D;
|
|
93
|
+
readonly errorResponseData: ZohoServerErrorResponseData | ZohoServerErrorResponseDataArrayRef;
|
|
56
94
|
readonly responseError: FetchResponseError;
|
|
57
|
-
constructor(data: D, responseError: FetchResponseError);
|
|
95
|
+
constructor(data: D, errorResponseData: ZohoServerErrorResponseData | ZohoServerErrorResponseDataArrayRef, responseError: FetchResponseError);
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Used as a transient error for situations where there are potentially multiple errors within the data array returned.
|
|
99
|
+
*
|
|
100
|
+
* Zoho CRM returns a non-200 error as a result, but generally there is a partial success that can occur, with both
|
|
101
|
+
* the successful and errored results returned within the data.
|
|
102
|
+
*/
|
|
103
|
+
export declare class ZohoServerFetchResponseDataArrayError extends ZohoServerFetchResponseError<ZohoServerErrorData> {
|
|
104
|
+
constructor(errorResponseData: ZohoServerErrorResponseDataArrayRef, responseError: FetchResponseError);
|
|
105
|
+
get errorDataArray(): ZohoServerErrorResponseDataArrayElement[];
|
|
58
106
|
}
|
|
59
107
|
export type LogZohoServerErrorFunction = (error: FetchRequestFactoryError | ZohoServerError | ZohoServerFetchResponseError) => void;
|
|
108
|
+
/**
|
|
109
|
+
* Config for logZohoServerErrorFunction.
|
|
110
|
+
*/
|
|
111
|
+
export interface LogZohoServerErrorFunctionConfig {
|
|
112
|
+
/**
|
|
113
|
+
* If true, will log errors that are ZohoServerFetchResponseDataArrayError.
|
|
114
|
+
*/
|
|
115
|
+
readonly logDataArrayErrors?: boolean;
|
|
116
|
+
}
|
|
60
117
|
/**
|
|
61
118
|
* Creates a logZohoServerErrorFunction that logs the error to console.
|
|
62
119
|
*
|
|
63
120
|
* @param zohoApiNamePrefix Prefix to use when logging. I.E. ZohoRecruitError, etc.
|
|
64
121
|
* @returns
|
|
65
122
|
*/
|
|
66
|
-
export declare function logZohoServerErrorFunction(zohoApiNamePrefix: string): LogZohoServerErrorFunction;
|
|
123
|
+
export declare function logZohoServerErrorFunction(zohoApiNamePrefix: string, options?: LogZohoServerErrorFunctionConfig): LogZohoServerErrorFunction;
|
|
67
124
|
/**
|
|
68
125
|
* Wraps a ConfiguredFetch to support handling errors returned by fetch.
|
|
69
126
|
*
|
|
@@ -166,7 +223,7 @@ export interface ZohoRateLimitHeaderDetails {
|
|
|
166
223
|
/**
|
|
167
224
|
* The time at which the rate limit will reset.
|
|
168
225
|
*/
|
|
169
|
-
readonly reset:
|
|
226
|
+
readonly reset: UnixDateTimeMillisecondsNumber;
|
|
170
227
|
/**
|
|
171
228
|
* The time at which the rate limit will reset.
|
|
172
229
|
*/
|
|
@@ -183,14 +240,15 @@ export declare class ZohoTooManyRequestsError extends ZohoServerFetchResponseErr
|
|
|
183
240
|
* @param responseError
|
|
184
241
|
* @returns
|
|
185
242
|
*/
|
|
186
|
-
export declare function parseZohoServerErrorResponseData(errorResponseData: ZohoServerErrorResponseData, responseError: FetchResponseError): ZohoServerFetchResponseError | undefined;
|
|
243
|
+
export declare function parseZohoServerErrorResponseData(errorResponseData: ZohoServerErrorResponseData | ZohoServerErrorResponseDataArrayRef, responseError: FetchResponseError): ZohoServerFetchResponseError | undefined;
|
|
187
244
|
/**
|
|
188
245
|
* Attempts to retrieve an ZohoServerErrorResponseDataError from the input.
|
|
189
246
|
*
|
|
190
247
|
* Non-200 errors returned by the Zoho API are returned as the object directly instead of as an ZohoServerErrorResponseData directly.
|
|
248
|
+
* Zoho CRM returns a ZohoServerErrorResponseDataArrayRef value for errors.
|
|
191
249
|
*
|
|
192
250
|
* @param errorResponseData
|
|
193
251
|
* @param responseError
|
|
194
252
|
* @returns
|
|
195
253
|
*/
|
|
196
|
-
export declare function tryFindZohoServerErrorData(errorResponseData: ZohoServerErrorResponseData | ZohoServerErrorResponseDataError, responseError: FetchResponseError): Maybe<ZohoServerErrorResponseDataError>;
|
|
254
|
+
export declare function tryFindZohoServerErrorData(errorResponseData: ZohoServerErrorResponseDataArrayRef | ZohoServerErrorResponseData | ZohoServerErrorResponseDataError, responseError: FetchResponseError): Maybe<ZohoServerErrorResponseDataError>;
|
package/src/lib/zoho.type.d.ts
CHANGED
|
@@ -1,23 +1,6 @@
|
|
|
1
|
-
import { type Maybe, type MaybeNot
|
|
1
|
+
import { type Maybe, type MaybeNot } from '@dereekb/util';
|
|
2
2
|
export interface ZohoModel {
|
|
3
3
|
}
|
|
4
|
-
/**
|
|
5
|
-
* General Zoho API GET request response sent by the v1 API.
|
|
6
|
-
*
|
|
7
|
-
* @deprecated
|
|
8
|
-
*/
|
|
9
|
-
export interface ZohoGetApiV1Result<T> {
|
|
10
|
-
readonly response: {
|
|
11
|
-
/**
|
|
12
|
-
* Result value
|
|
13
|
-
*/
|
|
14
|
-
readonly result: T;
|
|
15
|
-
/**
|
|
16
|
-
* Path to the resource.
|
|
17
|
-
*/
|
|
18
|
-
readonly url: WebsitePath;
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
4
|
/**
|
|
22
5
|
* Similar to the ISO 8601 date-time format, but with milliseconds removed.
|
|
23
6
|
*
|
package/nestjs/CHANGELOG.md
DELETED
|
@@ -1,459 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
|
-
|
|
5
|
-
## [12.6.21](https://github.com/dereekb/dbx-components/compare/v12.6.20-dev...v12.6.21) (2026-02-18)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
## [12.6.20](https://github.com/dereekb/dbx-components/compare/v12.6.19-dev...v12.6.20) (2026-02-15)
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## [12.6.19](https://github.com/dereekb/dbx-components/compare/v12.6.18-dev...v12.6.19) (2026-02-13)
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [12.6.18](https://github.com/dereekb/dbx-components/compare/v12.6.17-dev...v12.6.18) (2026-02-10)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
## [12.6.17](https://github.com/dereekb/dbx-components/compare/v12.6.16-dev...v12.6.17) (2026-02-09)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## [12.6.16](https://github.com/dereekb/dbx-components/compare/v12.6.15-dev...v12.6.16) (2026-02-08)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
## [12.6.15](https://github.com/dereekb/dbx-components/compare/v12.6.14-dev...v12.6.15) (2026-02-07)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
## [12.6.14](https://github.com/dereekb/dbx-components/compare/v12.6.13-dev...v12.6.14) (2026-02-06)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## [12.6.13](https://github.com/dereekb/dbx-components/compare/v12.6.12-dev...v12.6.13) (2026-02-06)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## [12.6.12](https://github.com/dereekb/dbx-components/compare/v12.6.10-dev-dev...v12.6.12) (2026-02-04)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
## [12.6.11](https://github.com/dereekb/dbx-components/compare/v12.6.10-dev...v12.6.11) (2026-02-03)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## [12.6.10](https://github.com/dereekb/dbx-components/compare/v12.6.9-dev...v12.6.10) (2026-01-30)
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
## [12.6.9](https://github.com/dereekb/dbx-components/compare/v12.6.8-dev...v12.6.9) (2026-01-26)
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## [12.6.8](https://github.com/dereekb/dbx-components/compare/v12.6.7-dev...v12.6.8) (2026-01-19)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
## [12.6.7](https://github.com/dereekb/dbx-components/compare/v12.6.6-dev...v12.6.7) (2026-01-06)
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
## [12.6.6](https://github.com/dereekb/dbx-components/compare/v12.6.5-dev...v12.6.6) (2025-12-31)
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
## [12.6.5](https://github.com/dereekb/dbx-components/compare/v12.6.4-dev...v12.6.5) (2025-12-30)
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
## [12.6.4](https://github.com/dereekb/dbx-components/compare/v12.6.3-dev...v12.6.4) (2025-12-16)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
## [12.6.3](https://github.com/dereekb/dbx-components/compare/v12.6.2-dev...v12.6.3) (2025-12-16)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
## [12.6.2](https://github.com/dereekb/dbx-components/compare/v12.6.1-dev...v12.6.2) (2025-12-08)
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
## [12.6.1](https://github.com/dereekb/dbx-components/compare/v12.6.0-dev...v12.6.1) (2025-12-07)
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
# [12.6.0](https://github.com/dereekb/dbx-components/compare/v12.5.10-dev...v12.6.0) (2025-12-02)
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
## [12.5.10](https://github.com/dereekb/dbx-components/compare/v12.5.9-dev...v12.5.10) (2025-11-21)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
## [12.5.9](https://github.com/dereekb/dbx-components/compare/v12.5.8-dev...v12.5.9) (2025-11-16)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
## [12.5.8](https://github.com/dereekb/dbx-components/compare/v12.5.7-dev...v12.5.8) (2025-11-06)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
## [12.5.7](https://github.com/dereekb/dbx-components/compare/v12.5.6-dev...v12.5.7) (2025-11-05)
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
## [12.5.6](https://github.com/dereekb/dbx-components/compare/v12.5.5-dev...v12.5.6) (2025-11-02)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
## [12.5.5](https://github.com/dereekb/dbx-components/compare/v12.5.4-dev...v12.5.5) (2025-10-18)
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
## [12.5.4](https://github.com/dereekb/dbx-components/compare/v12.5.3-dev...v12.5.4) (2025-10-17)
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
## [12.5.3](https://github.com/dereekb/dbx-components/compare/v12.5.2-dev...v12.5.3) (2025-10-16)
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
## [12.5.2](https://github.com/dereekb/dbx-components/compare/v12.5.1-dev...v12.5.2) (2025-10-15)
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
## [12.5.1](https://github.com/dereekb/dbx-components/compare/v12.5.0-dev...v12.5.1) (2025-10-14)
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
# [12.5.0](https://github.com/dereekb/dbx-components/compare/v12.4.5-dev...v12.5.0) (2025-10-13)
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
## [12.4.5](https://github.com/dereekb/dbx-components/compare/v12.4.4-dev...v12.4.5) (2025-09-14)
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
## [12.4.4](https://github.com/dereekb/dbx-components/compare/v12.4.3-dev...v12.4.4) (2025-09-11)
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
## [12.4.3](https://github.com/dereekb/dbx-components/compare/v12.4.2-dev...v12.4.3) (2025-09-11)
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
## [12.4.2](https://github.com/dereekb/dbx-components/compare/v12.4.1-dev...v12.4.2) (2025-09-10)
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
## [12.4.1](https://github.com/dereekb/dbx-components/compare/v12.4.0-dev...v12.4.1) (2025-09-09)
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
# [12.4.0](https://github.com/dereekb/dbx-components/compare/v12.3.12-dev-dev...v12.4.0) (2025-08-30)
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
## [12.3.13](https://github.com/dereekb/dbx-components/compare/v12.3.12-dev...v12.3.13) (2025-08-22)
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
## [12.3.12](https://github.com/dereekb/dbx-components/compare/v12.3.11-dev...v12.3.12) (2025-08-20)
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
## [12.3.11](https://github.com/dereekb/dbx-components/compare/v12.3.10-dev...v12.3.11) (2025-08-19)
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
## [12.3.10](https://github.com/dereekb/dbx-components/compare/v12.3.9-dev...v12.3.10) (2025-08-15)
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
## [12.3.9](https://github.com/dereekb/dbx-components/compare/v12.3.8-dev...v12.3.9) (2025-08-15)
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
## [12.3.8](https://github.com/dereekb/dbx-components/compare/v12.3.7-dev...v12.3.8) (2025-08-14)
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
## [12.3.7](https://github.com/dereekb/dbx-components/compare/v12.3.6-dev...v12.3.7) (2025-08-14)
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
## [12.3.6](https://github.com/dereekb/dbx-components/compare/v12.3.5-dev...v12.3.6) (2025-08-13)
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
## [12.3.5](https://github.com/dereekb/dbx-components/compare/v12.3.4-dev...v12.3.5) (2025-08-12)
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
## [12.3.4](https://github.com/dereekb/dbx-components/compare/v12.3.3-dev...v12.3.4) (2025-08-06)
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
## [12.3.3](https://github.com/dereekb/dbx-components/compare/v12.3.2-dev...v12.3.3) (2025-08-06)
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
## [12.3.2](https://github.com/dereekb/dbx-components/compare/v12.3.1-dev...v12.3.2) (2025-08-04)
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
## [12.3.1](https://github.com/dereekb/dbx-components/compare/v12.3.0-dev...v12.3.1) (2025-07-11)
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
# [12.3.0](https://github.com/dereekb/dbx-components/compare/v12.2.1-dev...v12.3.0) (2025-07-04)
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
## [12.2.1](https://github.com/dereekb/dbx-components/compare/v12.2.0-dev...v12.2.1) (2025-07-02)
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
# [12.2.0](https://github.com/dereekb/dbx-components/compare/v12.1.14-dev...v12.2.0) (2025-06-29)
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
## [12.1.14](https://github.com/dereekb/dbx-components/compare/v12.1.13-dev...v12.1.14) (2025-06-27)
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
## [12.1.13](https://github.com/dereekb/dbx-components/compare/v12.1.12-dev...v12.1.13) (2025-06-23)
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
## [12.1.12](https://github.com/dereekb/dbx-components/compare/v12.1.11...v12.1.12) (2025-06-19)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
## [12.1.11](https://github.com/dereekb/dbx-components/compare/v12.1.10...v12.1.11) (2025-06-17)
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
## [12.1.10](https://github.com/dereekb/dbx-components/compare/v12.1.9...v12.1.10) (2025-06-13)
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
## [12.1.9](https://github.com/dereekb/dbx-components/compare/v12.1.8...v12.1.9) (2025-06-09)
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
## [12.1.8](https://github.com/dereekb/dbx-components/compare/v12.1.7...v12.1.8) (2025-06-08)
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
## [12.1.7](https://github.com/dereekb/dbx-components/compare/v12.1.6...v12.1.7) (2025-06-04)
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
## [12.1.6](https://github.com/dereekb/dbx-components/compare/v12.1.5-dev...v12.1.6) (2025-06-04)
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
## [12.1.5](https://github.com/dereekb/dbx-components/compare/v12.1.4-dev...v12.1.5) (2025-05-30)
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
## [12.1.4](https://github.com/dereekb/dbx-components/compare/v12.1.3-dev...v12.1.4) (2025-05-22)
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
## [12.1.3](https://github.com/dereekb/dbx-components/compare/v12.1.2-dev...v12.1.3) (2025-05-20)
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
## [12.1.2](https://github.com/dereekb/dbx-components/compare/v12.1.1-dev...v12.1.2) (2025-05-13)
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
## [12.1.1](https://github.com/dereekb/dbx-components/compare/v12.1.0-dev...v12.1.1) (2025-05-12)
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
# [12.1.0](https://github.com/dereekb/dbx-components/compare/v12.0.6-dev...v12.1.0) (2025-05-10)
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
### Features
|
|
285
|
-
|
|
286
|
-
* zoom api ([#29](https://github.com/dereekb/dbx-components/issues/29)) ([555a82a](https://github.com/dereekb/dbx-components/commit/555a82a321c82884d51bcff8bd54ad8c7b4e9f17))
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
## [12.0.6](https://github.com/dereekb/dbx-components/compare/v12.0.5-dev...v12.0.6) (2025-05-07)
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
## [12.0.5](https://github.com/dereekb/dbx-components/compare/v12.0.4-dev...v12.0.5) (2025-05-02)
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
## [12.0.4](https://github.com/dereekb/dbx-components/compare/v12.0.3-dev...v12.0.4) (2025-04-29)
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
## [12.0.3](https://github.com/dereekb/dbx-components/compare/v12.0.2-dev...v12.0.3) (2025-04-29)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
## [12.0.2](https://github.com/dereekb/dbx-components/compare/v12.0.1-dev...v12.0.2) (2025-04-26)
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
## [12.0.1](https://github.com/dereekb/dbx-components/compare/v12.0.0-dev...v12.0.1) (2025-04-25)
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
# [12.0.0](https://github.com/dereekb/dbx-components/compare/v11.1.8-dev...v12.0.0) (2025-04-23)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
### Features
|
|
318
|
-
|
|
319
|
-
* angular 18 ([#28](https://github.com/dereekb/dbx-components/issues/28)) ([c8f5472](https://github.com/dereekb/dbx-components/commit/c8f5472026b47c8877f404a9c87bf7a3fa68b45b))
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
## [11.1.8](https://github.com/dereekb/dbx-components/compare/v11.1.7-dev...v11.1.8) (2025-04-04)
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
## [11.1.7](https://github.com/dereekb/dbx-components/compare/v11.1.6-dev...v11.1.7) (2025-03-26)
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
## [11.1.6](https://github.com/dereekb/dbx-components/compare/v11.1.5-dev...v11.1.6) (2025-03-20)
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
## [11.1.5](https://github.com/dereekb/dbx-components/compare/v11.1.4-dev...v11.1.5) (2025-03-20)
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
## [11.1.4](https://github.com/dereekb/dbx-components/compare/v11.1.3-dev...v11.1.4) (2025-03-17)
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
## [11.1.3](https://github.com/dereekb/dbx-components/compare/v11.1.2-dev...v11.1.3) (2025-03-07)
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
## [11.1.2](https://github.com/dereekb/dbx-components/compare/v11.1.1-dev...v11.1.2) (2025-03-04)
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
## [11.1.1](https://github.com/dereekb/dbx-components/compare/v11.1.0-dev...v11.1.1) (2025-03-03)
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
# [11.1.0](https://github.com/dereekb/dbx-components/compare/v11.0.21-dev...v11.1.0) (2025-02-28)
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
### Features
|
|
359
|
-
|
|
360
|
-
* notifications ([#27](https://github.com/dereekb/dbx-components/issues/27)) ([d83bdc3](https://github.com/dereekb/dbx-components/commit/d83bdc3c2f308a25cc4cb12e6eedd126e91c46a4))
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
## [11.0.21](https://github.com/dereekb/dbx-components/compare/v11.0.20-dev...v11.0.21) (2025-01-28)
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
## [11.0.20](https://github.com/dereekb/dbx-components/compare/v11.0.19-dev...v11.0.20) (2025-01-20)
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
## [11.0.19](https://github.com/dereekb/dbx-components/compare/v11.0.18-dev...v11.0.19) (2025-01-09)
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
## [11.0.18](https://github.com/dereekb/dbx-components/compare/v11.0.17-dev...v11.0.18) (2024-12-13)
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
## [11.0.17](https://github.com/dereekb/dbx-components/compare/v11.0.16-dev...v11.0.17) (2024-12-05)
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
## [11.0.16](https://github.com/dereekb/dbx-components/compare/v11.0.15-dev...v11.0.16) (2024-12-05)
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
## [11.0.15](https://github.com/dereekb/dbx-components/compare/v11.0.14-dev...v11.0.15) (2024-11-29)
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
## [11.0.14](https://github.com/dereekb/dbx-components/compare/v11.0.13-dev...v11.0.14) (2024-11-27)
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
## [11.0.13](https://github.com/dereekb/dbx-components/compare/v11.0.12-dev...v11.0.13) (2024-11-27)
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
## [11.0.12](https://github.com/dereekb/dbx-components/compare/v11.0.11-dev...v11.0.12) (2024-11-24)
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
## [11.0.10](https://github.com/dereekb/dbx-components/compare/v11.0.9-dev...v11.0.10) (2024-11-24)
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
## [11.0.9](https://github.com/dereekb/dbx-components/compare/v11.0.8-dev...v11.0.9) (2024-11-23)
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
## [11.0.8](https://github.com/dereekb/dbx-components/compare/v11.0.7-dev...v11.0.8) (2024-11-23)
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
## [11.0.7](https://github.com/dereekb/dbx-components/compare/v11.0.6-dev...v11.0.7) (2024-11-22)
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
## [11.0.6](https://github.com/dereekb/dbx-components/compare/v11.0.5-dev...v11.0.6) (2024-11-20)
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
## [11.0.5](https://github.com/dereekb/dbx-components/compare/v11.0.4-dev...v11.0.5) (2024-11-19)
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
## [11.0.4](https://github.com/dereekb/dbx-components/compare/v11.0.3-dev...v11.0.4) (2024-11-19)
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
## [11.0.3](https://github.com/dereekb/dbx-components/compare/v11.0.2-dev...v11.0.3) (2024-11-15)
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
## [11.0.2](https://github.com/dereekb/dbx-components/compare/v11.0.1-dev...v11.0.2) (2024-11-14)
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
## [11.0.1](https://github.com/dereekb/dbx-components/compare/v11.0.0-dev...v11.0.1) (2024-11-12)
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
# [11.0.0](https://github.com/dereekb/dbx-components/compare/v10.2.0-dev...v11.0.0) (2024-11-12)
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
# [10.2.0](https://github.com/dereekb/dbx-components/compare/v10.1.30-dev...v10.2.0) (2024-11-07)
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
### Features
|
|
452
|
-
|
|
453
|
-
* zoho recruit ([#26](https://github.com/dereekb/dbx-components/issues/26)) ([8e028fd](https://github.com/dereekb/dbx-components/commit/8e028fd6fc57fb276ce04d37ce010fb5a42d4157))
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
# Changelog
|
|
458
|
-
|
|
459
|
-
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
package/nestjs/README.md
DELETED
package/nestjs/src/index.js
DELETED
package/nestjs/src/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/zoho/nestjs/src/index.ts"],"names":[],"mappings":";;;AAAA,gDAAsB"}
|