diff --git a/packages/graph/compliance/types.ts b/packages/graph/compliance/types.ts index a55f6c6d7..0307c8eed 100644 --- a/packages/graph/compliance/types.ts +++ b/packages/graph/compliance/types.ts @@ -1,4 +1,4 @@ -import { Privacy as IPrivacyType, SubjectRightsRequest as ISubjectRightsRequestType, AuthoredNote as IAuthoredNoteType } from "@microsoft/microsoft-graph-types"; +import { Privacy as IPrivacyType, SubjectRightsRequest as ISubjectRightsRequestType, AuthoredNote as IAuthoredNoteType, ItemBody as ItemBodyType } from "@microsoft/microsoft-graph-types"; import { _GraphCollection, graphInvokableFactory, _GraphInstance, graphGet, _GraphQueryable, GraphQueryable } from "../graphqueryable.js"; import { IAddable, IGetById, IUpdateable, addable, defaultPath, getById, updateable } from "../decorators.js"; import { BlobParse } from "@pnp/queryable/index.js"; @@ -57,7 +57,7 @@ export const SubjectRightsRequest = graphInvokableFactory @getById(SubjectRightsRequest) @addable() export class _SubjectRightsRequests extends _GraphCollection {} -export interface ISubjectRightsRequests extends _SubjectRightsRequests, IGetById, IAddable {} +export interface ISubjectRightsRequests extends _SubjectRightsRequests, IGetById, IAddable {} export const SubjectRightsRequests = graphInvokableFactory(_SubjectRightsRequests); /** @@ -66,5 +66,5 @@ export const SubjectRightsRequests = graphInvokableFactory {} -export interface INotes extends _Notes, IAddable {} +export interface INotes extends _Notes, IAddable {} export const Notes = graphInvokableFactory(_Notes);