Skip to content

Commit 7621b02

Browse files
Merge pull request #94 from microsoftgraph/LargeFileUploadTask
Support for Large file upload task
2 parents cadb721 + bcec01f commit 7621b02

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1677
-79
lines changed

.gitignore

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ tmp
66
node_modules
77
typings
88
src/**/*.js
9+
src/**/*.js.map
10+
src/**/*.d.ts
911
coverage
1012
**/*.tgz
1113
samples/node/secrets.json
@@ -17,7 +19,6 @@ samples/typescript/graph-typings.d.ts
1719
samples/typescript/sample.js.map
1820
src/index.d.ts
1921

20-
spec/types/secrets*
21-
spec/types/*.js
22-
spec/types/*.d.ts
23-
spec/types/*.js.map
22+
spec/**/*.js
23+
spec/**/*.d.ts
24+
spec/**/*.js.map

.jshintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"esnext": "true"
3+
}

browser-wrapper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// make MicrosoftGraph globally accessible
22
// MicrosoftGraph.api() can be called directly
3-
window.MicrosoftGraph = require('./lib/src/index.js');
3+
window.MicrosoftGraph = require('./lib/src/index.js');

lib/graph-js-sdk-core.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/graph-js-sdk-web.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/spec/core/urlGeneration.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/spec/core/urlGeneration.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/spec/core/urlParsing.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/spec/core/urlParsing.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/GraphHelper.js

Lines changed: 12 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)