Skip to content

Commit 8395500

Browse files
[skip ci] Update to 1.14.1 for bug fix in NullableOption export (#160)
* Update to 1.14.1 for bug fix in NullableOption export Skipping CI so we don't kick off auto-build workflow.
1 parent cf1a346 commit 8395500

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

microsoft-graph.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
// Type definitions for non-npm package microsoft-graph 1.14
1+
// Type definitions for non-npm package microsoft-graph 1.14.1
22
// Project: https://github.com/microsoftgraph/msgraph-typescript-typings
33
// Definitions by: Microsoft Graph Team <https://github.com/microsoftgraph>
44
// Michael Mainer <https://github.com/MIchaelMainer>
55
// Peter Ombwa <https://github.com/peombwa>
66
// Mustafa Zengin <https://github.com/zengin>
77
// DeVere Dyett <https://github.com/ddyett>
8+
// Nikitha Udaykumar Chettiar <https://github.com/nikithauc>
89
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
910
// TypeScript Version: 2.1
1011

1112
export as namespace microsoftgraph;
1213

13-
type NullableOption<T> = T | null;
14+
export type NullableOption<T> = T | null;
1415

1516
export type RiskLevel = "low" | "medium" | "high" | "hidden" | "none" | "unknownFutureValue";
1617
export type AppliedConditionalAccessPolicyResult =

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@microsoft/microsoft-graph-types",
33
"description": "Types for Microsoft Graph objects",
4-
"version": "1.14.0",
4+
"version": "1.14.1",
55
"license": "MIT",
66
"types": "microsoft-graph.d.ts",
77
"scripts": {

0 commit comments

Comments
 (0)