@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 +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/services/outlook.service.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.js +18 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/microsoft-graph.types.d.ts +1 -0
- package/dist/types/microsoft-graph.types.js +3 -0
- package/dist/types/microsoft-graph.types.js.map +1 -0
- package/package.json +2 -2
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
|
-
[
|
|
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
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 '
|
|
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';
|