@microsoft/msgraph-sdk 1.0.0-preview.22 → 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 +110 -10
- package/models/index.d.ts.map +1 -1
- package/models/index.js +222 -133
- package/models/security/index.d.ts +134 -0
- 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>}
|
|
@@ -51827,6 +51868,10 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
|
|
|
51827
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.
|
|
51828
51869
|
*/
|
|
51829
51870
|
cdnList?: string[];
|
|
51871
|
+
/**
|
|
51872
|
+
* The contentCustomization property
|
|
51873
|
+
*/
|
|
51874
|
+
contentCustomization?: ContentCustomization;
|
|
51830
51875
|
/**
|
|
51831
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.
|
|
51832
51877
|
*/
|
|
@@ -58716,6 +58761,10 @@ export interface Security extends Entity, Parsable {
|
|
|
58716
58761
|
* The cases property
|
|
58717
58762
|
*/
|
|
58718
58763
|
cases?: CasesRoot;
|
|
58764
|
+
/**
|
|
58765
|
+
* The identities property
|
|
58766
|
+
*/
|
|
58767
|
+
identities?: I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f;
|
|
58719
58768
|
/**
|
|
58720
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.
|
|
58721
58770
|
*/
|
|
@@ -61334,6 +61383,11 @@ export declare function serializeContainerFilter(writer: SerializationWriter, co
|
|
|
61334
61383
|
* @param writer Serialization writer to use to serialize this model
|
|
61335
61384
|
*/
|
|
61336
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;
|
|
61337
61391
|
/**
|
|
61338
61392
|
* Serializes information the current object
|
|
61339
61393
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -75644,11 +75698,11 @@ export interface UnifiedRole extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
75644
75698
|
}
|
|
75645
75699
|
export interface UnifiedRoleAssignment extends Entity, Parsable {
|
|
75646
75700
|
/**
|
|
75647
|
-
* 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.
|
|
75648
75702
|
*/
|
|
75649
75703
|
appScope?: AppScope;
|
|
75650
75704
|
/**
|
|
75651
|
-
* 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}'.
|
|
75652
75706
|
*/
|
|
75653
75707
|
appScopeId?: string;
|
|
75654
75708
|
/**
|
|
@@ -83122,7 +83176,7 @@ export interface WorkbookChart extends Entity, Parsable {
|
|
|
83122
83176
|
*/
|
|
83123
83177
|
axes?: WorkbookChartAxes;
|
|
83124
83178
|
/**
|
|
83125
|
-
* Represents the
|
|
83179
|
+
* Represents the data labels on the chart. Read-only.
|
|
83126
83180
|
*/
|
|
83127
83181
|
dataLabels?: WorkbookChartDataLabels;
|
|
83128
83182
|
/**
|
|
@@ -83150,7 +83204,7 @@ export interface WorkbookChart extends Entity, Parsable {
|
|
|
83150
83204
|
*/
|
|
83151
83205
|
series?: WorkbookChartSeries[];
|
|
83152
83206
|
/**
|
|
83153
|
-
* 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.
|
|
83154
83208
|
*/
|
|
83155
83209
|
title?: WorkbookChartTitle;
|
|
83156
83210
|
/**
|
|
@@ -88349,6 +88403,52 @@ export declare const PrintFinishingObject: {
|
|
|
88349
88403
|
readonly StapleDualRight: "stapleDualRight";
|
|
88350
88404
|
readonly StapleDualBottom: "stapleDualBottom";
|
|
88351
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";
|
|
88352
88452
|
};
|
|
88353
88453
|
export declare const PrintJobProcessingStateObject: {
|
|
88354
88454
|
readonly Unknown: "unknown";
|