forked from microsoftgraph/msgraph-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.js
More file actions
18 lines (18 loc) · 757 Bytes
/
common.js
File metadata and controls
18 lines (18 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.oDataQueryNames = ["select", "expand", "orderby", "filter", "top", "skip", "skipToken", "count"];
exports.DEFAULT_VERSION = "v1.0";
exports.GRAPH_BASE_URL = "https://graph.microsoft.com/";
/**
* @constant
* A package version
* @NOTE: This should be kept up to date with the version used in package.json.
* If you are changing this please ensure you are also changing it in package.json.
*/
exports.PACKAGE_VERSION = "1.3.0";
/**
* @extends
* support oData params with and without $ prefix
*/
exports.oDataQueryNames = exports.oDataQueryNames.concat(exports.oDataQueryNames.map(function (s) { return "$" + s; }));
//# sourceMappingURL=common.js.map