@microsoft/msgraph-sdk 1.0.0-preview.66 → 1.0.0-preview.67
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/index.d.ts +84 -21
- package/models/index.d.ts.map +1 -1
- package/models/index.js +53 -2
- package/models/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/models/index.d.ts
CHANGED
|
@@ -205,7 +205,7 @@ export interface AccessPackageAssignment extends Entity, Parsable {
|
|
|
205
205
|
*/
|
|
206
206
|
state?: AccessPackageAssignmentState | null;
|
|
207
207
|
/**
|
|
208
|
-
* More information about the assignment lifecycle. Possible values include Delivering, Delivered, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.
|
|
208
|
+
* More information about the assignment lifecycle. Possible values include Delivering, Delivered, AutoAssignmentInGracePeriod, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.
|
|
209
209
|
*/
|
|
210
210
|
status?: string | null;
|
|
211
211
|
/**
|
|
@@ -4136,7 +4136,7 @@ export interface ApprovalStageCollectionResponse extends BaseCollectionPaginatio
|
|
|
4136
4136
|
}
|
|
4137
4137
|
export interface AppScope extends Entity, Parsable {
|
|
4138
4138
|
/**
|
|
4139
|
-
* Provides the display name of the app-specific resource represented by the app scope. Read
|
|
4139
|
+
* Provides the display name of the app-specific resource represented by the app scope. Read-only.
|
|
4140
4140
|
*/
|
|
4141
4141
|
displayName?: string | null;
|
|
4142
4142
|
/**
|
|
@@ -5558,7 +5558,7 @@ export interface AuthenticationContextClassReferenceCollectionResponse extends B
|
|
|
5558
5558
|
}
|
|
5559
5559
|
export interface AuthenticationEventListener extends Entity, Parsable {
|
|
5560
5560
|
/**
|
|
5561
|
-
*
|
|
5561
|
+
* The identifier of the authenticationEventsFlow object.
|
|
5562
5562
|
*/
|
|
5563
5563
|
authenticationEventsFlowId?: string | null;
|
|
5564
5564
|
/**
|
|
@@ -21770,6 +21770,12 @@ export declare function createRestorePointSearchResponseFromDiscriminatorValue(p
|
|
|
21770
21770
|
* @returns {RestorePointSearchResult}
|
|
21771
21771
|
*/
|
|
21772
21772
|
export declare function createRestorePointSearchResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21773
|
+
/**
|
|
21774
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21775
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21776
|
+
* @returns {RestoreSessionArtifactCount}
|
|
21777
|
+
*/
|
|
21778
|
+
export declare function createRestoreSessionArtifactCountFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21773
21779
|
/**
|
|
21774
21780
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21775
21781
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -37353,6 +37359,12 @@ export declare function deserializeIntoRestorePointSearchResponse(restorePointSe
|
|
|
37353
37359
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37354
37360
|
*/
|
|
37355
37361
|
export declare function deserializeIntoRestorePointSearchResult(restorePointSearchResult?: Partial<RestorePointSearchResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37362
|
+
/**
|
|
37363
|
+
* The deserialization information for the current model
|
|
37364
|
+
* @param RestoreSessionArtifactCount The instance to deserialize into.
|
|
37365
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37366
|
+
*/
|
|
37367
|
+
export declare function deserializeIntoRestoreSessionArtifactCount(restoreSessionArtifactCount?: Partial<RestoreSessionArtifactCount> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37356
37368
|
/**
|
|
37357
37369
|
* The deserialization information for the current model
|
|
37358
37370
|
* @param RestoreSessionBase The instance to deserialize into.
|
|
@@ -48684,7 +48696,7 @@ export interface GroupLifecyclePolicyCollectionResponse extends BaseCollectionPa
|
|
|
48684
48696
|
}
|
|
48685
48697
|
export interface GroupMembers extends Parsable, SubjectSet {
|
|
48686
48698
|
/**
|
|
48687
|
-
* The name of the group in Microsoft Entra ID. Read
|
|
48699
|
+
* The name of the group in Microsoft Entra ID. Read-only.
|
|
48688
48700
|
*/
|
|
48689
48701
|
description?: string | null;
|
|
48690
48702
|
/**
|
|
@@ -52785,6 +52797,10 @@ export interface MailboxRestoreArtifact extends Parsable, RestoreArtifactBase {
|
|
|
52785
52797
|
* The new restored folder name.
|
|
52786
52798
|
*/
|
|
52787
52799
|
restoredFolderName?: string | null;
|
|
52800
|
+
/**
|
|
52801
|
+
* The number of items that are being restored in the folder.
|
|
52802
|
+
*/
|
|
52803
|
+
restoredItemCount?: number | null;
|
|
52788
52804
|
}
|
|
52789
52805
|
export interface MailboxRestoreArtifactCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
52790
52806
|
/**
|
|
@@ -56835,7 +56851,7 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
|
|
|
56835
56851
|
*/
|
|
56836
56852
|
endDateTime?: Date | null;
|
|
56837
56853
|
/**
|
|
56838
|
-
* The
|
|
56854
|
+
* The external ID that is a custom identifier. Optional.
|
|
56839
56855
|
*/
|
|
56840
56856
|
externalId?: string | null;
|
|
56841
56857
|
/**
|
|
@@ -56881,7 +56897,7 @@ export interface OnlineMeetingBase extends Entity, Parsable {
|
|
|
56881
56897
|
*/
|
|
56882
56898
|
allowedLobbyAdmitters?: AllowedLobbyAdmitterRoles | null;
|
|
56883
56899
|
/**
|
|
56884
|
-
* Specifies who can be a presenter in a meeting.
|
|
56900
|
+
* Specifies who can be a presenter in a meeting. Possible values are: everyone, organization, roleIsPresenter, organizer, unknownFutureValue. Inherited from onlineMeetingBase.
|
|
56885
56901
|
*/
|
|
56886
56902
|
allowedPresenters?: OnlineMeetingPresenters | null;
|
|
56887
56903
|
/**
|
|
@@ -63345,6 +63361,7 @@ export interface RestoreArtifactsBulkRequestBase extends Entity, Parsable {
|
|
|
63345
63361
|
tags?: RestorePointTags[] | null;
|
|
63346
63362
|
}
|
|
63347
63363
|
export type RestoreArtifactsBulkRequestStatus = (typeof RestoreArtifactsBulkRequestStatusObject)[keyof typeof RestoreArtifactsBulkRequestStatusObject];
|
|
63364
|
+
export type RestoreJobType = (typeof RestoreJobTypeObject)[keyof typeof RestoreJobTypeObject];
|
|
63348
63365
|
export interface RestorePoint extends Entity, Parsable {
|
|
63349
63366
|
/**
|
|
63350
63367
|
* Expiration date time of the restore point.
|
|
@@ -63411,6 +63428,32 @@ export interface RestorePointSearchResult extends AdditionalDataHolder, BackedMo
|
|
|
63411
63428
|
restorePoint?: RestorePoint | null;
|
|
63412
63429
|
}
|
|
63413
63430
|
export type RestorePointTags = (typeof RestorePointTagsObject)[keyof typeof RestorePointTagsObject];
|
|
63431
|
+
export interface RestoreSessionArtifactCount extends AdditionalDataHolder, BackedModel, Parsable {
|
|
63432
|
+
/**
|
|
63433
|
+
* Stores model information.
|
|
63434
|
+
*/
|
|
63435
|
+
backingStoreEnabled?: boolean | null;
|
|
63436
|
+
/**
|
|
63437
|
+
* The number of artifacts whose restoration completed.
|
|
63438
|
+
*/
|
|
63439
|
+
completed?: number | null;
|
|
63440
|
+
/**
|
|
63441
|
+
* The number of artifacts whose restoration failed.
|
|
63442
|
+
*/
|
|
63443
|
+
failed?: number | null;
|
|
63444
|
+
/**
|
|
63445
|
+
* The number of artifacts whose restoration is in progress.
|
|
63446
|
+
*/
|
|
63447
|
+
inProgress?: number | null;
|
|
63448
|
+
/**
|
|
63449
|
+
* The OdataType property
|
|
63450
|
+
*/
|
|
63451
|
+
odataType?: string | null;
|
|
63452
|
+
/**
|
|
63453
|
+
* The number of artifacts present in the restore session.
|
|
63454
|
+
*/
|
|
63455
|
+
total?: number | null;
|
|
63456
|
+
}
|
|
63414
63457
|
export interface RestoreSessionBase extends Entity, Parsable {
|
|
63415
63458
|
/**
|
|
63416
63459
|
* The time of completion of the restore session.
|
|
@@ -63436,6 +63479,14 @@ export interface RestoreSessionBase extends Entity, Parsable {
|
|
|
63436
63479
|
* Timestamp of the last modification of the restore session.
|
|
63437
63480
|
*/
|
|
63438
63481
|
lastModifiedDateTime?: Date | null;
|
|
63482
|
+
/**
|
|
63483
|
+
* Indicates whether the restore session was created normally or by a bulk job.
|
|
63484
|
+
*/
|
|
63485
|
+
restoreJobType?: RestoreJobType | null;
|
|
63486
|
+
/**
|
|
63487
|
+
* The number of metadata artifacts that belong to this restore session.
|
|
63488
|
+
*/
|
|
63489
|
+
restoreSessionArtifactCount?: RestoreSessionArtifactCount | null;
|
|
63439
63490
|
/**
|
|
63440
63491
|
* Status of the restore session. The value is an aggregated status of the restored artifacts. The possible values are: draft, activating, active, completedWithError, completed, unknownFutureValue, failed. Use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: failed.
|
|
63441
63492
|
*/
|
|
@@ -76903,6 +76954,13 @@ export declare function serializeRestorePointSearchResponse(writer: Serializatio
|
|
|
76903
76954
|
* @param writer Serialization writer to use to serialize this model
|
|
76904
76955
|
*/
|
|
76905
76956
|
export declare function serializeRestorePointSearchResult(writer: SerializationWriter, restorePointSearchResult?: Partial<RestorePointSearchResult> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76957
|
+
/**
|
|
76958
|
+
* Serializes information the current object
|
|
76959
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
76960
|
+
* @param RestoreSessionArtifactCount The instance to serialize from.
|
|
76961
|
+
* @param writer Serialization writer to use to serialize this model
|
|
76962
|
+
*/
|
|
76963
|
+
export declare function serializeRestoreSessionArtifactCount(writer: SerializationWriter, restoreSessionArtifactCount?: Partial<RestoreSessionArtifactCount> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76906
76964
|
/**
|
|
76907
76965
|
* Serializes information the current object
|
|
76908
76966
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -84240,7 +84298,7 @@ export interface SingleServicePrincipal extends Parsable, SubjectSet {
|
|
|
84240
84298
|
}
|
|
84241
84299
|
export interface SingleUser extends Parsable, SubjectSet {
|
|
84242
84300
|
/**
|
|
84243
|
-
* The name of the user in Microsoft Entra ID. Read
|
|
84301
|
+
* The name of the user in Microsoft Entra ID. Read-only.
|
|
84244
84302
|
*/
|
|
84245
84303
|
description?: string | null;
|
|
84246
84304
|
/**
|
|
@@ -86555,7 +86613,7 @@ export interface TeamsTab extends Entity, Parsable {
|
|
|
86555
86613
|
*/
|
|
86556
86614
|
teamsApp?: TeamsApp | null;
|
|
86557
86615
|
/**
|
|
86558
|
-
* Deep link URL of the tab instance. Read
|
|
86616
|
+
* Deep link URL of the tab instance. Read-only.
|
|
86559
86617
|
*/
|
|
86560
86618
|
webUrl?: string | null;
|
|
86561
86619
|
}
|
|
@@ -89085,7 +89143,7 @@ export interface UsageRightsIncluded extends Entity, Parsable {
|
|
|
89085
89143
|
}
|
|
89086
89144
|
export interface UsedInsight extends Entity, Parsable {
|
|
89087
89145
|
/**
|
|
89088
|
-
* Information about when the item was last viewed or modified by the user. Read
|
|
89146
|
+
* Information about when the item was last viewed or modified by the user. Read-only.
|
|
89089
89147
|
*/
|
|
89090
89148
|
lastUsed?: UsageDetails | null;
|
|
89091
89149
|
/**
|
|
@@ -89093,7 +89151,7 @@ export interface UsedInsight extends Entity, Parsable {
|
|
|
89093
89151
|
*/
|
|
89094
89152
|
resource?: Entity | null;
|
|
89095
89153
|
/**
|
|
89096
|
-
* Reference properties of the used document, such as the
|
|
89154
|
+
* Reference properties of the used document, such as the URL and type of the document. Read-only
|
|
89097
89155
|
*/
|
|
89098
89156
|
resourceReference?: ResourceReference | null;
|
|
89099
89157
|
/**
|
|
@@ -96991,47 +97049,47 @@ export interface WorkbookWorksheetProtection extends Entity, Parsable {
|
|
|
96991
97049
|
}
|
|
96992
97050
|
export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder, BackedModel, Parsable {
|
|
96993
97051
|
/**
|
|
96994
|
-
*
|
|
97052
|
+
* Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
|
|
96995
97053
|
*/
|
|
96996
97054
|
allowAutoFilter?: boolean | null;
|
|
96997
97055
|
/**
|
|
96998
|
-
*
|
|
97056
|
+
* Indicates whether the worksheet protection option to allow deleting columns is enabled.
|
|
96999
97057
|
*/
|
|
97000
97058
|
allowDeleteColumns?: boolean | null;
|
|
97001
97059
|
/**
|
|
97002
|
-
*
|
|
97060
|
+
* Indicates whether the worksheet protection option to allow deleting rows is enabled.
|
|
97003
97061
|
*/
|
|
97004
97062
|
allowDeleteRows?: boolean | null;
|
|
97005
97063
|
/**
|
|
97006
|
-
*
|
|
97064
|
+
* Indicates whether the worksheet protection option to allow formatting cells is enabled.
|
|
97007
97065
|
*/
|
|
97008
97066
|
allowFormatCells?: boolean | null;
|
|
97009
97067
|
/**
|
|
97010
|
-
*
|
|
97068
|
+
* Indicates whether the worksheet protection option to allow formatting columns is enabled.
|
|
97011
97069
|
*/
|
|
97012
97070
|
allowFormatColumns?: boolean | null;
|
|
97013
97071
|
/**
|
|
97014
|
-
*
|
|
97072
|
+
* Indicates whether the worksheet protection option to allow formatting rows is enabled.
|
|
97015
97073
|
*/
|
|
97016
97074
|
allowFormatRows?: boolean | null;
|
|
97017
97075
|
/**
|
|
97018
|
-
*
|
|
97076
|
+
* Indicates whether the worksheet protection option to allow inserting columns is enabled.
|
|
97019
97077
|
*/
|
|
97020
97078
|
allowInsertColumns?: boolean | null;
|
|
97021
97079
|
/**
|
|
97022
|
-
*
|
|
97080
|
+
* Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
|
|
97023
97081
|
*/
|
|
97024
97082
|
allowInsertHyperlinks?: boolean | null;
|
|
97025
97083
|
/**
|
|
97026
|
-
*
|
|
97084
|
+
* Indicates whether the worksheet protection option to allow inserting rows is enabled.
|
|
97027
97085
|
*/
|
|
97028
97086
|
allowInsertRows?: boolean | null;
|
|
97029
97087
|
/**
|
|
97030
|
-
*
|
|
97088
|
+
* Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
|
|
97031
97089
|
*/
|
|
97032
97090
|
allowPivotTables?: boolean | null;
|
|
97033
97091
|
/**
|
|
97034
|
-
*
|
|
97092
|
+
* Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
|
|
97035
97093
|
*/
|
|
97036
97094
|
allowSort?: boolean | null;
|
|
97037
97095
|
/**
|
|
@@ -102186,6 +102244,11 @@ export declare const RestoreArtifactsBulkRequestStatusObject: {
|
|
|
102186
102244
|
readonly CompletedWithErrors: "completedWithErrors";
|
|
102187
102245
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
102188
102246
|
};
|
|
102247
|
+
export declare const RestoreJobTypeObject: {
|
|
102248
|
+
readonly Standard: "standard";
|
|
102249
|
+
readonly Bulk: "bulk";
|
|
102250
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
102251
|
+
};
|
|
102189
102252
|
export declare const RestorePointPreferenceObject: {
|
|
102190
102253
|
readonly Latest: "latest";
|
|
102191
102254
|
readonly Oldest: "oldest";
|