@checkfirst/nestjs-outlook 1.0.0 → 2.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/README.md CHANGED
@@ -217,8 +217,8 @@ This project adheres to a Code of Conduct that all participants are expected to
217
217
  <img src="https://raw.githubusercontent.com/checkfirst-ltd/nestjs-outlook/main/assets/checkfirst-logo.png" width="400" alt="CheckFirst Logo" />
218
218
  </a>
219
219
 
220
- [CheckFirst](https://checkfirst.ai) is a trusted provider of developer tools and solutions. We build open-source libraries that help developers create better applications faster.
220
+ [Checkfirst](https://checkfirst.ai) is a trusted provider of developer tools and solutions. We build open-source libraries that help developers create better applications faster.
221
221
 
222
222
  ## License
223
223
 
224
- [MIT](LICENSE) © [CheckFirst Ltd](https://checkfirst.ai)
224
+ [MIT](LICENSE) © [CheckFirst Ltd](https://checkfirst.ai)
package/dist/index.d.ts CHANGED
@@ -9,3 +9,4 @@ export * from './event-types.enum';
9
9
  export * from './constants';
10
10
  export * from './entities/outlook-webhook-subscription.entity';
11
11
  export * from './repositories/outlook-webhook-subscription.repository';
12
+ export * from './types';
package/dist/index.js CHANGED
@@ -25,4 +25,5 @@ __exportStar(require("./event-types.enum"), exports);
25
25
  __exportStar(require("./constants"), exports);
26
26
  __exportStar(require("./entities/outlook-webhook-subscription.entity"), exports);
27
27
  __exportStar(require("./repositories/outlook-webhook-subscription.repository"), exports);
28
+ __exportStar(require("./types"), exports);
28
29
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAGA,6DAA2C;AAG3C,mEAAiD;AAGjD,6DAA2C;AAC3C,oEAAkD;AAGlD,yEAAuD;AAGvD,gFAA8D;AAC9D,+EAA6D;AAG7D,qDAAmC;AAGnC,8CAA4B;AAG5B,iFAA+D;AAG/D,yFAAuE"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAGA,6DAA2C;AAG3C,mEAAiD;AAGjD,6DAA2C;AAC3C,oEAAkD;AAGlD,yEAAuD;AAGvD,gFAA8D;AAC9D,+EAA6D;AAG7D,qDAAmC;AAGnC,8CAA4B;AAG5B,iFAA+D;AAG/D,yFAAuE;AAGvE,0CAAwB"}
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter2 } from '@nestjs/event-emitter';
2
- import { Event, Subscription, ChangeNotification } from '@microsoft/microsoft-graph-types';
2
+ import { Event, Subscription, ChangeNotification } from '../types';
3
3
  import { MicrosoftAuthService } from './microsoft-auth.service';
4
4
  import { TokenResponse } from '../interfaces/outlook/token-response.interface';
5
5
  import { OutlookWebhookSubscriptionRepository } from '../repositories/outlook-webhook-subscription.repository';