-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated dependencies, ready to release
- Loading branch information
Showing
36 changed files
with
2,918 additions
and
1,710 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export declare const name = "@azure/msal-browser"; | ||
export declare const version = "3.26.1"; | ||
export declare const version = "3.27.0"; | ||
//# sourceMappingURL=packageMetadata.d.ts.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import "./groups.js"; | ||
import "./users.js"; | ||
import "./sites.js"; | ||
export { INotebook, INotebooks, IOneNote, IPages, IResources, ISection, ISections, Notebook, Notebooks, OneNote, Page, Pages, Resources, Section, Sections, } from "./types.js"; | ||
export { INotebook, INotebooks, IOneNote, IResources, ISection, ISections, Notebook, Notebooks, OneNote, ICopyProps, IOnenotePage, IOnenotePages, ISectionGroup, ISectionGroups, OnenotePage, OnenotePages, SectionGroup, SectionGroups, Resources, Section, Sections, } from "./types.js"; | ||
//# sourceMappingURL=index.d.ts.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import "./site.js"; | ||
export { IBaseExtensionData as IBaseOpenExtension, IOpenExtension, IOpenExtensions, OpenExtension, OpenExtensions, } from "./types.js"; | ||
//# sourceMappingURL=index.d.ts.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { IOpenExtensions } from "./types.js"; | ||
declare module "../sites/types" { | ||
interface _Site { | ||
readonly extensions: IOpenExtensions; | ||
} | ||
interface ISite { | ||
readonly extensions: IOpenExtensions; | ||
} | ||
} | ||
//# sourceMappingURL=site.d.ts.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { Extension as ExtensionType } from "@microsoft/microsoft-graph-types"; | ||
import { _GraphCollection } from "../graphqueryable.js"; | ||
import { IGetById, IDeleteable } from "../decorators.js"; | ||
export interface IBaseExtensionData { | ||
extensionName: string; | ||
} | ||
/** | ||
* Open Extension | ||
*/ | ||
export declare class _OpenExtension extends _GraphCollection<ExtensionType> { | ||
update<T extends IBaseExtensionData>(extension: T): Promise<any>; | ||
} | ||
export interface IOpenExtension extends _OpenExtension, IDeleteable { | ||
} | ||
export declare const OpenExtension: import("../graphqueryable.js").IGraphInvokableFactory<IOpenExtension>; | ||
/** | ||
* Open Extensions | ||
*/ | ||
export declare class _OpenExtensions extends _GraphCollection<ExtensionType> { | ||
create<T extends IBaseExtensionData>(extension: T): Promise<any>; | ||
} | ||
export interface IOpenExtensions extends _OpenExtensions, IGetById<IOpenExtension> { | ||
} | ||
export declare const OpenExtensions: import("../graphqueryable.js").IGraphInvokableFactory<IOpenExtensions>; | ||
//# sourceMappingURL=types.d.ts.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import "./site.js"; | ||
export * from "./webpart-types.js"; | ||
export { IPage, IPages, Page, Pages, HorizontalSection, HorizontalSectionColumn, HorizontalSectionColumns, HorizontalSections, IHorizontalSection, IHorizontalSectionColumn, IHorizontalSectionColumnInfo, IHorizontalSectionColumns, IHorizontalSectionInfo, IHorizontalSections, IPageInfo, IPageUserInfo, ISitePage, ISitePageInfo, ISitePages, IVerticalSection, IVerticalSectionInfo, IWebpart, IWebparts, SitePage, SitePages, VerticalSection, Webpart, Webparts, } from "./types.js"; | ||
//# sourceMappingURL=index.d.ts.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { IPages } from "./types.js"; | ||
declare module "../sites/types" { | ||
interface _Site { | ||
readonly pages: IPages; | ||
} | ||
interface ISite { | ||
readonly pages: IPages; | ||
} | ||
} | ||
//# sourceMappingURL=site.d.ts.map |
Oops, something went wrong.