@microsoft/msgraph-sdk 1.0.0-preview.74 → 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 +4 -4
- package/models/identityGovernance/index.d.ts +192 -1
- package/models/identityGovernance/index.d.ts.map +1 -1
- package/models/identityGovernance/index.js +251 -2
- package/models/identityGovernance/index.js.map +1 -1
- package/models/index.d.ts +3301 -303
- package/models/index.d.ts.map +1 -1
- package/models/index.js +3607 -20
- 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 +484 -35
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +486 -3
- 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
|
@@ -312,7 +312,7 @@ export interface Operation extends Entity, Parsable {
|
|
|
312
312
|
*/
|
|
313
313
|
lastActionDateTime?: Date | null;
|
|
314
314
|
/**
|
|
315
|
-
* The status of the operation.
|
|
315
|
+
* The status of the operation. The possible values are: notStarted, running, completed, failed, unknownFutureValue.
|
|
316
316
|
*/
|
|
317
317
|
status?: LongRunningOperationStatus | null;
|
|
318
318
|
}
|
package/models/search/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export interface AnswerVariant extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
61
61
|
*/
|
|
62
62
|
odataType?: string | null;
|
|
63
63
|
/**
|
|
64
|
-
* The device or operating system that can view this answer variation.
|
|
64
|
+
* The device or operating system that can view this answer variation. The possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
|
|
65
65
|
*/
|
|
66
66
|
platform?: DevicePlatformType | null;
|
|
67
67
|
/**
|
|
@@ -99,7 +99,7 @@ export interface Bookmark extends Parsable, SearchAnswer {
|
|
|
99
99
|
*/
|
|
100
100
|
languageTags?: string[] | null;
|
|
101
101
|
/**
|
|
102
|
-
* List of devices and operating systems that are able to view this bookmark.
|
|
102
|
+
* List of devices and operating systems that are able to view this bookmark. The possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
|
|
103
103
|
*/
|
|
104
104
|
platforms?: DevicePlatformType[] | null;
|
|
105
105
|
/**
|
|
@@ -319,7 +319,7 @@ export interface Qna extends Parsable, SearchAnswer {
|
|
|
319
319
|
*/
|
|
320
320
|
languageTags?: string[] | null;
|
|
321
321
|
/**
|
|
322
|
-
* List of devices and operating systems that are able to view this QnA.
|
|
322
|
+
* List of devices and operating systems that are able to view this QnA. The possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
|
|
323
323
|
*/
|
|
324
324
|
platforms?: DevicePlatformType[] | null;
|
|
325
325
|
/**
|