Skip to content

Commit 177caa2

Browse files
github-actions[bot]Microsoft Graph DevX Tooling
and
Microsoft Graph DevX Tooling
authored
Update generated files with build 73348 (#307)
Co-authored-by: Microsoft Graph DevX Tooling <[email protected]>
1 parent 3d65298 commit 177caa2

File tree

1 file changed

+71
-4
lines changed

1 file changed

+71
-4
lines changed

microsoft-graph.d.ts

+71-4
Original file line numberDiff line numberDiff line change
@@ -1083,6 +1083,7 @@ export type EntityType =
10831083
| "drive"
10841084
| "unknownFutureValue";
10851085
export type SearchAlterationType = "suggestion" | "modification" | "unknownFutureValue";
1086+
export type PlannerContainerType = "group" | "unknownFutureValue" | "roster";
10861087
export type PlannerPreviewType = "automatic" | "noPreview" | "checklist" | "description" | "reference";
10871088
export type OnenotePatchActionType = "Replace" | "Append" | "Delete" | "Insert" | "Prepend";
10881089
export type OnenotePatchInsertPosition = "After" | "Before";
@@ -2220,7 +2221,8 @@ export type TeamworkUserIdentityType =
22202221
| "personalMicrosoftAccountUser"
22212222
| "skypeUser"
22222223
| "phoneUser"
2223-
| "unknownFutureValue";
2224+
| "unknownFutureValue"
2225+
| "emailUser";
22242226
export type ScheduleChangeRequestActor = "sender" | "recipient" | "manager" | "system" | "unknownFutureValue";
22252227
export type ScheduleChangeState = "pending" | "approved" | "declined" | "unknownFutureValue";
22262228
export type ScheduleEntityTheme =
@@ -2337,6 +2339,10 @@ export interface DirectoryAudit extends Entity {
23372339
* Directory, B2C, Invited Users, Microsoft Identity Manager, Privileged Identity Management.
23382340
*/
23392341
loggedByService?: NullableOption<string>;
2342+
/**
2343+
* Indicates the type of operation that was performed. The possible values include but are not limited to the following:
2344+
* Add, Assign, Update, Unassign, and Delete.
2345+
*/
23402346
operationType?: NullableOption<string>;
23412347
// Indicates the result of the activity. Possible values are: success, failure, timeout, unknownFutureValue.
23422348
result?: NullableOption<OperationResult>;
@@ -5400,6 +5406,7 @@ export interface Group extends DirectoryObject {
54005406
planner?: NullableOption<PlannerGroup>;
54015407
// Read-only.
54025408
onenote?: NullableOption<Onenote>;
5409+
// The team associated with this group.
54035410
team?: NullableOption<Team>;
54045411
}
54055412
export interface TeamsAppInstallation extends Entity {
@@ -8459,6 +8466,7 @@ export interface Call extends Entity {
84598466
* P2P call. This needs to be copied over from Microsoft.Graph.Call.CallChainId.
84608467
*/
84618468
callChainId?: NullableOption<string>;
8469+
// Contains the optional features for the call.
84628470
callOptions?: NullableOption<CallOptions>;
84638471
// The routing information on how the call was retargeted. Read-only.
84648472
callRoutes?: NullableOption<CallRoute[]>;
@@ -8517,7 +8525,7 @@ export interface AccessReviewHistoryDefinition extends Entity {
85178525
reviewHistoryPeriodStartDateTime?: string;
85188526
/**
85198527
* The settings for a recurring access review history definition series. Only required if reviewHistoryPeriodStartDateTime
8520-
* or reviewHistoryPeriodEndDateTime are not defined.
8528+
* or reviewHistoryPeriodEndDateTime are not defined. Not supported yet.
85218529
*/
85228530
scheduleSettings?: NullableOption<AccessReviewHistoryScheduleSettings>;
85238531
/**
@@ -13385,6 +13393,8 @@ export interface PlannerBucket extends Entity {
1338513393
tasks?: NullableOption<PlannerTask[]>;
1338613394
}
1338713395
export interface PlannerPlan extends Entity {
13396+
// Identifies the container of the plan. After it is set, this property can’t be updated. Required.
13397+
container?: NullableOption<PlannerPlanContainer>;
1338813398
// Read-only. The user who created the plan.
1338913399
createdBy?: NullableOption<IdentitySet>;
1339013400
/**
@@ -13457,6 +13467,13 @@ export interface PlannerTask extends Entity {
1345713467
* description, reference.
1345813468
*/
1345913469
previewType?: NullableOption<PlannerPreviewType>;
13470+
/**
13471+
* Priority of the task. Valid range of values is between 0 and 10 (inclusive), with increasing value being lower priority
13472+
* (0 has the highest priority and 10 has the lowest priority). Currently, Planner interprets values 0 and 1 as 'urgent',
13473+
* 2 and 3 and 4 as 'important', 5, 6, and 7 as 'medium', and 8, 9, and 10 as 'low'. Currently, Planner sets the value 1
13474+
* for 'urgent', 3 for 'important', 5 for 'medium', and 9 for 'low'.
13475+
*/
13476+
priority?: NullableOption<number>;
1346013477
// Number of external references that exist on the task.
1346113478
referenceCount?: NullableOption<number>;
1346213479
/**
@@ -17931,7 +17948,7 @@ export interface AccessPackageAssignmentRequestRequirements {
1793117948
export interface EntitlementManagementSchedule {
1793217949
// When the access should expire.
1793317950
expiration?: NullableOption<ExpirationPattern>;
17934-
// For recurring access. Not used at present.
17951+
// For recurring access reviews. Not used in access requests.
1793517952
recurrence?: NullableOption<PatternedRecurrence>;
1793617953
/**
1793717954
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example,
@@ -19412,8 +19429,40 @@ export interface PlannerAssignments {}
1941219429
export interface PlannerCategoryDescriptions {
1941319430
// The label associated with Category 1
1941419431
category1?: NullableOption<string>;
19432+
// The label associated with Category 10
19433+
category10?: NullableOption<string>;
19434+
// The label associated with Category 11
19435+
category11?: NullableOption<string>;
19436+
// The label associated with Category 12
19437+
category12?: NullableOption<string>;
19438+
// The label associated with Category 13
19439+
category13?: NullableOption<string>;
19440+
// The label associated with Category 14
19441+
category14?: NullableOption<string>;
19442+
// The label associated with Category 15
19443+
category15?: NullableOption<string>;
19444+
// The label associated with Category 16
19445+
category16?: NullableOption<string>;
19446+
// The label associated with Category 17
19447+
category17?: NullableOption<string>;
19448+
// The label associated with Category 18
19449+
category18?: NullableOption<string>;
19450+
// The label associated with Category 19
19451+
category19?: NullableOption<string>;
1941519452
// The label associated with Category 2
1941619453
category2?: NullableOption<string>;
19454+
// The label associated with Category 20
19455+
category20?: NullableOption<string>;
19456+
// The label associated with Category 21
19457+
category21?: NullableOption<string>;
19458+
// The label associated with Category 22
19459+
category22?: NullableOption<string>;
19460+
// The label associated with Category 23
19461+
category23?: NullableOption<string>;
19462+
// The label associated with Category 24
19463+
category24?: NullableOption<string>;
19464+
// The label associated with Category 25
19465+
category25?: NullableOption<string>;
1941719466
// The label associated with Category 3
1941819467
category3?: NullableOption<string>;
1941919468
// The label associated with Category 4
@@ -19422,6 +19471,12 @@ export interface PlannerCategoryDescriptions {
1942219471
category5?: NullableOption<string>;
1942319472
// The label associated with Category 6
1942419473
category6?: NullableOption<string>;
19474+
// The label associated with Category 7
19475+
category7?: NullableOption<string>;
19476+
// The label associated with Category 8
19477+
category8?: NullableOption<string>;
19478+
// The label associated with Category 9
19479+
category9?: NullableOption<string>;
1942519480
}
1942619481
export interface PlannerChecklistItem {
1942719482
// Value is true if the item is checked and false otherwise.
@@ -19459,6 +19514,18 @@ export interface PlannerExternalReference {
1945919514
export interface PlannerExternalReferences {}
1946019515
// tslint:disable-next-line: no-empty-interface
1946119516
export interface PlannerOrderHintsByAssignee {}
19517+
export interface PlannerPlanContainer {
19518+
// The identifier of the resource that contains the plan.
19519+
containerId?: string;
19520+
/**
19521+
* The type of the resource that contains the plan. See the previous table for supported types. Possible values are:
19522+
* group, unknownFutureValue, roster. Note that you must use the Prefer: include-unknown-enum-members request header to
19523+
* get the following value in this evolvable enum: roster.
19524+
*/
19525+
type?: PlannerContainerType;
19526+
// The full canonical URL of the container.
19527+
url?: string;
19528+
}
1946219529
// tslint:disable-next-line: no-empty-interface
1946319530
export interface PlannerUserIds {}
1946419531
// tslint:disable-next-line: interface-name
@@ -20994,7 +21061,7 @@ export interface ConversationMemberRoleUpdatedEventMessageDetail extends EventMe
2099421061
export interface TeamworkUserIdentity extends Identity {
2099521062
/**
2099621063
* Type of user. Possible values are: aadUser, onPremiseAadUser, anonymousGuest, federatedUser,
20997-
* personalMicrosoftAccountUser, skypeUser, phoneUser, and unknownFutureValue.
21064+
* personalMicrosoftAccountUser, skypeUser, phoneUser, unknownFutureValue and emailUser.
2099821065
*/
2099921066
userIdentityType?: NullableOption<TeamworkUserIdentityType>;
2100021067
}

0 commit comments

Comments
 (0)