@dereekb/zoom 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.
Files changed (63) hide show
  1. package/LICENSE +1 -1
  2. package/index.cjs.js +4 -1417
  3. package/index.esm.js +5 -1418
  4. package/nestjs/index.cjs.js +692 -0
  5. package/nestjs/index.esm.js +662 -0
  6. package/nestjs/package.json +19 -3
  7. package/nestjs/src/lib/webhook/webhook.zoom.controller.d.ts +1 -1
  8. package/nestjs/src/lib/zoom/zoom.api.d.ts +1 -1
  9. package/package.json +14 -7
  10. package/src/lib/oauth/oauth.error.api.d.ts +2 -2
  11. package/src/lib/zoom/zoom.error.api.d.ts +2 -2
  12. package/src/lib/zoom.error.api.d.ts +2 -2
  13. package/src/lib/zoom.type.d.ts +2 -2
  14. package/nestjs/CHANGELOG.md +0 -459
  15. package/nestjs/README.md +0 -11
  16. package/nestjs/src/index.js +0 -5
  17. package/nestjs/src/index.js.map +0 -1
  18. package/nestjs/src/lib/index.js +0 -7
  19. package/nestjs/src/lib/index.js.map +0 -1
  20. package/nestjs/src/lib/oauth/index.js +0 -8
  21. package/nestjs/src/lib/oauth/index.js.map +0 -1
  22. package/nestjs/src/lib/oauth/oauth.api.js +0 -41
  23. package/nestjs/src/lib/oauth/oauth.api.js.map +0 -1
  24. package/nestjs/src/lib/oauth/oauth.config.js +0 -50
  25. package/nestjs/src/lib/oauth/oauth.config.js.map +0 -1
  26. package/nestjs/src/lib/oauth/oauth.module.js +0 -36
  27. package/nestjs/src/lib/oauth/oauth.module.js.map +0 -1
  28. package/nestjs/src/lib/oauth/oauth.service.js +0 -230
  29. package/nestjs/src/lib/oauth/oauth.service.js.map +0 -1
  30. package/nestjs/src/lib/webhook/index.js +0 -15
  31. package/nestjs/src/lib/webhook/index.js.map +0 -1
  32. package/nestjs/src/lib/webhook/webhook.zoom.config.js +0 -17
  33. package/nestjs/src/lib/webhook/webhook.zoom.config.js.map +0 -1
  34. package/nestjs/src/lib/webhook/webhook.zoom.controller.js +0 -38
  35. package/nestjs/src/lib/webhook/webhook.zoom.controller.js.map +0 -1
  36. package/nestjs/src/lib/webhook/webhook.zoom.js +0 -38
  37. package/nestjs/src/lib/webhook/webhook.zoom.js.map +0 -1
  38. package/nestjs/src/lib/webhook/webhook.zoom.module.js +0 -41
  39. package/nestjs/src/lib/webhook/webhook.zoom.module.js.map +0 -1
  40. package/nestjs/src/lib/webhook/webhook.zoom.service.js +0 -60
  41. package/nestjs/src/lib/webhook/webhook.zoom.service.js.map +0 -1
  42. package/nestjs/src/lib/webhook/webhook.zoom.type.common.js +0 -3
  43. package/nestjs/src/lib/webhook/webhook.zoom.type.common.js.map +0 -1
  44. package/nestjs/src/lib/webhook/webhook.zoom.type.js +0 -3
  45. package/nestjs/src/lib/webhook/webhook.zoom.type.js.map +0 -1
  46. package/nestjs/src/lib/webhook/webhook.zoom.type.meeting.js +0 -18
  47. package/nestjs/src/lib/webhook/webhook.zoom.type.meeting.js.map +0 -1
  48. package/nestjs/src/lib/webhook/webhook.zoom.type.validate.js +0 -5
  49. package/nestjs/src/lib/webhook/webhook.zoom.type.validate.js.map +0 -1
  50. package/nestjs/src/lib/webhook/webhook.zoom.validate.js +0 -25
  51. package/nestjs/src/lib/webhook/webhook.zoom.validate.js.map +0 -1
  52. package/nestjs/src/lib/webhook/webhook.zoom.verify.js +0 -27
  53. package/nestjs/src/lib/webhook/webhook.zoom.verify.js.map +0 -1
  54. package/nestjs/src/lib/zoom/index.js +0 -7
  55. package/nestjs/src/lib/zoom/index.js.map +0 -1
  56. package/nestjs/src/lib/zoom/zoom.api.js +0 -78
  57. package/nestjs/src/lib/zoom/zoom.api.js.map +0 -1
  58. package/nestjs/src/lib/zoom/zoom.config.js +0 -15
  59. package/nestjs/src/lib/zoom/zoom.config.js.map +0 -1
  60. package/nestjs/src/lib/zoom/zoom.module.js +0 -40
  61. package/nestjs/src/lib/zoom/zoom.module.js.map +0 -1
  62. /package/{index.cjs.d.ts → index.d.ts} +0 -0
  63. /package/{index.esm.d.ts → nestjs/index.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/zoom",
3
- "version": "12.6.21",
3
+ "version": "13.0.0",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./src/index.d.ts",
@@ -15,16 +15,23 @@
15
15
  },
16
16
  "./nestjs": {
17
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"
18
+ "module": "./nestjs/index.esm.js",
19
+ "main": "./nestjs/index.cjs.js",
20
+ "node": {
21
+ "require": "./nestjs/index.cjs.js"
22
+ },
23
+ "browser": {
24
+ "require": "./nestjs/index.cjs.js",
25
+ "import": "./nestjs/index.esm.js"
26
+ }
21
27
  }
22
28
  },
23
29
  "peerDependencies": {
24
- "@dereekb/util": "*",
25
- "make-error": "^1.3.0"
30
+ "@dereekb/util": "13.0.0",
31
+ "make-error": "^1.3.0",
32
+ "core-js": "^3.0.0"
26
33
  },
27
34
  "module": "./index.esm.js",
28
35
  "main": "./index.cjs.js",
29
- "types": "./index.esm.d.ts"
36
+ "types": "./index.d.ts"
30
37
  }
@@ -24,7 +24,7 @@ export declare class ZoomOAuthAuthFailureError extends FetchRequestFactoryError
24
24
  readonly reason?: string | undefined;
25
25
  constructor(reason?: string | undefined);
26
26
  }
27
- export declare const logZoomOAuthErrorToConsole: import("../zoom.error.api").LogZoomServerErrorFunction;
27
+ export declare const logZoomOAuthErrorToConsole: import("..").LogZoomServerErrorFunction;
28
28
  export declare function parseZoomOAuthError(responseError: FetchResponseError): Promise<ParsedZoomServerError>;
29
29
  export declare function parseZoomOAuthServerErrorResponseData(zoomServerError: ZoomServerErrorData, responseError: FetchResponseError): ParsedZoomServerError;
30
- export declare const handleZoomOAuthErrorFetch: import("../zoom.error.api").HandleZoomErrorFetchFactory;
30
+ export declare const handleZoomOAuthErrorFetch: import("..").HandleZoomErrorFetchFactory;
@@ -1,6 +1,6 @@
1
1
  import { type FetchResponseError } from '@dereekb/util/fetch';
2
2
  import { type ZoomServerErrorData, type ParsedZoomServerError } from '../zoom.error.api';
3
- export declare const logZoomErrorToConsole: import("../zoom.error.api").LogZoomServerErrorFunction;
3
+ export declare const logZoomErrorToConsole: import("..").LogZoomServerErrorFunction;
4
4
  export declare function parseZoomApiError(responseError: FetchResponseError): Promise<ParsedZoomServerError>;
5
5
  export declare function parseZoomApiServerErrorResponseData(zoomServerError: ZoomServerErrorData, responseError: FetchResponseError): ParsedZoomServerError;
6
- export declare const handleZoomErrorFetch: import("../zoom.error.api").HandleZoomErrorFetchFactory;
6
+ export declare const handleZoomErrorFetch: import("..").HandleZoomErrorFetchFactory;
@@ -1,4 +1,4 @@
1
- import { type ArrayOrValue, type Maybe, type UnixDateTimeNumber } from '@dereekb/util';
1
+ import { type ArrayOrValue, type Maybe, type UnixDateTimeMillisecondsNumber } from '@dereekb/util';
2
2
  import { type ConfiguredFetch, type FetchRequestFactoryError, FetchResponseError, type MakeUrlSearchParamsOptions } from '@dereekb/util/fetch';
3
3
  import { BaseError } from 'make-error';
4
4
  /**
@@ -112,7 +112,7 @@ export interface ZoomRateLimitHeaderDetails {
112
112
  /**
113
113
  * The time at which the rate limit will reset.
114
114
  */
115
- readonly retryAfter?: UnixDateTimeNumber;
115
+ readonly retryAfter?: UnixDateTimeMillisecondsNumber;
116
116
  /**
117
117
  * The time at which the rate limit will reset.
118
118
  */
@@ -1,4 +1,4 @@
1
- import { type UnixDateTimeNumber } from '@dereekb/util';
1
+ import { type UnixDateTimeMillisecondsNumber } from '@dereekb/util';
2
2
  /**
3
3
  * An identifier in Zoom.
4
4
  */
@@ -15,4 +15,4 @@ export type ZoomClientVersion = string;
15
15
  * Zoom webhook event type
16
16
  */
17
17
  export type ZoomWebhookEventTypeString = string;
18
- export type ZoomWebhookTimestamp = UnixDateTimeNumber;
18
+ export type ZoomWebhookTimestamp = UnixDateTimeMillisecondsNumber;
@@ -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
- * zoom 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
@@ -1,11 +0,0 @@
1
- # zoom-nestjs
2
-
3
- This library was generated with [Nx](https://nx.dev).
4
-
5
- ## Building
6
-
7
- Run `nx build zoom-nestjs` to build the library.
8
-
9
- ## Running unit tests
10
-
11
- Run `nx test zoom-nestjs` to execute the unit tests via [Jest](https://jestjs.io).
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./lib"), exports);
5
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/zoom/nestjs/src/index.ts"],"names":[],"mappings":";;;AAAA,gDAAsB"}
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./oauth"), exports);
5
- tslib_1.__exportStar(require("./webhook"), exports);
6
- tslib_1.__exportStar(require("./zoom"), exports);
7
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/zoom/nestjs/src/lib/index.ts"],"names":[],"mappings":";;;AAAA,kDAAwB;AACxB,oDAA0B;AAC1B,iDAAuB"}
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./oauth.api"), exports);
5
- tslib_1.__exportStar(require("./oauth.config"), exports);
6
- tslib_1.__exportStar(require("./oauth.module"), exports);
7
- tslib_1.__exportStar(require("./oauth.service"), exports);
8
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/zoom/nestjs/src/lib/oauth/index.ts"],"names":[],"mappings":";;;AAAA,sDAA4B;AAC5B,yDAA+B;AAC/B,yDAA+B;AAC/B,0DAAgC"}
@@ -1,41 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ZoomOAuthApi = void 0;
4
- const tslib_1 = require("tslib");
5
- const common_1 = require("@nestjs/common");
6
- const zoom_1 = require("@dereekb/zoom");
7
- const oauth_config_1 = require("./oauth.config");
8
- const oauth_service_1 = require("./oauth.service");
9
- let ZoomOAuthApi = class ZoomOAuthApi {
10
- config;
11
- cacheService;
12
- zoomOAuth;
13
- get oauthContext() {
14
- return this.zoomOAuth.oauthContext;
15
- }
16
- constructor(config, cacheService) {
17
- this.config = config;
18
- this.cacheService = cacheService;
19
- const accessTokenCache = config.zoomOAuth.accessTokenCache ? config.zoomOAuth.accessTokenCache : cacheService.loadZoomAccessTokenCache();
20
- this.zoomOAuth = (0, zoom_1.zoomOAuthFactory)(config.factoryConfig ?? {})({
21
- accessTokenCache,
22
- ...config.zoomOAuth
23
- });
24
- }
25
- // MARK: Accessors
26
- get serverAccessToken() {
27
- return (0, zoom_1.serverAccessToken)(this.oauthContext);
28
- }
29
- get userAccessToken() {
30
- return (0, zoom_1.userAccessToken)(this.oauthContext);
31
- }
32
- };
33
- exports.ZoomOAuthApi = ZoomOAuthApi;
34
- exports.ZoomOAuthApi = ZoomOAuthApi = tslib_1.__decorate([
35
- (0, common_1.Injectable)(),
36
- tslib_1.__param(0, (0, common_1.Inject)(oauth_config_1.ZoomOAuthServiceConfig)),
37
- tslib_1.__param(1, (0, common_1.Inject)(oauth_service_1.ZoomOAuthAccessTokenCacheService)),
38
- tslib_1.__metadata("design:paramtypes", [oauth_config_1.ZoomOAuthServiceConfig,
39
- oauth_service_1.ZoomOAuthAccessTokenCacheService])
40
- ], ZoomOAuthApi);
41
- //# sourceMappingURL=oauth.api.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"oauth.api.js","sourceRoot":"","sources":["../../../../../../../packages/zoom/nestjs/src/lib/oauth/oauth.api.ts"],"names":[],"mappings":";;;;AAAA,2CAAoD;AACpD,wCAAkH;AAClH,iDAAwD;AACxD,mDAAmE;AAG5D,IAAM,YAAY,GAAlB,MAAM,YAAY;IAQoB;IACU;IAR5C,SAAS,CAAY;IAE9B,IAAI,YAAY;QACd,OAAO,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC;IACrC,CAAC;IAED,YAC2C,MAA8B,EACpB,YAA8C;QADxD,WAAM,GAAN,MAAM,CAAwB;QACpB,iBAAY,GAAZ,YAAY,CAAkC;QAEjG,MAAM,gBAAgB,GAAG,MAAM,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAC,CAAC,YAAY,CAAC,wBAAwB,EAAE,CAAC;QACzI,IAAI,CAAC,SAAS,GAAG,IAAA,uBAAgB,EAAC,MAAM,CAAC,aAAa,IAAI,EAAE,CAAC,CAAC;YAC5D,gBAAgB;YAChB,GAAG,MAAM,CAAC,SAAS;SACpB,CAAC,CAAC;IACL,CAAC;IAED,kBAAkB;IAClB,IAAI,iBAAiB;QACnB,OAAO,IAAA,wBAAiB,EAAC,IAAI,CAAC,YAAY,CAAC,CAAC;IAC9C,CAAC;IAED,IAAI,eAAe;QACjB,OAAO,IAAA,sBAAe,EAAC,IAAI,CAAC,YAAY,CAAC,CAAC;IAC5C,CAAC;CACF,CAAA;AA1BY,oCAAY;uBAAZ,YAAY;IADxB,IAAA,mBAAU,GAAE;IASR,mBAAA,IAAA,eAAM,EAAC,qCAAsB,CAAC,CAAA;IAC9B,mBAAA,IAAA,eAAM,EAAC,gDAAgC,CAAC,CAAA;6CADQ,qCAAsB;QACN,gDAAgC;GATxF,YAAY,CA0BxB"}