Skip to content

Commit 5f44a2b

Browse files
1. Changed property value param to accept array of strings in select,
expand, orderby methods. 2. Fixed compilation error by adding required libraries in config.
1 parent a12bd44 commit 5f44a2b

12 files changed

+413
-383
lines changed

lib/graph-js-sdk-web.js

Lines changed: 397 additions & 371 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

lib/spec/core/urlGeneration.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

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.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

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/GraphRequest.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ export declare class GraphRequest {
1616
private urlJoin(urlSegments);
1717
buildFullUrl(): string;
1818
version(v: string): GraphRequest;
19-
select(properties: string | [string]): GraphRequest;
20-
expand(properties: string | [string]): GraphRequest;
21-
orderby(properties: string | [string]): GraphRequest;
19+
select(properties: string | string[]): GraphRequest;
20+
expand(properties: string | string[]): GraphRequest;
21+
orderby(properties: string | string[]): GraphRequest;
2222
filter(filterStr: string): GraphRequest;
2323
top(n: number): GraphRequest;
2424
skip(n: number): GraphRequest;

lib/src/GraphRequest.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/ResponseHandler.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/index.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.

0 commit comments

Comments
 (0)