@dereekb/zoho 12.7.0 → 13.0.1

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.
Files changed (55) hide show
  1. package/LICENSE +1 -1
  2. package/index.cjs.default.js +1 -0
  3. package/index.cjs.js +1202 -3503
  4. package/index.cjs.mjs +2 -0
  5. package/index.esm.js +1203 -3499
  6. package/nestjs/index.cjs.default.js +1 -0
  7. package/nestjs/index.cjs.js +613 -0
  8. package/nestjs/index.cjs.mjs +2 -0
  9. package/nestjs/index.esm.js +597 -0
  10. package/nestjs/package.json +23 -4
  11. package/nestjs/src/lib/crm/crm.api.d.ts +2 -1
  12. package/nestjs/src/lib/recruit/recruit.api.d.ts +3 -3
  13. package/package.json +19 -17
  14. package/src/lib/accounts/accounts.error.api.d.ts +2 -2
  15. package/src/lib/crm/crm.api.tags.d.ts +24 -0
  16. package/src/lib/crm/crm.criteria.d.ts +1 -1
  17. package/src/lib/crm/crm.error.api.d.ts +2 -2
  18. package/src/lib/recruit/recruit.api.candidates.d.ts +2 -26
  19. package/src/lib/recruit/recruit.error.api.d.ts +2 -2
  20. package/src/lib/zoho.error.api.d.ts +2 -2
  21. package/src/lib/zoho.type.d.ts +1 -18
  22. package/nestjs/CHANGELOG.md +0 -468
  23. package/nestjs/README.md +0 -11
  24. package/nestjs/src/index.js +0 -5
  25. package/nestjs/src/index.js.map +0 -1
  26. package/nestjs/src/lib/accounts/accounts.api.js +0 -38
  27. package/nestjs/src/lib/accounts/accounts.api.js.map +0 -1
  28. package/nestjs/src/lib/accounts/accounts.config.js +0 -75
  29. package/nestjs/src/lib/accounts/accounts.config.js.map +0 -1
  30. package/nestjs/src/lib/accounts/accounts.service.js +0 -240
  31. package/nestjs/src/lib/accounts/accounts.service.js.map +0 -1
  32. package/nestjs/src/lib/accounts/index.js +0 -7
  33. package/nestjs/src/lib/accounts/index.js.map +0 -1
  34. package/nestjs/src/lib/crm/crm.api.js +0 -115
  35. package/nestjs/src/lib/crm/crm.api.js.map +0 -1
  36. package/nestjs/src/lib/crm/crm.config.js +0 -16
  37. package/nestjs/src/lib/crm/crm.config.js.map +0 -1
  38. package/nestjs/src/lib/crm/crm.module.js +0 -61
  39. package/nestjs/src/lib/crm/crm.module.js.map +0 -1
  40. package/nestjs/src/lib/crm/index.js +0 -7
  41. package/nestjs/src/lib/crm/index.js.map +0 -1
  42. package/nestjs/src/lib/index.js +0 -7
  43. package/nestjs/src/lib/index.js.map +0 -1
  44. package/nestjs/src/lib/recruit/index.js +0 -7
  45. package/nestjs/src/lib/recruit/index.js.map +0 -1
  46. package/nestjs/src/lib/recruit/recruit.api.js +0 -130
  47. package/nestjs/src/lib/recruit/recruit.api.js.map +0 -1
  48. package/nestjs/src/lib/recruit/recruit.config.js +0 -16
  49. package/nestjs/src/lib/recruit/recruit.config.js.map +0 -1
  50. package/nestjs/src/lib/recruit/recruit.module.js +0 -61
  51. package/nestjs/src/lib/recruit/recruit.module.js.map +0 -1
  52. package/nestjs/src/lib/zoho.config.js +0 -52
  53. package/nestjs/src/lib/zoho.config.js.map +0 -1
  54. /package/{index.cjs.d.ts → index.d.ts} +0 -0
  55. /package/{index.esm.d.ts → nestjs/index.d.ts} +0 -0
package/package.json CHANGED
@@ -1,30 +1,32 @@
1
1
  {
2
2
  "name": "@dereekb/zoho",
3
- "version": "12.7.0",
3
+ "version": "13.0.1",
4
4
  "exports": {
5
+ "./nestjs": {
6
+ "module": "./nestjs/index.esm.js",
7
+ "types": "./nestjs/index.d.ts",
8
+ "import": "./nestjs/index.cjs.mjs",
9
+ "default": "./nestjs/index.cjs.js"
10
+ },
11
+ "./package.json": "./package.json",
5
12
  ".": {
6
- "types": "./src/index.d.ts",
7
- "node": {
8
- "require": "./index.cjs.js"
9
- },
10
- "browser": {
11
- "require": "./index.cjs.js",
12
- "import": "./index.esm.js"
13
- },
13
+ "module": "./index.esm.js",
14
+ "types": "./index.d.ts",
15
+ "import": "./index.cjs.mjs",
14
16
  "default": "./index.cjs.js"
15
- },
16
- "./nestjs": {
17
- "types": "./nestjs/src/index.d.ts",
18
- "main": "./nestjs/src/index.js",
19
- "require": "./nestjs/src/index.js",
20
- "default": "./nestjs/src/index.js"
21
17
  }
22
18
  },
23
19
  "peerDependencies": {
24
- "@dereekb/util": "*",
20
+ "@dereekb/util": "13.0.1",
21
+ "@nestjs/common": "^11.0.0",
22
+ "@nestjs/config": "^4.0.0",
25
23
  "make-error": "^1.3.0"
26
24
  },
25
+ "devDependencies": {
26
+ "@nestjs/testing": "^11.0.0",
27
+ "date-fns": "^4.0.0"
28
+ },
27
29
  "module": "./index.esm.js",
28
30
  "main": "./index.cjs.js",
29
- "types": "./index.esm.d.ts"
31
+ "types": "./index.d.ts"
30
32
  }
@@ -21,8 +21,8 @@ export declare class ZohoAccountsAuthFailureError extends FetchRequestFactoryErr
21
21
  readonly reason?: string | undefined;
22
22
  constructor(reason?: string | undefined);
23
23
  }
24
- export declare const logZohoAccountsErrorToConsole: import("../zoho.error.api").LogZohoServerErrorFunction;
24
+ export declare const logZohoAccountsErrorToConsole: import("..").LogZohoServerErrorFunction;
25
25
  export declare function parseZohoAccountsError(responseError: FetchResponseError): Promise<ParsedZohoServerError>;
26
26
  export declare function parseZohoAccountsServerErrorResponseData(errorResponseData: ZohoServerErrorResponseData, responseError: FetchResponseError): ParsedZohoServerError;
27
27
  export declare const interceptZohoAccounts200StatusWithErrorResponse: import("@dereekb/util/fetch").FetchJsonInterceptJsonResponseFunction;
28
- export declare const handleZohoAccountsErrorFetch: import("../zoho.error.api").HandleZohoErrorFetchFactory;
28
+ export declare const handleZohoAccountsErrorFetch: import("..").HandleZohoErrorFetchFactory;
@@ -23,6 +23,30 @@ export declare function zohoCrmCreateTagsForModule(context: ZohoCrmContext): (in
23
23
  allErrorItems: ZohoCrmMultiRecordResultEntry<ZohoCrmCreateTagData, ZohoCrmChangeObjectResponseErrorEntry>[];
24
24
  successItems: ZohoCrmMultiRecordResultEntry<ZohoCrmCreateTagData, ZohoCrmChangeObjectResponseSuccessEntry<import("./crm").ZohoCrmChangeObjectDetails>>[];
25
25
  }>;
26
+ export interface ZohoCrmDeleteTagRequest {
27
+ readonly id: ZohoCrmTagId;
28
+ }
29
+ export interface ZohoCrmDeleteTagResponseSuccessEntry extends ZohoCrmChangeObjectLikeResponseSuccessEntryMeta {
30
+ readonly details: {
31
+ readonly id: ZohoCrmTagId;
32
+ };
33
+ }
34
+ export interface ZohoCrmDeleteTagResponse {
35
+ readonly tags: ZohoCrmDeleteTagResponseSuccessEntry;
36
+ }
37
+ export type ZohoCrmDeleteTagResult = ZohoCrmDeleteTagResponseSuccessEntry;
38
+ export type ZohoCrmDeleteTagFunction = (input: ZohoCrmDeleteTagRequest) => Promise<ZohoCrmDeleteTagResult>;
39
+ /**
40
+ * Deletes a single tag by ID.
41
+ *
42
+ * Note: A tag cannot be deleted if it is associated with any configuration (e.g. Workflow Rules).
43
+ *
44
+ * https://www.zoho.com/crm/developer/docs/api/v8/delete-tag.html
45
+ *
46
+ * @param context
47
+ * @returns
48
+ */
49
+ export declare function zohoCrmDeleteTag(context: ZohoCrmContext): ZohoCrmDeleteTagFunction;
26
50
  export interface ZohoCrmGetTagsRequest extends ZohoCrmModuleNameRef, ZohoCrmGetRecordsPageFilter {
27
51
  readonly my_tags?: string;
28
52
  }
@@ -15,5 +15,5 @@ export type ZohoCrmSearchRecordsCriteriaTreeElement<T = any> = ZohoCrmSearchReco
15
15
  export type ZohoCrmSearchRecordsCriteriaFilterType = ZohoSearchRecordsCriteriaFilterType;
16
16
  export type ZohoCrmSearchRecordsCriteriaEntryArray<T = any> = ZohoCrmSearchRecordsCriteriaEntry<T>[];
17
17
  export type ZohoCrmSearchRecordsCriteriaEntry<T = any> = ZohoSearchRecordsCriteriaEntry<T>;
18
- export declare const escapeZohoCrmFieldValueForCriteriaString: import("dist/packages/util/src").EscapeStringCharactersFunction;
18
+ export declare const escapeZohoCrmFieldValueForCriteriaString: import("@dereekb/util").EscapeStringCharactersFunction;
19
19
  export declare const zohoCrmSearchRecordsCriteriaEntryToCriteriaString: typeof zohoSearchRecordsCriteriaEntryToCriteriaString;
@@ -45,8 +45,8 @@ export declare class ZohoCrmRecordCrudNoMatchingRecordError extends ZohoCrmRecor
45
45
  }
46
46
  export declare function zohoCrmRecordCrudError(error: ZohoServerErrorDataWithDetails): ZohoCrmRecordCrudError;
47
47
  export declare function assertZohoCrmRecordDataArrayResultHasContent<T>(moduleName?: ZohoCrmModuleName, recordId?: ZohoCrmRecordId): <R extends ZohoDataArrayResultRef<T>>(x: R) => R;
48
- export declare const logZohoCrmErrorToConsole: import("../zoho.error.api").LogZohoServerErrorFunction;
48
+ export declare const logZohoCrmErrorToConsole: import("..").LogZohoServerErrorFunction;
49
49
  export declare function parseZohoCrmError(responseError: FetchResponseError): Promise<ParsedZohoServerError>;
50
50
  export declare function parseZohoCrmServerErrorResponseData(errorResponseData: ZohoServerErrorResponseData | ZohoServerErrorResponseDataArrayRef, responseError: FetchResponseError): ParsedZohoServerError;
51
51
  export declare const interceptZohoCrm200StatusWithErrorResponse: import("@dereekb/util/fetch").FetchJsonInterceptJsonResponseFunction;
52
- export declare const handleZohoCrmErrorFetch: import("../zoho.error.api").HandleZohoErrorFetchFactory;
52
+ export declare const handleZohoCrmErrorFetch: import("..").HandleZohoErrorFetchFactory;
@@ -62,32 +62,8 @@ export declare function zohoRecruitSearchAssociatedRecords<R extends ZohoRecruit
62
62
  export type ZohoRecruitSearchCandidateAssociatedJobOpeningRecordsInput = Omit<ZohoRecruitSearchAssociatedRecordsInput, 'module' | 'candidate_statuses'>;
63
63
  export type ZohoRecruitSearchCandidateAssociatedJobOpeningRecordsFunction<T extends ZohoRecruitRecord> = (input: ZohoRecruitSearchCandidateAssociatedJobOpeningRecordsInput) => Promise<ZohoRecruitSearchAssociatedRecordsResponse<T>>;
64
64
  export declare function zohoRecruitSearchCandidateAssociatedJobOpeningRecords<T extends ZohoRecruitRecord>(context: ZohoRecruitContext): ZohoRecruitSearchCandidateAssociatedJobOpeningRecordsFunction<T>;
65
- export declare function zohoRecruitSearchCandidateAssociatedJobOpeningRecordsPageFactory<T extends ZohoRecruitRecord>(context: ZohoRecruitContext): import("dist/packages/util/fetch/src").FetchPageFactory<ZohoRecruitSearchCandidateAssociatedJobOpeningRecordsInput, ZohoRecruitSearchAssociatedRecordsResponse<T>>;
65
+ export declare function zohoRecruitSearchCandidateAssociatedJobOpeningRecordsPageFactory<T extends ZohoRecruitRecord>(context: ZohoRecruitContext): import("@dereekb/util/fetch").FetchPageFactory<ZohoRecruitSearchCandidateAssociatedJobOpeningRecordsInput, ZohoRecruitSearchAssociatedRecordsResponse<T>>;
66
66
  export type ZohoRecruitSearchJobOpeningAssociatedCandidateRecordsInput = Omit<ZohoRecruitSearchAssociatedRecordsInput, 'module' | 'posting_title'>;
67
67
  export type ZohoRecruitSearchJobOpeningAssociatedCandidateRecordsFunction<T extends ZohoRecruitRecord> = (input: ZohoRecruitSearchJobOpeningAssociatedCandidateRecordsInput) => Promise<ZohoRecruitSearchAssociatedRecordsResponse<T>>;
68
68
  export declare function zohoRecruitSearchJobOpeningAssociatedCandidateRecords<T extends ZohoRecruitRecord>(context: ZohoRecruitContext, jobOpeningModuleName?: string): ZohoRecruitSearchJobOpeningAssociatedCandidateRecordsFunction<T>;
69
- export declare function zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory<T extends ZohoRecruitRecord>(context: ZohoRecruitContext): import("dist/packages/util/fetch/src").FetchPageFactory<ZohoRecruitSearchJobOpeningAssociatedCandidateRecordsInput, ZohoRecruitSearchAssociatedRecordsResponse<T>>;
70
- /**
71
- * @deprecated Use zohoRecruitAssociateCandidateRecordsWithJobOpenings instead.
72
- */
73
- export declare const associateCandidateRecordsWithJobOpenings: typeof zohoRecruitAssociateCandidateRecordsWithJobOpenings;
74
- /**
75
- * @deprecated Use zohoRecruitSearchAssociatedRecords instead.
76
- */
77
- export declare const searchAssociatedRecords: typeof zohoRecruitSearchAssociatedRecords;
78
- /**
79
- * @deprecated Use zohoRecruitSearchCandidateAssociatedJobOpeningRecords instead.
80
- */
81
- export declare const searchCandidateAssociatedJobOpeningRecords: typeof zohoRecruitSearchCandidateAssociatedJobOpeningRecords;
82
- /**
83
- * @deprecated Use zohoRecruitSearchCandidateAssociatedJobOpeningRecordsPageFactory instead.
84
- */
85
- export declare const searchCandidateAssociatedJobOpeningRecordsPageFactory: typeof zohoRecruitSearchCandidateAssociatedJobOpeningRecordsPageFactory;
86
- /**
87
- * @deprecated Use zohoRecruitSearchJobOpeningAssociatedCandidateRecords instead.
88
- */
89
- export declare const searchJobOpeningAssociatedCandidateRecords: typeof zohoRecruitSearchJobOpeningAssociatedCandidateRecords;
90
- /**
91
- * @deprecated Use zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory instead.
92
- */
93
- export declare const searchJobOpeningAssociatedCandidateRecordsPageFactory: typeof zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory;
69
+ export declare function zohoRecruitSearchJobOpeningAssociatedCandidateRecordsPageFactory<T extends ZohoRecruitRecord>(context: ZohoRecruitContext): import("@dereekb/util/fetch").FetchPageFactory<ZohoRecruitSearchJobOpeningAssociatedCandidateRecordsInput, ZohoRecruitSearchAssociatedRecordsResponse<T>>;
@@ -31,11 +31,11 @@ export declare class ZohoRecruitRecordCrudNoMatchingRecordError extends ZohoRecr
31
31
  }
32
32
  export declare function zohoRecruitRecordCrudError(error: ZohoServerErrorDataWithDetails): ZohoRecruitRecordCrudError;
33
33
  export declare function assertZohoRecruitRecordDataArrayResultHasContent<T>(moduleName?: ZohoRecruitModuleName, recordId?: ZohoRecruitRecordId): <R extends ZohoDataArrayResultRef<T>>(x: R) => R;
34
- export declare const logZohoRecruitErrorToConsole: import("../zoho.error.api").LogZohoServerErrorFunction;
34
+ export declare const logZohoRecruitErrorToConsole: import("..").LogZohoServerErrorFunction;
35
35
  export declare function parseZohoRecruitError(responseError: FetchResponseError): Promise<ParsedZohoServerError>;
36
36
  export declare function parseZohoRecruitServerErrorResponseData(errorResponseData: ZohoServerErrorResponseData, responseError: FetchResponseError): ParsedZohoServerError;
37
37
  export declare const interceptZohoRecruit200StatusWithErrorResponse: import("@dereekb/util/fetch").FetchJsonInterceptJsonResponseFunction;
38
- export declare const handleZohoRecruitErrorFetch: import("../zoho.error.api").HandleZohoErrorFetchFactory;
38
+ export declare const handleZohoRecruitErrorFetch: import("..").HandleZohoErrorFetchFactory;
39
39
  /**
40
40
  * @deprecated Use assertZohoRecruitRecordDataArrayResultHasContent instead.
41
41
  */
@@ -1,4 +1,4 @@
1
- import { type Maybe, type UnixDateTimeNumber } from '@dereekb/util';
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
4
  /**
@@ -223,7 +223,7 @@ export interface ZohoRateLimitHeaderDetails {
223
223
  /**
224
224
  * The time at which the rate limit will reset.
225
225
  */
226
- readonly reset: UnixDateTimeNumber;
226
+ readonly reset: UnixDateTimeMillisecondsNumber;
227
227
  /**
228
228
  * The time at which the rate limit will reset.
229
229
  */
@@ -1,23 +1,6 @@
1
- import { type Maybe, type MaybeNot, type WebsitePath } from '@dereekb/util';
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
  *
@@ -1,468 +0,0 @@
1
- # Changelog
2
-
3
- This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
-
5
- # [12.7.0](https://github.com/dereekb/dbx-components/compare/v12.6.21-dev...v12.7.0) (2026-02-20)
6
-
7
-
8
- ### Features
9
-
10
- * zoho crm ([#32](https://github.com/dereekb/dbx-components/issues/32)) ([abe424b](https://github.com/dereekb/dbx-components/commit/abe424b4ee58cef605a29a5839a2e36d22d24866))
11
-
12
-
13
-
14
- ## [12.6.21](https://github.com/dereekb/dbx-components/compare/v12.6.20-dev...v12.6.21) (2026-02-18)
15
-
16
-
17
-
18
- ## [12.6.20](https://github.com/dereekb/dbx-components/compare/v12.6.19-dev...v12.6.20) (2026-02-15)
19
-
20
-
21
-
22
- ## [12.6.19](https://github.com/dereekb/dbx-components/compare/v12.6.18-dev...v12.6.19) (2026-02-13)
23
-
24
-
25
-
26
- ## [12.6.18](https://github.com/dereekb/dbx-components/compare/v12.6.17-dev...v12.6.18) (2026-02-10)
27
-
28
-
29
-
30
- ## [12.6.17](https://github.com/dereekb/dbx-components/compare/v12.6.16-dev...v12.6.17) (2026-02-09)
31
-
32
-
33
-
34
- ## [12.6.16](https://github.com/dereekb/dbx-components/compare/v12.6.15-dev...v12.6.16) (2026-02-08)
35
-
36
-
37
-
38
- ## [12.6.15](https://github.com/dereekb/dbx-components/compare/v12.6.14-dev...v12.6.15) (2026-02-07)
39
-
40
-
41
-
42
- ## [12.6.14](https://github.com/dereekb/dbx-components/compare/v12.6.13-dev...v12.6.14) (2026-02-06)
43
-
44
-
45
-
46
- ## [12.6.13](https://github.com/dereekb/dbx-components/compare/v12.6.12-dev...v12.6.13) (2026-02-06)
47
-
48
-
49
-
50
- ## [12.6.12](https://github.com/dereekb/dbx-components/compare/v12.6.10-dev-dev...v12.6.12) (2026-02-04)
51
-
52
-
53
-
54
- ## [12.6.11](https://github.com/dereekb/dbx-components/compare/v12.6.10-dev...v12.6.11) (2026-02-03)
55
-
56
-
57
-
58
- ## [12.6.10](https://github.com/dereekb/dbx-components/compare/v12.6.9-dev...v12.6.10) (2026-01-30)
59
-
60
-
61
-
62
- ## [12.6.9](https://github.com/dereekb/dbx-components/compare/v12.6.8-dev...v12.6.9) (2026-01-26)
63
-
64
-
65
-
66
- ## [12.6.8](https://github.com/dereekb/dbx-components/compare/v12.6.7-dev...v12.6.8) (2026-01-19)
67
-
68
-
69
-
70
- ## [12.6.7](https://github.com/dereekb/dbx-components/compare/v12.6.6-dev...v12.6.7) (2026-01-06)
71
-
72
-
73
-
74
- ## [12.6.6](https://github.com/dereekb/dbx-components/compare/v12.6.5-dev...v12.6.6) (2025-12-31)
75
-
76
-
77
-
78
- ## [12.6.5](https://github.com/dereekb/dbx-components/compare/v12.6.4-dev...v12.6.5) (2025-12-30)
79
-
80
-
81
-
82
- ## [12.6.4](https://github.com/dereekb/dbx-components/compare/v12.6.3-dev...v12.6.4) (2025-12-16)
83
-
84
-
85
-
86
- ## [12.6.3](https://github.com/dereekb/dbx-components/compare/v12.6.2-dev...v12.6.3) (2025-12-16)
87
-
88
-
89
-
90
- ## [12.6.2](https://github.com/dereekb/dbx-components/compare/v12.6.1-dev...v12.6.2) (2025-12-08)
91
-
92
-
93
-
94
- ## [12.6.1](https://github.com/dereekb/dbx-components/compare/v12.6.0-dev...v12.6.1) (2025-12-07)
95
-
96
-
97
-
98
- # [12.6.0](https://github.com/dereekb/dbx-components/compare/v12.5.10-dev...v12.6.0) (2025-12-02)
99
-
100
-
101
-
102
- ## [12.5.10](https://github.com/dereekb/dbx-components/compare/v12.5.9-dev...v12.5.10) (2025-11-21)
103
-
104
-
105
-
106
- ## [12.5.9](https://github.com/dereekb/dbx-components/compare/v12.5.8-dev...v12.5.9) (2025-11-16)
107
-
108
-
109
-
110
- ## [12.5.8](https://github.com/dereekb/dbx-components/compare/v12.5.7-dev...v12.5.8) (2025-11-06)
111
-
112
-
113
-
114
- ## [12.5.7](https://github.com/dereekb/dbx-components/compare/v12.5.6-dev...v12.5.7) (2025-11-05)
115
-
116
-
117
-
118
- ## [12.5.6](https://github.com/dereekb/dbx-components/compare/v12.5.5-dev...v12.5.6) (2025-11-02)
119
-
120
-
121
-
122
- ## [12.5.5](https://github.com/dereekb/dbx-components/compare/v12.5.4-dev...v12.5.5) (2025-10-18)
123
-
124
-
125
-
126
- ## [12.5.4](https://github.com/dereekb/dbx-components/compare/v12.5.3-dev...v12.5.4) (2025-10-17)
127
-
128
-
129
-
130
- ## [12.5.3](https://github.com/dereekb/dbx-components/compare/v12.5.2-dev...v12.5.3) (2025-10-16)
131
-
132
-
133
-
134
- ## [12.5.2](https://github.com/dereekb/dbx-components/compare/v12.5.1-dev...v12.5.2) (2025-10-15)
135
-
136
-
137
-
138
- ## [12.5.1](https://github.com/dereekb/dbx-components/compare/v12.5.0-dev...v12.5.1) (2025-10-14)
139
-
140
-
141
-
142
- # [12.5.0](https://github.com/dereekb/dbx-components/compare/v12.4.5-dev...v12.5.0) (2025-10-13)
143
-
144
-
145
-
146
- ## [12.4.5](https://github.com/dereekb/dbx-components/compare/v12.4.4-dev...v12.4.5) (2025-09-14)
147
-
148
-
149
-
150
- ## [12.4.4](https://github.com/dereekb/dbx-components/compare/v12.4.3-dev...v12.4.4) (2025-09-11)
151
-
152
-
153
-
154
- ## [12.4.3](https://github.com/dereekb/dbx-components/compare/v12.4.2-dev...v12.4.3) (2025-09-11)
155
-
156
-
157
-
158
- ## [12.4.2](https://github.com/dereekb/dbx-components/compare/v12.4.1-dev...v12.4.2) (2025-09-10)
159
-
160
-
161
-
162
- ## [12.4.1](https://github.com/dereekb/dbx-components/compare/v12.4.0-dev...v12.4.1) (2025-09-09)
163
-
164
-
165
-
166
- # [12.4.0](https://github.com/dereekb/dbx-components/compare/v12.3.12-dev-dev...v12.4.0) (2025-08-30)
167
-
168
-
169
-
170
- ## [12.3.13](https://github.com/dereekb/dbx-components/compare/v12.3.12-dev...v12.3.13) (2025-08-22)
171
-
172
-
173
-
174
- ## [12.3.12](https://github.com/dereekb/dbx-components/compare/v12.3.11-dev...v12.3.12) (2025-08-20)
175
-
176
-
177
-
178
- ## [12.3.11](https://github.com/dereekb/dbx-components/compare/v12.3.10-dev...v12.3.11) (2025-08-19)
179
-
180
-
181
-
182
- ## [12.3.10](https://github.com/dereekb/dbx-components/compare/v12.3.9-dev...v12.3.10) (2025-08-15)
183
-
184
-
185
-
186
- ## [12.3.9](https://github.com/dereekb/dbx-components/compare/v12.3.8-dev...v12.3.9) (2025-08-15)
187
-
188
-
189
-
190
- ## [12.3.8](https://github.com/dereekb/dbx-components/compare/v12.3.7-dev...v12.3.8) (2025-08-14)
191
-
192
-
193
-
194
- ## [12.3.7](https://github.com/dereekb/dbx-components/compare/v12.3.6-dev...v12.3.7) (2025-08-14)
195
-
196
-
197
-
198
- ## [12.3.6](https://github.com/dereekb/dbx-components/compare/v12.3.5-dev...v12.3.6) (2025-08-13)
199
-
200
-
201
-
202
- ## [12.3.5](https://github.com/dereekb/dbx-components/compare/v12.3.4-dev...v12.3.5) (2025-08-12)
203
-
204
-
205
-
206
- ## [12.3.4](https://github.com/dereekb/dbx-components/compare/v12.3.3-dev...v12.3.4) (2025-08-06)
207
-
208
-
209
-
210
- ## [12.3.3](https://github.com/dereekb/dbx-components/compare/v12.3.2-dev...v12.3.3) (2025-08-06)
211
-
212
-
213
-
214
- ## [12.3.2](https://github.com/dereekb/dbx-components/compare/v12.3.1-dev...v12.3.2) (2025-08-04)
215
-
216
-
217
-
218
- ## [12.3.1](https://github.com/dereekb/dbx-components/compare/v12.3.0-dev...v12.3.1) (2025-07-11)
219
-
220
-
221
-
222
- # [12.3.0](https://github.com/dereekb/dbx-components/compare/v12.2.1-dev...v12.3.0) (2025-07-04)
223
-
224
-
225
-
226
- ## [12.2.1](https://github.com/dereekb/dbx-components/compare/v12.2.0-dev...v12.2.1) (2025-07-02)
227
-
228
-
229
-
230
- # [12.2.0](https://github.com/dereekb/dbx-components/compare/v12.1.14-dev...v12.2.0) (2025-06-29)
231
-
232
-
233
-
234
- ## [12.1.14](https://github.com/dereekb/dbx-components/compare/v12.1.13-dev...v12.1.14) (2025-06-27)
235
-
236
-
237
-
238
- ## [12.1.13](https://github.com/dereekb/dbx-components/compare/v12.1.12-dev...v12.1.13) (2025-06-23)
239
-
240
-
241
-
242
- ## [12.1.12](https://github.com/dereekb/dbx-components/compare/v12.1.11...v12.1.12) (2025-06-19)
243
-
244
-
245
-
246
- ## [12.1.11](https://github.com/dereekb/dbx-components/compare/v12.1.10...v12.1.11) (2025-06-17)
247
-
248
-
249
-
250
- ## [12.1.10](https://github.com/dereekb/dbx-components/compare/v12.1.9...v12.1.10) (2025-06-13)
251
-
252
-
253
-
254
- ## [12.1.9](https://github.com/dereekb/dbx-components/compare/v12.1.8...v12.1.9) (2025-06-09)
255
-
256
-
257
-
258
- ## [12.1.8](https://github.com/dereekb/dbx-components/compare/v12.1.7...v12.1.8) (2025-06-08)
259
-
260
-
261
-
262
- ## [12.1.7](https://github.com/dereekb/dbx-components/compare/v12.1.6...v12.1.7) (2025-06-04)
263
-
264
-
265
-
266
- ## [12.1.6](https://github.com/dereekb/dbx-components/compare/v12.1.5-dev...v12.1.6) (2025-06-04)
267
-
268
-
269
-
270
- ## [12.1.5](https://github.com/dereekb/dbx-components/compare/v12.1.4-dev...v12.1.5) (2025-05-30)
271
-
272
-
273
-
274
- ## [12.1.4](https://github.com/dereekb/dbx-components/compare/v12.1.3-dev...v12.1.4) (2025-05-22)
275
-
276
-
277
-
278
- ## [12.1.3](https://github.com/dereekb/dbx-components/compare/v12.1.2-dev...v12.1.3) (2025-05-20)
279
-
280
-
281
-
282
- ## [12.1.2](https://github.com/dereekb/dbx-components/compare/v12.1.1-dev...v12.1.2) (2025-05-13)
283
-
284
-
285
-
286
- ## [12.1.1](https://github.com/dereekb/dbx-components/compare/v12.1.0-dev...v12.1.1) (2025-05-12)
287
-
288
-
289
-
290
- # [12.1.0](https://github.com/dereekb/dbx-components/compare/v12.0.6-dev...v12.1.0) (2025-05-10)
291
-
292
-
293
- ### Features
294
-
295
- * zoom api ([#29](https://github.com/dereekb/dbx-components/issues/29)) ([555a82a](https://github.com/dereekb/dbx-components/commit/555a82a321c82884d51bcff8bd54ad8c7b4e9f17))
296
-
297
-
298
-
299
- ## [12.0.6](https://github.com/dereekb/dbx-components/compare/v12.0.5-dev...v12.0.6) (2025-05-07)
300
-
301
-
302
-
303
- ## [12.0.5](https://github.com/dereekb/dbx-components/compare/v12.0.4-dev...v12.0.5) (2025-05-02)
304
-
305
-
306
-
307
- ## [12.0.4](https://github.com/dereekb/dbx-components/compare/v12.0.3-dev...v12.0.4) (2025-04-29)
308
-
309
-
310
-
311
- ## [12.0.3](https://github.com/dereekb/dbx-components/compare/v12.0.2-dev...v12.0.3) (2025-04-29)
312
-
313
-
314
-
315
- ## [12.0.2](https://github.com/dereekb/dbx-components/compare/v12.0.1-dev...v12.0.2) (2025-04-26)
316
-
317
-
318
-
319
- ## [12.0.1](https://github.com/dereekb/dbx-components/compare/v12.0.0-dev...v12.0.1) (2025-04-25)
320
-
321
-
322
-
323
- # [12.0.0](https://github.com/dereekb/dbx-components/compare/v11.1.8-dev...v12.0.0) (2025-04-23)
324
-
325
-
326
- ### Features
327
-
328
- * angular 18 ([#28](https://github.com/dereekb/dbx-components/issues/28)) ([c8f5472](https://github.com/dereekb/dbx-components/commit/c8f5472026b47c8877f404a9c87bf7a3fa68b45b))
329
-
330
-
331
-
332
- ## [11.1.8](https://github.com/dereekb/dbx-components/compare/v11.1.7-dev...v11.1.8) (2025-04-04)
333
-
334
-
335
-
336
- ## [11.1.7](https://github.com/dereekb/dbx-components/compare/v11.1.6-dev...v11.1.7) (2025-03-26)
337
-
338
-
339
-
340
- ## [11.1.6](https://github.com/dereekb/dbx-components/compare/v11.1.5-dev...v11.1.6) (2025-03-20)
341
-
342
-
343
-
344
- ## [11.1.5](https://github.com/dereekb/dbx-components/compare/v11.1.4-dev...v11.1.5) (2025-03-20)
345
-
346
-
347
-
348
- ## [11.1.4](https://github.com/dereekb/dbx-components/compare/v11.1.3-dev...v11.1.4) (2025-03-17)
349
-
350
-
351
-
352
- ## [11.1.3](https://github.com/dereekb/dbx-components/compare/v11.1.2-dev...v11.1.3) (2025-03-07)
353
-
354
-
355
-
356
- ## [11.1.2](https://github.com/dereekb/dbx-components/compare/v11.1.1-dev...v11.1.2) (2025-03-04)
357
-
358
-
359
-
360
- ## [11.1.1](https://github.com/dereekb/dbx-components/compare/v11.1.0-dev...v11.1.1) (2025-03-03)
361
-
362
-
363
-
364
- # [11.1.0](https://github.com/dereekb/dbx-components/compare/v11.0.21-dev...v11.1.0) (2025-02-28)
365
-
366
-
367
- ### Features
368
-
369
- * notifications ([#27](https://github.com/dereekb/dbx-components/issues/27)) ([d83bdc3](https://github.com/dereekb/dbx-components/commit/d83bdc3c2f308a25cc4cb12e6eedd126e91c46a4))
370
-
371
-
372
-
373
- ## [11.0.21](https://github.com/dereekb/dbx-components/compare/v11.0.20-dev...v11.0.21) (2025-01-28)
374
-
375
-
376
-
377
- ## [11.0.20](https://github.com/dereekb/dbx-components/compare/v11.0.19-dev...v11.0.20) (2025-01-20)
378
-
379
-
380
-
381
- ## [11.0.19](https://github.com/dereekb/dbx-components/compare/v11.0.18-dev...v11.0.19) (2025-01-09)
382
-
383
-
384
-
385
- ## [11.0.18](https://github.com/dereekb/dbx-components/compare/v11.0.17-dev...v11.0.18) (2024-12-13)
386
-
387
-
388
-
389
- ## [11.0.17](https://github.com/dereekb/dbx-components/compare/v11.0.16-dev...v11.0.17) (2024-12-05)
390
-
391
-
392
-
393
- ## [11.0.16](https://github.com/dereekb/dbx-components/compare/v11.0.15-dev...v11.0.16) (2024-12-05)
394
-
395
-
396
-
397
- ## [11.0.15](https://github.com/dereekb/dbx-components/compare/v11.0.14-dev...v11.0.15) (2024-11-29)
398
-
399
-
400
-
401
- ## [11.0.14](https://github.com/dereekb/dbx-components/compare/v11.0.13-dev...v11.0.14) (2024-11-27)
402
-
403
-
404
-
405
- ## [11.0.13](https://github.com/dereekb/dbx-components/compare/v11.0.12-dev...v11.0.13) (2024-11-27)
406
-
407
-
408
-
409
- ## [11.0.12](https://github.com/dereekb/dbx-components/compare/v11.0.11-dev...v11.0.12) (2024-11-24)
410
-
411
-
412
-
413
- ## [11.0.10](https://github.com/dereekb/dbx-components/compare/v11.0.9-dev...v11.0.10) (2024-11-24)
414
-
415
-
416
-
417
- ## [11.0.9](https://github.com/dereekb/dbx-components/compare/v11.0.8-dev...v11.0.9) (2024-11-23)
418
-
419
-
420
-
421
- ## [11.0.8](https://github.com/dereekb/dbx-components/compare/v11.0.7-dev...v11.0.8) (2024-11-23)
422
-
423
-
424
-
425
- ## [11.0.7](https://github.com/dereekb/dbx-components/compare/v11.0.6-dev...v11.0.7) (2024-11-22)
426
-
427
-
428
-
429
- ## [11.0.6](https://github.com/dereekb/dbx-components/compare/v11.0.5-dev...v11.0.6) (2024-11-20)
430
-
431
-
432
-
433
- ## [11.0.5](https://github.com/dereekb/dbx-components/compare/v11.0.4-dev...v11.0.5) (2024-11-19)
434
-
435
-
436
-
437
- ## [11.0.4](https://github.com/dereekb/dbx-components/compare/v11.0.3-dev...v11.0.4) (2024-11-19)
438
-
439
-
440
-
441
- ## [11.0.3](https://github.com/dereekb/dbx-components/compare/v11.0.2-dev...v11.0.3) (2024-11-15)
442
-
443
-
444
-
445
- ## [11.0.2](https://github.com/dereekb/dbx-components/compare/v11.0.1-dev...v11.0.2) (2024-11-14)
446
-
447
-
448
-
449
- ## [11.0.1](https://github.com/dereekb/dbx-components/compare/v11.0.0-dev...v11.0.1) (2024-11-12)
450
-
451
-
452
-
453
- # [11.0.0](https://github.com/dereekb/dbx-components/compare/v10.2.0-dev...v11.0.0) (2024-11-12)
454
-
455
-
456
-
457
- # [10.2.0](https://github.com/dereekb/dbx-components/compare/v10.1.30-dev...v10.2.0) (2024-11-07)
458
-
459
-
460
- ### Features
461
-
462
- * zoho recruit ([#26](https://github.com/dereekb/dbx-components/issues/26)) ([8e028fd](https://github.com/dereekb/dbx-components/commit/8e028fd6fc57fb276ce04d37ce010fb5a42d4157))
463
-
464
-
465
-
466
- # Changelog
467
-
468
- This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).