├── .gitattributes ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── OneNoteApi.csproj ├── OneNoteApi.sln ├── README.md ├── gulpfile.js ├── package.json ├── src ├── scripts │ ├── batchRequest.ts │ ├── contentType.ts │ ├── errorUtils.ts │ ├── iOneNoteApi.ts │ ├── oneNoteApi.ts │ ├── oneNoteApiBase.ts │ ├── oneNotePage.ts │ ├── orderBy.ts │ ├── structuredTypes.ts │ └── typedFormData.ts ├── tests │ ├── errorUtils_tests.ts │ ├── index.html │ ├── oneNotePage_tests.ts │ └── typedFormData_tests.ts └── tslint.json ├── target ├── oneNoteApi.d.ts ├── oneNoteApi.js └── oneNoteApi.min.js ├── tsconfig.json ├── tsd.json ├── tslint.json └── webpack.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/LICENSE -------------------------------------------------------------------------------- /OneNoteApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/OneNoteApi.csproj -------------------------------------------------------------------------------- /OneNoteApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/OneNoteApi.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/package.json -------------------------------------------------------------------------------- /src/scripts/batchRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/batchRequest.ts -------------------------------------------------------------------------------- /src/scripts/contentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/contentType.ts -------------------------------------------------------------------------------- /src/scripts/errorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/errorUtils.ts -------------------------------------------------------------------------------- /src/scripts/iOneNoteApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/iOneNoteApi.ts -------------------------------------------------------------------------------- /src/scripts/oneNoteApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/oneNoteApi.ts -------------------------------------------------------------------------------- /src/scripts/oneNoteApiBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/oneNoteApiBase.ts -------------------------------------------------------------------------------- /src/scripts/oneNotePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/oneNotePage.ts -------------------------------------------------------------------------------- /src/scripts/orderBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/orderBy.ts -------------------------------------------------------------------------------- /src/scripts/structuredTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/structuredTypes.ts -------------------------------------------------------------------------------- /src/scripts/typedFormData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/scripts/typedFormData.ts -------------------------------------------------------------------------------- /src/tests/errorUtils_tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/tests/errorUtils_tests.ts -------------------------------------------------------------------------------- /src/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/tests/index.html -------------------------------------------------------------------------------- /src/tests/oneNotePage_tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/tests/oneNotePage_tests.ts -------------------------------------------------------------------------------- /src/tests/typedFormData_tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/tests/typedFormData_tests.ts -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/src/tslint.json -------------------------------------------------------------------------------- /target/oneNoteApi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/target/oneNoteApi.d.ts -------------------------------------------------------------------------------- /target/oneNoteApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/target/oneNoteApi.js -------------------------------------------------------------------------------- /target/oneNoteApi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/target/oneNoteApi.min.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/tsd.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteApi/HEAD/webpack.config.js --------------------------------------------------------------------------------