We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb22741 + 8aee72f commit 431c010Copy full SHA for 431c010
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "2.0.11",
+ "version": "2.0.12",
3
"name": "onenoteapi",
4
"description": "JavaScript library to make calling the OneNote API easier.",
5
"main": "dist/OneNoteApi.js",
src/scripts/oneNoteApi.ts
@@ -75,10 +75,7 @@ export class OneNoteApi extends OneNoteApiBase implements IOneNoteApi {
75
webUrl: notebookWebUrl
76
};
77
78
- const oldUseBetaApi = this.useBetaApi;
79
- this.useBetaApi = true; // This API is only supported in beta
80
const returnValue = this.requestPromise(url, JSON.stringify(payload));
81
- this.useBetaApi = oldUseBetaApi;
82
return returnValue;
83
}
84
0 commit comments