@dereekb/calcom 13.40.0 → 13.42.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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@dereekb/calcom/nestjs",
3
- "version": "13.40.0",
3
+ "version": "13.42.0",
4
4
  "type": "module",
5
5
  "peerDependencies": {
6
- "@dereekb/nestjs": "13.40.0",
7
- "@dereekb/rxjs": "13.40.0",
8
- "@dereekb/util": "13.40.0",
9
- "@dereekb/calcom": "13.40.0",
6
+ "@dereekb/nestjs": "13.42.0",
7
+ "@dereekb/rxjs": "13.42.0",
8
+ "@dereekb/util": "13.42.0",
9
+ "@dereekb/calcom": "13.42.0",
10
10
  "@nestjs/common": "^11.1.19",
11
11
  "@nestjs/config": "^4.0.4",
12
12
  "express": "^5.2.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/calcom",
3
- "version": "13.40.0",
3
+ "version": "13.42.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./nestjs": {
@@ -16,9 +16,9 @@
16
16
  }
17
17
  },
18
18
  "peerDependencies": {
19
- "@dereekb/nestjs": "13.40.0",
20
- "@dereekb/rxjs": "13.40.0",
21
- "@dereekb/util": "13.40.0",
19
+ "@dereekb/nestjs": "13.42.0",
20
+ "@dereekb/rxjs": "13.42.0",
21
+ "@dereekb/util": "13.42.0",
22
22
  "@nestjs/common": "^11.1.19",
23
23
  "@nestjs/config": "^4.0.4",
24
24
  "express": "^5.2.1",
@@ -40,7 +40,10 @@ export interface CalcomCalendarIntegrationApp {
40
40
  readonly publisher: string;
41
41
  readonly url: WebsiteUrl;
42
42
  readonly email: EmailAddress;
43
- readonly installed: boolean;
43
+ /**
44
+ * Whether the app is installed. Omitted by the API for some apps rather than returned as false.
45
+ */
46
+ readonly installed: Maybe<boolean>;
44
47
  readonly isOAuth: boolean;
45
48
  readonly dirName: Maybe<string>;
46
49
  readonly locationOption: Maybe<unknown>;