@microsoft/msgraph-sdk 1.0.0-preview.21 → 1.0.0-preview.23
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 +121 -11
- package/models/index.d.ts.map +1 -1
- package/models/index.js +225 -134
- package/models/security/index.d.ts +139 -5
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +120 -12
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/models/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { type CallRecord } from './callRecords/';
|
|
|
2
2
|
import { type LifecycleWorkflowsContainer, type Workflow } from './identityGovernance/';
|
|
3
3
|
import { type Billing } from './partners/billing/';
|
|
4
4
|
import { type Acronym, type Bookmark, type Qna } from './search/';
|
|
5
|
-
import { BehaviorDuringRetentionPeriod, type CasesRoot, type Incident, type LabelsRoot, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/';
|
|
5
|
+
import { BehaviorDuringRetentionPeriod, type CasesRoot, type IdentityContainer as I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f, type Incident, type LabelsRoot, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/';
|
|
6
6
|
import { type Set, type Store, type Term } from './termStore/';
|
|
7
7
|
import { type AdditionalDataHolder, type BackedModel, type DateOnly, type Duration, type Parsable, type ParseNode, type SerializationWriter, type TimeOnly } from '@microsoft/kiota-abstractions';
|
|
8
8
|
import { type Guid } from 'guid-typescript';
|
|
@@ -1754,11 +1754,11 @@ export interface ActivityHistoryItem extends Entity, Parsable {
|
|
|
1754
1754
|
*/
|
|
1755
1755
|
createdDateTime?: Date;
|
|
1756
1756
|
/**
|
|
1757
|
-
* Optional. UTC DateTime when the
|
|
1757
|
+
* Optional. UTC DateTime when the activityHistoryItem will undergo hard-delete. Can be set by the client.
|
|
1758
1758
|
*/
|
|
1759
1759
|
expirationDateTime?: Date;
|
|
1760
1760
|
/**
|
|
1761
|
-
* Optional. UTC DateTime when the
|
|
1761
|
+
* Optional. UTC DateTime when the activityHistoryItem (activity session) was last understood as active or finished - if null, activityHistoryItem status should be Ongoing.
|
|
1762
1762
|
*/
|
|
1763
1763
|
lastActiveDateTime?: Date;
|
|
1764
1764
|
/**
|
|
@@ -1766,7 +1766,7 @@ export interface ActivityHistoryItem extends Entity, Parsable {
|
|
|
1766
1766
|
*/
|
|
1767
1767
|
lastModifiedDateTime?: Date;
|
|
1768
1768
|
/**
|
|
1769
|
-
* Required. UTC DateTime when the
|
|
1769
|
+
* Required. UTC DateTime when the activityHistoryItem (activity session) was started. Required for timeline history.
|
|
1770
1770
|
*/
|
|
1771
1771
|
startedDateTime?: Date;
|
|
1772
1772
|
/**
|
|
@@ -6613,7 +6613,7 @@ export interface BookingQuestionAssignment extends AdditionalDataHolder, BackedM
|
|
|
6613
6613
|
*/
|
|
6614
6614
|
backingStoreEnabled?: boolean;
|
|
6615
6615
|
/**
|
|
6616
|
-
*
|
|
6616
|
+
* Indicates whether it's mandatory to answer the custom question.
|
|
6617
6617
|
*/
|
|
6618
6618
|
isRequired?: boolean;
|
|
6619
6619
|
/**
|
|
@@ -6621,7 +6621,7 @@ export interface BookingQuestionAssignment extends AdditionalDataHolder, BackedM
|
|
|
6621
6621
|
*/
|
|
6622
6622
|
odataType?: string;
|
|
6623
6623
|
/**
|
|
6624
|
-
*
|
|
6624
|
+
* The ID of the custom question.
|
|
6625
6625
|
*/
|
|
6626
6626
|
questionId?: string;
|
|
6627
6627
|
}
|
|
@@ -10943,6 +10943,36 @@ export interface ContentApprovalStatusColumn extends AdditionalDataHolder, Backe
|
|
|
10943
10943
|
*/
|
|
10944
10944
|
odataType?: string;
|
|
10945
10945
|
}
|
|
10946
|
+
export interface ContentCustomization extends AdditionalDataHolder, BackedModel, Parsable {
|
|
10947
|
+
/**
|
|
10948
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
10949
|
+
*/
|
|
10950
|
+
additionalData?: Record<string, unknown>;
|
|
10951
|
+
/**
|
|
10952
|
+
* Represents the content options of External Identities to be customized throughout the authentication flow for a tenant.
|
|
10953
|
+
*/
|
|
10954
|
+
attributeCollection?: KeyValue[];
|
|
10955
|
+
/**
|
|
10956
|
+
* A relative URL for the content options of External Identities to be customized throughout the authentication flow for a tenant.
|
|
10957
|
+
*/
|
|
10958
|
+
attributeCollectionRelativeUrl?: string;
|
|
10959
|
+
/**
|
|
10960
|
+
* Stores model information.
|
|
10961
|
+
*/
|
|
10962
|
+
backingStoreEnabled?: boolean;
|
|
10963
|
+
/**
|
|
10964
|
+
* The OdataType property
|
|
10965
|
+
*/
|
|
10966
|
+
odataType?: string;
|
|
10967
|
+
/**
|
|
10968
|
+
* The registrationCampaign property
|
|
10969
|
+
*/
|
|
10970
|
+
registrationCampaign?: KeyValue[];
|
|
10971
|
+
/**
|
|
10972
|
+
* The registrationCampaignRelativeUrl property
|
|
10973
|
+
*/
|
|
10974
|
+
registrationCampaignRelativeUrl?: string;
|
|
10975
|
+
}
|
|
10946
10976
|
export interface ContentSharingSession extends Entity, Parsable {
|
|
10947
10977
|
}
|
|
10948
10978
|
export interface ContentSharingSessionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
@@ -14269,6 +14299,12 @@ export declare function createContainerFilterFromDiscriminatorValue(parseNode: P
|
|
|
14269
14299
|
* @returns {ContentApprovalStatusColumn}
|
|
14270
14300
|
*/
|
|
14271
14301
|
export declare function createContentApprovalStatusColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14302
|
+
/**
|
|
14303
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14304
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14305
|
+
* @returns {ContentCustomization}
|
|
14306
|
+
*/
|
|
14307
|
+
export declare function createContentCustomizationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14272
14308
|
/**
|
|
14273
14309
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14274
14310
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -27885,6 +27921,11 @@ export declare function deserializeIntoContainerFilter(containerFilter?: Partial
|
|
|
27885
27921
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27886
27922
|
*/
|
|
27887
27923
|
export declare function deserializeIntoContentApprovalStatusColumn(contentApprovalStatusColumn?: Partial<ContentApprovalStatusColumn> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27924
|
+
/**
|
|
27925
|
+
* The deserialization information for the current model
|
|
27926
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27927
|
+
*/
|
|
27928
|
+
export declare function deserializeIntoContentCustomization(contentCustomization?: Partial<ContentCustomization> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27888
27929
|
/**
|
|
27889
27930
|
* The deserialization information for the current model
|
|
27890
27931
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -40477,6 +40518,14 @@ export interface EducationStudent extends AdditionalDataHolder, BackedModel, Par
|
|
|
40477
40518
|
studentNumber?: string;
|
|
40478
40519
|
}
|
|
40479
40520
|
export interface EducationSubmission extends Entity, Parsable {
|
|
40521
|
+
/**
|
|
40522
|
+
* The excusedBy property
|
|
40523
|
+
*/
|
|
40524
|
+
excusedBy?: IdentitySet;
|
|
40525
|
+
/**
|
|
40526
|
+
* The excusedDateTime property
|
|
40527
|
+
*/
|
|
40528
|
+
excusedDateTime?: Date;
|
|
40480
40529
|
/**
|
|
40481
40530
|
* The outcomes property
|
|
40482
40531
|
*/
|
|
@@ -41784,7 +41833,7 @@ export interface ExtractSensitivityLabelsResult extends AdditionalDataHolder, Ba
|
|
|
41784
41833
|
}
|
|
41785
41834
|
export interface FeatureRolloutPolicy extends Entity, Parsable {
|
|
41786
41835
|
/**
|
|
41787
|
-
* Nullable. Specifies a list of
|
|
41836
|
+
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
41788
41837
|
*/
|
|
41789
41838
|
appliesTo?: DirectoryObject[];
|
|
41790
41839
|
/**
|
|
@@ -51819,6 +51868,10 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
|
|
|
51819
51868
|
* A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only.
|
|
51820
51869
|
*/
|
|
51821
51870
|
cdnList?: string[];
|
|
51871
|
+
/**
|
|
51872
|
+
* The contentCustomization property
|
|
51873
|
+
*/
|
|
51874
|
+
contentCustomization?: ContentCustomization;
|
|
51822
51875
|
/**
|
|
51823
51876
|
* A custom URL for resetting account credentials. This URL must be in ASCII format or non-ASCII characters must be URL encoded, and not exceed 128 characters.
|
|
51824
51877
|
*/
|
|
@@ -58708,6 +58761,10 @@ export interface Security extends Entity, Parsable {
|
|
|
58708
58761
|
* The cases property
|
|
58709
58762
|
*/
|
|
58710
58763
|
cases?: CasesRoot;
|
|
58764
|
+
/**
|
|
58765
|
+
* The identities property
|
|
58766
|
+
*/
|
|
58767
|
+
identities?: I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f;
|
|
58711
58768
|
/**
|
|
58712
58769
|
* A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack.
|
|
58713
58770
|
*/
|
|
@@ -61326,6 +61383,11 @@ export declare function serializeContainerFilter(writer: SerializationWriter, co
|
|
|
61326
61383
|
* @param writer Serialization writer to use to serialize this model
|
|
61327
61384
|
*/
|
|
61328
61385
|
export declare function serializeContentApprovalStatusColumn(writer: SerializationWriter, contentApprovalStatusColumn?: Partial<ContentApprovalStatusColumn> | undefined): void;
|
|
61386
|
+
/**
|
|
61387
|
+
* Serializes information the current object
|
|
61388
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61389
|
+
*/
|
|
61390
|
+
export declare function serializeContentCustomization(writer: SerializationWriter, contentCustomization?: Partial<ContentCustomization> | undefined): void;
|
|
61329
61391
|
/**
|
|
61330
61392
|
* Serializes information the current object
|
|
61331
61393
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -75636,11 +75698,11 @@ export interface UnifiedRole extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
75636
75698
|
}
|
|
75637
75699
|
export interface UnifiedRoleAssignment extends Entity, Parsable {
|
|
75638
75700
|
/**
|
|
75639
|
-
* Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. Supports $expand.
|
|
75701
|
+
* Read-only property with details of the app specific scope when the assignment scope is app specific. Containment entity. Supports $expand for the entitlement provider only.
|
|
75640
75702
|
*/
|
|
75641
75703
|
appScope?: AppScope;
|
|
75642
75704
|
/**
|
|
75643
|
-
* Identifier of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. App scopes are scopes that are defined and understood by a resource application only. For the entitlement management provider, use this property to specify a catalog
|
|
75705
|
+
* Identifier of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. App scopes are scopes that are defined and understood by a resource application only. For the entitlement management provider, use this property to specify a catalog. For example, /AccessPackageCatalog/beedadfe-01d5-4025-910b-84abb9369997. Supports $filter (eq, in). For example, /roleManagement/entitlementManagement/roleAssignments?$filter=appScopeId eq '/AccessPackageCatalog/{catalog id}'.
|
|
75644
75706
|
*/
|
|
75645
75707
|
appScopeId?: string;
|
|
75646
75708
|
/**
|
|
@@ -83114,7 +83176,7 @@ export interface WorkbookChart extends Entity, Parsable {
|
|
|
83114
83176
|
*/
|
|
83115
83177
|
axes?: WorkbookChartAxes;
|
|
83116
83178
|
/**
|
|
83117
|
-
* Represents the
|
|
83179
|
+
* Represents the data labels on the chart. Read-only.
|
|
83118
83180
|
*/
|
|
83119
83181
|
dataLabels?: WorkbookChartDataLabels;
|
|
83120
83182
|
/**
|
|
@@ -83142,7 +83204,7 @@ export interface WorkbookChart extends Entity, Parsable {
|
|
|
83142
83204
|
*/
|
|
83143
83205
|
series?: WorkbookChartSeries[];
|
|
83144
83206
|
/**
|
|
83145
|
-
* Represents the title of the specified chart, including the text, visibility, position and
|
|
83207
|
+
* Represents the title of the specified chart, including the text, visibility, position and formatting of the title. Read-only.
|
|
83146
83208
|
*/
|
|
83147
83209
|
title?: WorkbookChartTitle;
|
|
83148
83210
|
/**
|
|
@@ -85735,6 +85797,7 @@ export declare const DelegatedAdminAccessContainerTypeObject: {
|
|
|
85735
85797
|
export declare const DelegatedAdminRelationshipOperationTypeObject: {
|
|
85736
85798
|
readonly DelegatedAdminAccessAssignmentUpdate: "delegatedAdminAccessAssignmentUpdate";
|
|
85737
85799
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85800
|
+
readonly DelegatedAdminRelationshipUpdate: "delegatedAdminRelationshipUpdate";
|
|
85738
85801
|
};
|
|
85739
85802
|
export declare const DelegatedAdminRelationshipRequestActionObject: {
|
|
85740
85803
|
readonly LockForApproval: "lockForApproval";
|
|
@@ -86246,6 +86309,7 @@ export declare const EducationSubmissionStatusObject: {
|
|
|
86246
86309
|
readonly Returned: "returned";
|
|
86247
86310
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86248
86311
|
readonly Reassigned: "reassigned";
|
|
86312
|
+
readonly Excused: "excused";
|
|
86249
86313
|
};
|
|
86250
86314
|
export declare const EducationUserRoleObject: {
|
|
86251
86315
|
readonly Student: "student";
|
|
@@ -88339,6 +88403,52 @@ export declare const PrintFinishingObject: {
|
|
|
88339
88403
|
readonly StapleDualRight: "stapleDualRight";
|
|
88340
88404
|
readonly StapleDualBottom: "stapleDualBottom";
|
|
88341
88405
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
88406
|
+
readonly StapleTripleLeft: "stapleTripleLeft";
|
|
88407
|
+
readonly StapleTripleTop: "stapleTripleTop";
|
|
88408
|
+
readonly StapleTripleRight: "stapleTripleRight";
|
|
88409
|
+
readonly StapleTripleBottom: "stapleTripleBottom";
|
|
88410
|
+
readonly BindLeft: "bindLeft";
|
|
88411
|
+
readonly BindTop: "bindTop";
|
|
88412
|
+
readonly BindRight: "bindRight";
|
|
88413
|
+
readonly BindBottom: "bindBottom";
|
|
88414
|
+
readonly FoldAccordion: "foldAccordion";
|
|
88415
|
+
readonly FoldDoubleGate: "foldDoubleGate";
|
|
88416
|
+
readonly FoldGate: "foldGate";
|
|
88417
|
+
readonly FoldHalf: "foldHalf";
|
|
88418
|
+
readonly FoldHalfZ: "foldHalfZ";
|
|
88419
|
+
readonly FoldLeftGate: "foldLeftGate";
|
|
88420
|
+
readonly FoldLetter: "foldLetter";
|
|
88421
|
+
readonly FoldParallel: "foldParallel";
|
|
88422
|
+
readonly FoldPoster: "foldPoster";
|
|
88423
|
+
readonly FoldRightGate: "foldRightGate";
|
|
88424
|
+
readonly FoldZ: "foldZ";
|
|
88425
|
+
readonly FoldEngineeringZ: "foldEngineeringZ";
|
|
88426
|
+
readonly PunchTopLeft: "punchTopLeft";
|
|
88427
|
+
readonly PunchBottomLeft: "punchBottomLeft";
|
|
88428
|
+
readonly PunchTopRight: "punchTopRight";
|
|
88429
|
+
readonly PunchBottomRight: "punchBottomRight";
|
|
88430
|
+
readonly PunchDualLeft: "punchDualLeft";
|
|
88431
|
+
readonly PunchDualTop: "punchDualTop";
|
|
88432
|
+
readonly PunchDualRight: "punchDualRight";
|
|
88433
|
+
readonly PunchDualBottom: "punchDualBottom";
|
|
88434
|
+
readonly PunchTripleLeft: "punchTripleLeft";
|
|
88435
|
+
readonly PunchTripleTop: "punchTripleTop";
|
|
88436
|
+
readonly PunchTripleRight: "punchTripleRight";
|
|
88437
|
+
readonly PunchTripleBottom: "punchTripleBottom";
|
|
88438
|
+
readonly PunchQuadLeft: "punchQuadLeft";
|
|
88439
|
+
readonly PunchQuadTop: "punchQuadTop";
|
|
88440
|
+
readonly PunchQuadRight: "punchQuadRight";
|
|
88441
|
+
readonly PunchQuadBottom: "punchQuadBottom";
|
|
88442
|
+
readonly Fold: "fold";
|
|
88443
|
+
readonly Trim: "trim";
|
|
88444
|
+
readonly Bale: "bale";
|
|
88445
|
+
readonly BookletMaker: "bookletMaker";
|
|
88446
|
+
readonly Coat: "coat";
|
|
88447
|
+
readonly Laminate: "laminate";
|
|
88448
|
+
readonly TrimAfterPages: "trimAfterPages";
|
|
88449
|
+
readonly TrimAfterDocuments: "trimAfterDocuments";
|
|
88450
|
+
readonly TrimAfterCopies: "trimAfterCopies";
|
|
88451
|
+
readonly TrimAfterJob: "trimAfterJob";
|
|
88342
88452
|
};
|
|
88343
88453
|
export declare const PrintJobProcessingStateObject: {
|
|
88344
88454
|
readonly Unknown: "unknown";
|