@microsoft/msgraph-sdk 1.0.0-preview.75 → 1.0.0-preview.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/models/callRecords/index.d.ts +4 -4
- package/models/externalConnectors/index.d.ts +3 -3
- package/models/index.d.ts +1534 -277
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1282 -15
- package/models/index.js.map +1 -1
- package/models/partners/billing/index.d.ts +1 -1
- package/models/search/index.d.ts +3 -3
- package/models/security/index.d.ts +137 -36
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +113 -2
- package/models/security/index.js.map +1 -1
- package/models/teamsAdministration/index.d.ts +256 -0
- package/models/teamsAdministration/index.d.ts.map +1 -0
- package/models/teamsAdministration/index.js +254 -0
- package/models/teamsAdministration/index.js.map +1 -0
- package/models/termStore/index.d.ts +2 -2
- package/package.json +2 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/LICENSE +0 -21
|
@@ -29,7 +29,7 @@ export interface CallRecord extends Entity, Parsable {
|
|
|
29
29
|
*/
|
|
30
30
|
lastModifiedDateTime?: Date | null;
|
|
31
31
|
/**
|
|
32
|
-
* List of all the modalities used in the call.
|
|
32
|
+
* List of all the modalities used in the call. The possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
|
|
33
33
|
*/
|
|
34
34
|
modalities?: Modality[] | null;
|
|
35
35
|
/**
|
|
@@ -694,7 +694,7 @@ export interface Media extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
694
694
|
}
|
|
695
695
|
export interface MediaStream extends AdditionalDataHolder, BackedModel, Parsable {
|
|
696
696
|
/**
|
|
697
|
-
* Codec name used to encode audio for transmission on the network.
|
|
697
|
+
* Codec name used to encode audio for transmission on the network. The possible values are: unknown, invalid, cn, pcma, pcmu, amrWide, g722, g7221, g7221c, g729, multiChannelAudio, muchv2, opus, satin, satinFullband, rtAudio8, rtAudio16, silk, silkNarrow, silkWide, siren, xmsRta, unknownFutureValue.
|
|
698
698
|
*/
|
|
699
699
|
audioCodec?: AudioCodec | null;
|
|
700
700
|
/**
|
|
@@ -814,7 +814,7 @@ export interface MediaStream extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
814
814
|
*/
|
|
815
815
|
streamId?: string | null;
|
|
816
816
|
/**
|
|
817
|
-
* Codec name used to encode video for transmission on the network.
|
|
817
|
+
* Codec name used to encode video for transmission on the network. The possible values are: unknown, invalid, av1, h263, h264, h264s, h264uc, h265, rtvc1, rtVideo, xrtvc1, unknownFutureValue.
|
|
818
818
|
*/
|
|
819
819
|
videoCodec?: VideoCodec | null;
|
|
820
820
|
/**
|
|
@@ -1353,7 +1353,7 @@ export interface Session extends Entity, Parsable {
|
|
|
1353
1353
|
*/
|
|
1354
1354
|
isTest?: boolean | null;
|
|
1355
1355
|
/**
|
|
1356
|
-
* List of modalities present in the session.
|
|
1356
|
+
* List of modalities present in the session. The possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
|
|
1357
1357
|
*/
|
|
1358
1358
|
modalities?: Modality[] | null;
|
|
1359
1359
|
/**
|
|
@@ -58,7 +58,7 @@ export interface ConnectionOperation extends Entity, Parsable {
|
|
|
58
58
|
*/
|
|
59
59
|
errorEscaped?: PublicError | null;
|
|
60
60
|
/**
|
|
61
|
-
* Indicates the status of the asynchronous operation.
|
|
61
|
+
* Indicates the status of the asynchronous operation. The possible values are: unspecified, inprogress, completed, failed, unknownFutureValue.
|
|
62
62
|
*/
|
|
63
63
|
status?: ConnectionOperationStatus | null;
|
|
64
64
|
}
|
|
@@ -503,7 +503,7 @@ export interface ExternalConnection extends Entity, Parsable {
|
|
|
503
503
|
*/
|
|
504
504
|
searchSettings?: SearchSettings | null;
|
|
505
505
|
/**
|
|
506
|
-
* Indicates the current state of the connection.
|
|
506
|
+
* Indicates the current state of the connection. The possible values are: draft, ready, obsolete, limitExceeded, unknownFutureValue.
|
|
507
507
|
*/
|
|
508
508
|
state?: ConnectionState | null;
|
|
509
509
|
}
|
|
@@ -578,7 +578,7 @@ export interface ExternalItemContent extends AdditionalDataHolder, BackedModel,
|
|
|
578
578
|
export type ExternalItemContentType = (typeof ExternalItemContentTypeObject)[keyof typeof ExternalItemContentTypeObject];
|
|
579
579
|
export interface Identity extends Entity, Parsable {
|
|
580
580
|
/**
|
|
581
|
-
* The type of identity.
|
|
581
|
+
* The type of identity. The possible values are: user or group for Microsoft Entra identities and externalgroup for groups in an external system.
|
|
582
582
|
*/
|
|
583
583
|
type?: IdentityType | null;
|
|
584
584
|
}
|