Skip to content

Commit a56ef88

Browse files
committed
add changes from the newest pipeline run with linting fixes
1 parent dabbfca commit a56ef88

File tree

1 file changed

+27
-29
lines changed

1 file changed

+27
-29
lines changed

microsoft-graph.d.ts

Lines changed: 27 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -13874,10 +13874,9 @@ export interface TimeRange {
1387413874
endTime?: NullableOption<string>;
1387513875
}
1387613876

13877-
1387813877
export namespace CallRecords {
13879-
export type CallType = "unknown" | "groupCall" | "peerToPeer" | "unknownFutureValue";
13880-
export type ClientPlatform =
13878+
type CallType = "unknown" | "groupCall" | "peerToPeer" | "unknownFutureValue";
13879+
type ClientPlatform =
1388113880
| "unknown"
1388213881
| "windows"
1388313882
| "macOS"
@@ -13889,11 +13888,11 @@ export namespace CallRecords {
1388913888
| "surfaceHub"
1389013889
| "holoLens"
1389113890
| "unknownFutureValue";
13892-
export type FailureStage = "unknown" | "callSetup" | "midcall" | "unknownFutureValue";
13893-
export type MediaStreamDirection = "callerToCallee" | "calleeToCaller";
13894-
export type NetworkConnectionType = "unknown" | "wired" | "wifi" | "mobile" | "tunnel" | "unknownFutureValue";
13895-
export type ProductFamily = "unknown" | "teams" | "skypeForBusiness" | "lync" | "unknownFutureValue";
13896-
export type ServiceRole =
13891+
type FailureStage = "unknown" | "callSetup" | "midcall" | "unknownFutureValue";
13892+
type MediaStreamDirection = "callerToCallee" | "calleeToCaller";
13893+
type NetworkConnectionType = "unknown" | "wired" | "wifi" | "mobile" | "tunnel" | "unknownFutureValue";
13894+
type ProductFamily = "unknown" | "teams" | "skypeForBusiness" | "lync" | "unknownFutureValue";
13895+
type ServiceRole =
1389713896
| "unknown"
1389813897
| "customBot"
1389913898
| "skypeForBusinessMicrosoftTeamsGateway"
@@ -13916,9 +13915,9 @@ export namespace CallRecords {
1391613915
| "responseGroupService"
1391713916
| "voicemail"
1391813917
| "unknownFutureValue";
13919-
export type UserFeedbackRating = "notRated" | "bad" | "poor" | "fair" | "good" | "excellent" | "unknownFutureValue";
13920-
export type WifiBand = "unknown" | "frequency24GHz" | "frequency50GHz" | "frequency60GHz" | "unknownFutureValue";
13921-
export type WifiRadioType =
13918+
type UserFeedbackRating = "notRated" | "bad" | "poor" | "fair" | "good" | "excellent" | "unknownFutureValue";
13919+
type WifiBand = "unknown" | "frequency24GHz" | "frequency50GHz" | "frequency60GHz" | "unknownFutureValue";
13920+
type WifiRadioType =
1392213921
| "unknown"
1392313922
| "wifi80211a"
1392413923
| "wifi80211b"
@@ -13927,8 +13926,8 @@ export namespace CallRecords {
1392713926
| "wifi80211ac"
1392813927
| "wifi80211ax"
1392913928
| "unknownFutureValue";
13930-
export type Modality = "audio" | "video" | "videoBasedScreenSharing" | "data" | "screenSharing" | "unknownFutureValue";
13931-
export interface CallRecord extends microsoftgraph.Entity {
13929+
type Modality = "audio" | "video" | "videoBasedScreenSharing" | "data" | "screenSharing" | "unknownFutureValue";
13930+
interface CallRecord extends microsoftgraph.Entity {
1393213931
/**
1393313932
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional
1393413933
* data compared to the lower version.
@@ -13969,7 +13968,7 @@ export namespace CallRecords {
1396913968
*/
1397013969
sessions?: NullableOption<Session[]>;
1397113970
}
13972-
export interface Session extends microsoftgraph.Entity {
13971+
interface Session extends microsoftgraph.Entity {
1397313972
/**
1397413973
* List of modalities present in the session. Possible values are: unknown, audio, video, videoBasedScreenSharing, data,
1397513974
* screenSharing, unknownFutureValue.
@@ -13996,7 +13995,7 @@ export namespace CallRecords {
1399613995
// The list of segments involved in the session. Read-only. Nullable.
1399713996
segments?: NullableOption<Segment[]>;
1399813997
}
13999-
export interface Segment extends microsoftgraph.Entity {
13998+
interface Segment extends microsoftgraph.Entity {
1400013999
/**
1400114000
* UTC time when the segment started. The DateTimeOffset type represents date and time information using ISO 8601 format
1400214001
* and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
@@ -14016,23 +14015,23 @@ export namespace CallRecords {
1401614015
// Media associated with this segment.
1401714016
media?: NullableOption<Media[]>;
1401814017
}
14019-
export interface Endpoint {
14018+
interface Endpoint {
1402014019
// User-agent reported by this endpoint.
1402114020
userAgent?: NullableOption<UserAgent>;
1402214021
}
14023-
export interface UserAgent {
14022+
interface UserAgent {
1402414023
// User-agent header value reported by this endpoint.
1402514024
headerValue?: NullableOption<string>;
1402614025
// Identifies the version of application software used by this endpoint.
1402714026
applicationVersion?: NullableOption<string>;
1402814027
}
14029-
export interface FailureInfo {
14028+
interface FailureInfo {
1403014029
// The stage when the failure occurred. Possible values are: unknown, callSetup, midcall, unknownFutureValue.
1403114030
stage?: FailureStage;
1403214031
// Classification of why a call or portion of a call failed.
1403314032
reason?: NullableOption<string>;
1403414033
}
14035-
export interface Media {
14034+
interface Media {
1403614035
// How the media was identified during media negotiation stage.
1403714036
label?: NullableOption<string>;
1403814037
// Network information associated with the caller endpoint of this media.
@@ -14046,7 +14045,7 @@ export namespace CallRecords {
1404614045
// Network streams associated with this media.
1404714046
streams?: NullableOption<MediaStream[]>;
1404814047
}
14049-
export interface NetworkInfo {
14048+
interface NetworkInfo {
1405014049
// IP address of the media endpoint.
1405114050
ipAddress?: NullableOption<string>;
1405214051
// Subnet used for media stream by the media endpoint.
@@ -14117,7 +14116,7 @@ export namespace CallRecords {
1411714116
*/
1411814117
bandwidthLowEventRatio?: NullableOption<number>;
1411914118
}
14120-
export interface DeviceInfo {
14119+
interface DeviceInfo {
1412114120
// Name of the capture device used by the media endpoint.
1412214121
captureDeviceName?: NullableOption<string>;
1412314122
// Name of the capture device driver used by the media endpoint.
@@ -14188,7 +14187,7 @@ export namespace CallRecords {
1418814187
// Glitches per 5 minute internal for the media endpoint's loudspeaker.
1418914188
speakerGlitchRate?: NullableOption<number>;
1419014189
}
14191-
export interface MediaStream {
14190+
interface MediaStream {
1419214191
// Unique identifier for the stream.
1419314192
streamId?: NullableOption<string>;
1419414193
/**
@@ -14279,13 +14278,13 @@ export namespace CallRecords {
1427914278
*/
1428014279
maxAudioNetworkJitter?: NullableOption<string>;
1428114280
}
14282-
export interface ParticipantEndpoint extends Endpoint {
14281+
interface ParticipantEndpoint extends Endpoint {
1428314282
// Identity associated with the endpoint.
1428414283
identity?: NullableOption<microsoftgraph.IdentitySet>;
1428514284
// The feedback provided by the user of this endpoint about the quality of the session.
1428614285
feedback?: NullableOption<UserFeedback>;
1428714286
}
14288-
export interface UserFeedback {
14287+
interface UserFeedback {
1428914288
// The feedback text provided by the user of this endpoint for the session.
1429014289
text?: NullableOption<string>;
1429114290
/**
@@ -14300,10 +14299,10 @@ export namespace CallRecords {
1430014299
tokens?: NullableOption<FeedbackTokenSet>;
1430114300
}
1430214301
// tslint:disable-next-line: no-empty-interface
14303-
export interface FeedbackTokenSet {}
14302+
interface FeedbackTokenSet {}
1430414303
// tslint:disable-next-line: no-empty-interface
14305-
export interface ServiceEndpoint extends Endpoint {}
14306-
export interface ClientUserAgent extends UserAgent {
14304+
interface ServiceEndpoint extends Endpoint {}
14305+
interface ClientUserAgent extends UserAgent {
1430714306
/**
1430814307
* Identifies the platform used by this endpoint. Possible values are: unknown, windows, macOS, iOS, android, web,
1430914308
* ipPhone, roomSystem, surfaceHub, holoLens, unknownFutureValue.
@@ -14315,7 +14314,7 @@ export namespace CallRecords {
1431514314
*/
1431614315
productFamily?: ProductFamily;
1431714316
}
14318-
export interface ServiceUserAgent extends UserAgent {
14317+
interface ServiceUserAgent extends UserAgent {
1431914318
/**
1432014319
* Identifies the role of the service used by this endpoint. Possible values are: unknown, customBot,
1432114320
* skypeForBusinessMicrosoftTeamsGateway, skypeForBusinessAudioVideoMcu, skypeForBusinessApplicationSharingMcu,
@@ -14328,4 +14327,3 @@ export namespace CallRecords {
1432814327
role?: ServiceRole;
1432914328
}
1433014329
}
14331-

0 commit comments

Comments
 (0)