Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Large file upload task #94

Merged
merged 10 commits into from
Aug 29, 2018
Merged
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ tmp
node_modules
typings
src/**/*.js
src/**/*.js.map
src/**/*.d.ts
coverage
**/*.tgz
samples/node/secrets.json
Expand All @@ -17,7 +19,8 @@ samples/typescript/graph-typings.d.ts
samples/typescript/sample.js.map
src/index.d.ts

spec/types/secrets*
spec/types/*.js
spec/types/*.d.ts
spec/types/*.js.map
spec/secrets.ts

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not required, remove.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed.


spec/**/*.js
spec/**/*.d.ts
spec/**/*.js.map
3 changes: 3 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"esnext": "true"
}
3 changes: 2 additions & 1 deletion browser-wrapper.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// make MicrosoftGraph globally accessible
// MicrosoftGraph.api() can be called directly
window.MicrosoftGraph = require('./lib/src/index.js');
window.MicrosoftGraph = require('./lib/src/index.js');
window.LargeFileUploadTask = require("./lib/src/LargeFileUploadTask.js").LargeFileUploadTask;
2 changes: 1 addition & 1 deletion lib/graph-js-sdk-web.js

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion lib/spec/core/urlGeneration.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/spec/core/urlGeneration.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion lib/spec/core/urlParsing.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/spec/core/urlParsing.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 13 additions & 2 deletions lib/src/GraphHelper.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/src/GraphHelper.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.