@microsoft/typespec-msgraph-reference 1.0.6 → 1.0.8
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/.rush/temp/package-deps_build.json +18 -18
- package/.rush/temp/shrinkwrap-deps.json +10 -10
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +114 -3
- package/lib/Bleu/V1.0/main.tsp +295 -11
- package/lib/Delos/Beta/main.tsp +212 -3
- package/lib/Delos/V1.0/main.tsp +225 -0
- package/lib/Fairfax/Beta/main.tsp +296 -2
- package/lib/Fairfax/V1.0/main.tsp +267 -24
- package/lib/GovSG/V1.0/main.tsp +27 -0
- package/lib/Mooncake/Beta/main.tsp +145 -1
- package/lib/Mooncake/V1.0/main.tsp +64 -0
- package/lib/Prod/Beta/main.tsp +608 -6
- package/lib/Prod/V1.0/main.tsp +130 -4
- package/lib/USNat/Beta/main.tsp +107 -2
- package/lib/USNat/V1.0/main.tsp +62 -21
- package/lib/USSec/Beta/main.tsp +124 -2
- package/lib/USSec/V1.0/main.tsp +62 -21
- package/package.json +2 -2
package/lib/Delos/V1.0/main.tsp
CHANGED
|
@@ -9,6 +9,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
9
9
|
|
|
10
10
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2021-09-03", "2023-10-01", "The grantedToIdentities property is deprecated. Please refer to grantedToIdentitiesV2")
|
|
11
11
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
12
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2022-04-25", "2024-04-25", "Owner property is deprecated and will be removed in April 2024. Please use the container property instead.")
|
|
12
13
|
@publicNamespace("microsoft.graph")
|
|
13
14
|
namespace reference.`microsoft.graph` {
|
|
14
15
|
@open
|
|
@@ -37,6 +38,9 @@ namespace reference.`microsoft.graph` {
|
|
|
37
38
|
@complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
|
|
38
39
|
}
|
|
39
40
|
|
|
41
|
+
@complex model allDomains extends validatingDomains {
|
|
42
|
+
}
|
|
43
|
+
|
|
40
44
|
/**
|
|
41
45
|
* Represents an assignment to all licensed users in the tenant.
|
|
42
46
|
*/
|
|
@@ -1506,6 +1510,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1506
1510
|
users: string[] | null;
|
|
1507
1511
|
}
|
|
1508
1512
|
|
|
1513
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
1514
|
+
domainNames: string[];
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1509
1517
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
1510
1518
|
scopes: string[];
|
|
1511
1519
|
}
|
|
@@ -3089,6 +3097,86 @@ namespace reference.`microsoft.graph` {
|
|
|
3089
3097
|
street: string | null;
|
|
3090
3098
|
}
|
|
3091
3099
|
|
|
3100
|
+
@open
|
|
3101
|
+
@complex model plannerAppliedCategories {
|
|
3102
|
+
}
|
|
3103
|
+
|
|
3104
|
+
@complex model plannerAssignment {
|
|
3105
|
+
assignedBy: identitySet | null;
|
|
3106
|
+
assignedDateTime: offsetDateTime | null;
|
|
3107
|
+
orderHint: string | null;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
@open
|
|
3111
|
+
@complex model plannerAssignments {
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
@complex model plannerCategoryDescriptions {
|
|
3115
|
+
category1: string | null;
|
|
3116
|
+
category10: string | null;
|
|
3117
|
+
category11: string | null;
|
|
3118
|
+
category12: string | null;
|
|
3119
|
+
category13: string | null;
|
|
3120
|
+
category14: string | null;
|
|
3121
|
+
category15: string | null;
|
|
3122
|
+
category16: string | null;
|
|
3123
|
+
category17: string | null;
|
|
3124
|
+
category18: string | null;
|
|
3125
|
+
category19: string | null;
|
|
3126
|
+
category2: string | null;
|
|
3127
|
+
category20: string | null;
|
|
3128
|
+
category21: string | null;
|
|
3129
|
+
category22: string | null;
|
|
3130
|
+
category23: string | null;
|
|
3131
|
+
category24: string | null;
|
|
3132
|
+
category25: string | null;
|
|
3133
|
+
category3: string | null;
|
|
3134
|
+
category4: string | null;
|
|
3135
|
+
category5: string | null;
|
|
3136
|
+
category6: string | null;
|
|
3137
|
+
category7: string | null;
|
|
3138
|
+
category8: string | null;
|
|
3139
|
+
category9: string | null;
|
|
3140
|
+
}
|
|
3141
|
+
|
|
3142
|
+
@complex model plannerChecklistItem {
|
|
3143
|
+
isChecked: boolean | null;
|
|
3144
|
+
lastModifiedBy: identitySet | null;
|
|
3145
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
3146
|
+
orderHint: string | null;
|
|
3147
|
+
title: string | null;
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
@open
|
|
3151
|
+
@complex model plannerChecklistItems {
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
@complex model plannerExternalReference {
|
|
3155
|
+
`alias`: string | null;
|
|
3156
|
+
lastModifiedBy: identitySet | null;
|
|
3157
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
3158
|
+
previewPriority: string | null;
|
|
3159
|
+
type: string | null;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
@open
|
|
3163
|
+
@complex model plannerExternalReferences {
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3166
|
+
@open
|
|
3167
|
+
@complex model plannerOrderHintsByAssignee {
|
|
3168
|
+
}
|
|
3169
|
+
|
|
3170
|
+
@complex model plannerPlanContainer {
|
|
3171
|
+
containerId: string | null;
|
|
3172
|
+
type: plannerContainerType | null;
|
|
3173
|
+
url: string | null;
|
|
3174
|
+
}
|
|
3175
|
+
|
|
3176
|
+
@open
|
|
3177
|
+
@complex model plannerUserIds {
|
|
3178
|
+
}
|
|
3179
|
+
|
|
3092
3180
|
@complex model preAuthorizedApplication {
|
|
3093
3181
|
appId: string | null;
|
|
3094
3182
|
delegatedPermissionIds: string[];
|
|
@@ -3992,6 +4080,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3992
4080
|
userId: string | null;
|
|
3993
4081
|
}
|
|
3994
4082
|
|
|
4083
|
+
@abstract
|
|
4084
|
+
@complex model validatingDomains {
|
|
4085
|
+
rootDomains: rootDomains;
|
|
4086
|
+
}
|
|
4087
|
+
|
|
3995
4088
|
@complex model verifiedDomain {
|
|
3996
4089
|
capabilities: string | null;
|
|
3997
4090
|
isDefault: boolean | null;
|
|
@@ -8066,6 +8159,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8066
8159
|
subject: string | null;
|
|
8067
8160
|
}
|
|
8068
8161
|
|
|
8162
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
8163
|
+
validatingDomains: validatingDomains;
|
|
8164
|
+
}
|
|
8165
|
+
|
|
8069
8166
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
8070
8167
|
allowedAAGUIDs: string[];
|
|
8071
8168
|
}
|
|
@@ -8137,6 +8234,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8137
8234
|
|
|
8138
8235
|
@open
|
|
8139
8236
|
@entity model group extends directoryObject {
|
|
8237
|
+
accessType: groupAccessType | null;
|
|
8140
8238
|
allowExternalSenders: boolean | null;
|
|
8141
8239
|
assignedLabels: assignedLabel[] | null;
|
|
8142
8240
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -8152,6 +8250,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8152
8250
|
hideFromOutlookClients: boolean | null;
|
|
8153
8251
|
infoCatalogs: string[];
|
|
8154
8252
|
isAssignableToRole: boolean | null;
|
|
8253
|
+
isFavorite: boolean | null;
|
|
8155
8254
|
isManagementRestricted: boolean | null;
|
|
8156
8255
|
isSubscribedByMail: boolean | null;
|
|
8157
8256
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -8178,7 +8277,9 @@ namespace reference.`microsoft.graph` {
|
|
|
8178
8277
|
securityIdentifier: string | null;
|
|
8179
8278
|
theme: string | null;
|
|
8180
8279
|
uniqueName: string | null;
|
|
8280
|
+
unseenConversationsCount: int32 | null;
|
|
8181
8281
|
unseenCount: int32 | null;
|
|
8282
|
+
unseenMessagesCount: int32 | null;
|
|
8182
8283
|
visibility: string | null;
|
|
8183
8284
|
welcomeMessageEnabled: boolean | null;
|
|
8184
8285
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -8200,6 +8301,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8200
8301
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
8201
8302
|
@contains photo: profilePhoto | null;
|
|
8202
8303
|
@contains photos: profilePhoto[];
|
|
8304
|
+
@contains planner: plannerGroup | null;
|
|
8203
8305
|
@contains rejectedSenders: directoryObject[];
|
|
8204
8306
|
@contains settings: groupSetting[];
|
|
8205
8307
|
@contains sites: site[];
|
|
@@ -11308,6 +11410,94 @@ namespace reference.`microsoft.graph` {
|
|
|
11308
11410
|
yomiCompany: string | null;
|
|
11309
11411
|
}
|
|
11310
11412
|
|
|
11413
|
+
@entity model planner extends entity {
|
|
11414
|
+
@contains buckets: plannerBucket[];
|
|
11415
|
+
@contains plans: plannerPlan[];
|
|
11416
|
+
@contains tasks: plannerTask[];
|
|
11417
|
+
}
|
|
11418
|
+
|
|
11419
|
+
@entity model plannerAssignedToTaskBoardTaskFormat extends entity {
|
|
11420
|
+
orderHintsByAssignee: plannerOrderHintsByAssignee | null;
|
|
11421
|
+
unassignedOrderHint: string | null;
|
|
11422
|
+
}
|
|
11423
|
+
|
|
11424
|
+
@entity model plannerBucket extends entity {
|
|
11425
|
+
name: string;
|
|
11426
|
+
orderHint: string | null;
|
|
11427
|
+
planId: string | null;
|
|
11428
|
+
@references tasks: plannerTask[];
|
|
11429
|
+
}
|
|
11430
|
+
|
|
11431
|
+
@entity model plannerBucketTaskBoardTaskFormat extends entity {
|
|
11432
|
+
orderHint: string | null;
|
|
11433
|
+
}
|
|
11434
|
+
|
|
11435
|
+
@entity model plannerGroup extends entity {
|
|
11436
|
+
@references plans: plannerPlan[];
|
|
11437
|
+
}
|
|
11438
|
+
|
|
11439
|
+
@entity model plannerPlan extends entity {
|
|
11440
|
+
container: plannerPlanContainer | null;
|
|
11441
|
+
createdBy: identitySet | null;
|
|
11442
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11443
|
+
|
|
11444
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
11445
|
+
owner: string | null;
|
|
11446
|
+
title: string;
|
|
11447
|
+
@references buckets: plannerBucket[];
|
|
11448
|
+
@contains details: plannerPlanDetails | null;
|
|
11449
|
+
@references tasks: plannerTask[];
|
|
11450
|
+
}
|
|
11451
|
+
|
|
11452
|
+
@entity model plannerPlanDetails extends entity {
|
|
11453
|
+
categoryDescriptions: plannerCategoryDescriptions | null;
|
|
11454
|
+
sharedWith: plannerUserIds | null;
|
|
11455
|
+
}
|
|
11456
|
+
|
|
11457
|
+
@entity model plannerProgressTaskBoardTaskFormat extends entity {
|
|
11458
|
+
orderHint: string | null;
|
|
11459
|
+
}
|
|
11460
|
+
|
|
11461
|
+
@entity model plannerTask extends entity {
|
|
11462
|
+
activeChecklistItemCount: int32 | null;
|
|
11463
|
+
appliedCategories: plannerAppliedCategories | null;
|
|
11464
|
+
assigneePriority: string | null;
|
|
11465
|
+
assignments: plannerAssignments | null;
|
|
11466
|
+
bucketId: string | null;
|
|
11467
|
+
checklistItemCount: int32 | null;
|
|
11468
|
+
completedBy: identitySet | null;
|
|
11469
|
+
completedDateTime: offsetDateTime | null;
|
|
11470
|
+
conversationThreadId: string | null;
|
|
11471
|
+
createdBy: identitySet | null;
|
|
11472
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
11473
|
+
dueDateTime: offsetDateTime | null;
|
|
11474
|
+
hasDescription: boolean | null;
|
|
11475
|
+
orderHint: string | null;
|
|
11476
|
+
percentComplete: int32 | null;
|
|
11477
|
+
planId: string | null;
|
|
11478
|
+
previewType: plannerPreviewType | null;
|
|
11479
|
+
priority: int32 | null;
|
|
11480
|
+
referenceCount: int32 | null;
|
|
11481
|
+
startDateTime: offsetDateTime | null;
|
|
11482
|
+
title: string;
|
|
11483
|
+
@contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
|
|
11484
|
+
@contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
|
|
11485
|
+
@contains details: plannerTaskDetails | null;
|
|
11486
|
+
@contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
|
|
11487
|
+
}
|
|
11488
|
+
|
|
11489
|
+
@entity model plannerTaskDetails extends entity {
|
|
11490
|
+
checklist: plannerChecklistItems | null;
|
|
11491
|
+
description: string | null;
|
|
11492
|
+
previewType: plannerPreviewType | null;
|
|
11493
|
+
references: plannerExternalReferences | null;
|
|
11494
|
+
}
|
|
11495
|
+
|
|
11496
|
+
@entity model plannerUser extends entity {
|
|
11497
|
+
@references plans: plannerPlan[];
|
|
11498
|
+
@references tasks: plannerTask[];
|
|
11499
|
+
}
|
|
11500
|
+
|
|
11311
11501
|
@abstract
|
|
11312
11502
|
@entity model policyBase extends directoryObject {
|
|
11313
11503
|
description: string | null;
|
|
@@ -11329,6 +11519,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11329
11519
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
11330
11520
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
11331
11521
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
11522
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
11332
11523
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
11333
11524
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
11334
11525
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
@@ -12428,6 +12619,7 @@ namespace reference.`microsoft.graph` {
|
|
|
12428
12619
|
@contains people: person[];
|
|
12429
12620
|
@contains photo: profilePhoto | null;
|
|
12430
12621
|
@contains photos: profilePhoto[];
|
|
12622
|
+
@contains planner: plannerUser | null;
|
|
12431
12623
|
@references registeredDevices: directoryObject[];
|
|
12432
12624
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
12433
12625
|
@references sponsors: directoryObject[];
|
|
@@ -17983,6 +18175,14 @@ namespace reference.`microsoft.graph` {
|
|
|
17983
18175
|
workingElsewhere: 4,
|
|
17984
18176
|
}
|
|
17985
18177
|
|
|
18178
|
+
enum groupAccessType {
|
|
18179
|
+
none: 0,
|
|
18180
|
+
private: 1,
|
|
18181
|
+
secret: 2,
|
|
18182
|
+
public: 3,
|
|
18183
|
+
unknownFutureValue: 4,
|
|
18184
|
+
}
|
|
18185
|
+
|
|
17986
18186
|
enum groupType {
|
|
17987
18187
|
unifiedGroups: 0,
|
|
17988
18188
|
azureAD: 1,
|
|
@@ -19047,6 +19247,21 @@ namespace reference.`microsoft.graph` {
|
|
|
19047
19247
|
other: 3,
|
|
19048
19248
|
}
|
|
19049
19249
|
|
|
19250
|
+
enum plannerContainerType {
|
|
19251
|
+
group: 1,
|
|
19252
|
+
unknownFutureValue: 2,
|
|
19253
|
+
roster: 3,
|
|
19254
|
+
}
|
|
19255
|
+
|
|
19256
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19257
|
+
enum plannerPreviewType {
|
|
19258
|
+
automatic: 0,
|
|
19259
|
+
noPreview: 1,
|
|
19260
|
+
checklist: 2,
|
|
19261
|
+
description: 3,
|
|
19262
|
+
reference: 4,
|
|
19263
|
+
}
|
|
19264
|
+
|
|
19050
19265
|
/**
|
|
19051
19266
|
* Supported platform types for policies.
|
|
19052
19267
|
*/
|
|
@@ -19945,6 +20160,16 @@ namespace reference.`microsoft.graph` {
|
|
|
19945
20160
|
unknownFutureValue: 6,
|
|
19946
20161
|
}
|
|
19947
20162
|
|
|
20163
|
+
enum rootDomains {
|
|
20164
|
+
none: 0,
|
|
20165
|
+
all: 1,
|
|
20166
|
+
allFederated: 2,
|
|
20167
|
+
allManaged: 3,
|
|
20168
|
+
enumerated: 4,
|
|
20169
|
+
allManagedAndEnumeratedFederated: 5,
|
|
20170
|
+
unknownFutureValue: 6,
|
|
20171
|
+
}
|
|
20172
|
+
|
|
19948
20173
|
/**
|
|
19949
20174
|
* Indicates the type of execution context the app runs in.
|
|
19950
20175
|
*/
|