@microsoft/typespec-msgraph-reference 1.0.4 → 1.0.5
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 +17 -17
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +189 -4
- package/lib/Bleu/V1.0/main.tsp +53 -0
- package/lib/Delos/Beta/main.tsp +954 -4
- package/lib/Delos/V1.0/main.tsp +93 -0
- package/lib/Fairfax/Beta/main.tsp +563 -20
- package/lib/Fairfax/V1.0/main.tsp +3 -0
- package/lib/GovSG/V1.0/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +205 -4
- package/lib/Mooncake/V1.0/main.tsp +2 -0
- package/lib/Prod/Beta/main.tsp +911 -64
- package/lib/Prod/V1.0/main.tsp +478 -0
- package/lib/USNat/Beta/main.tsp +308 -0
- package/lib/USNat/V1.0/main.tsp +210 -0
- package/lib/USSec/Beta/main.tsp +308 -0
- package/lib/USSec/V1.0/main.tsp +210 -0
- package/package.json +2 -2
package/lib/Delos/V1.0/main.tsp
CHANGED
|
@@ -244,6 +244,11 @@ namespace reference.`microsoft.graph` {
|
|
|
244
244
|
status: responseStatus | null;
|
|
245
245
|
}
|
|
246
246
|
|
|
247
|
+
@complex model attendeeAvailability {
|
|
248
|
+
attendee: attendeeBase | null;
|
|
249
|
+
availability: freeBusyStatus | null;
|
|
250
|
+
}
|
|
251
|
+
|
|
247
252
|
@complex model attendeeBase extends recipient {
|
|
248
253
|
type: attendeeType | null;
|
|
249
254
|
}
|
|
@@ -1751,6 +1756,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1751
1756
|
uniqueIdType: locationUniqueIdType | null;
|
|
1752
1757
|
}
|
|
1753
1758
|
|
|
1759
|
+
@complex model locationConstraint {
|
|
1760
|
+
isRequired: boolean | null;
|
|
1761
|
+
locations: locationConstraintItem[] | null;
|
|
1762
|
+
suggestLocation: boolean | null;
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
@complex model locationConstraintItem extends location {
|
|
1766
|
+
resolveAvailability: boolean | null;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1754
1769
|
@complex model loginPageLayoutConfiguration {
|
|
1755
1770
|
isFooterShown: boolean | null;
|
|
1756
1771
|
isHeaderShown: boolean | null;
|
|
@@ -2024,6 +2039,21 @@ namespace reference.`microsoft.graph` {
|
|
|
2024
2039
|
tvRating: ratingUnitedStatesTelevisionType;
|
|
2025
2040
|
}
|
|
2026
2041
|
|
|
2042
|
+
@complex model meetingTimeSuggestion {
|
|
2043
|
+
attendeeAvailability: attendeeAvailability[] | null;
|
|
2044
|
+
confidence: float64 | null;
|
|
2045
|
+
locations: location[] | null;
|
|
2046
|
+
meetingTimeSlot: timeSlot | null;
|
|
2047
|
+
order: int32 | null;
|
|
2048
|
+
organizerAvailability: freeBusyStatus | null;
|
|
2049
|
+
suggestionReason: string | null;
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
@complex model meetingTimeSuggestionsResult {
|
|
2053
|
+
emptySuggestionsReason: string | null;
|
|
2054
|
+
meetingTimeSuggestions: meetingTimeSuggestion[] | null;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2027
2057
|
@complex model messageRuleActions {
|
|
2028
2058
|
assignCategories: string[] | null;
|
|
2029
2059
|
copyToFolder: string | null;
|
|
@@ -2752,6 +2782,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2752
2782
|
tenantId: string;
|
|
2753
2783
|
}
|
|
2754
2784
|
|
|
2785
|
+
@complex model timeConstraint {
|
|
2786
|
+
activityDomain: activityDomain | null;
|
|
2787
|
+
timeSlots: timeSlot[] | null;
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2755
2790
|
@complex model timeSlot {
|
|
2756
2791
|
end: dateTimeTimeZone;
|
|
2757
2792
|
start: dateTimeTimeZone;
|
|
@@ -6622,6 +6657,15 @@ namespace reference.`microsoft.graph` {
|
|
|
6622
6657
|
@entity model externalDomainName extends entity {
|
|
6623
6658
|
}
|
|
6624
6659
|
|
|
6660
|
+
@entity model featureRolloutPolicy extends entity {
|
|
6661
|
+
description: string | null;
|
|
6662
|
+
displayName: string;
|
|
6663
|
+
feature: stagedFeatureName;
|
|
6664
|
+
isAppliedToOrganization: boolean;
|
|
6665
|
+
isEnabled: boolean;
|
|
6666
|
+
@contains appliesTo: directoryObject[];
|
|
6667
|
+
}
|
|
6668
|
+
|
|
6625
6669
|
@entity model federatedIdentityCredential extends entity {
|
|
6626
6670
|
audiences: string[];
|
|
6627
6671
|
description: string | null;
|
|
@@ -6662,6 +6706,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6662
6706
|
membershipRule: string | null;
|
|
6663
6707
|
membershipRuleProcessingState: string | null;
|
|
6664
6708
|
onPremisesDomainName: string | null;
|
|
6709
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
6665
6710
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
6666
6711
|
onPremisesNetBiosName: string | null;
|
|
6667
6712
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -6696,6 +6741,8 @@ namespace reference.`microsoft.graph` {
|
|
|
6696
6741
|
@contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
|
|
6697
6742
|
@references owners: directoryObject[];
|
|
6698
6743
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
6744
|
+
@contains photo: profilePhoto | null;
|
|
6745
|
+
@contains photos: profilePhoto[];
|
|
6699
6746
|
@contains rejectedSenders: directoryObject[];
|
|
6700
6747
|
@contains settings: groupSetting[];
|
|
6701
6748
|
@contains threads: conversationThread[];
|
|
@@ -6811,6 +6858,11 @@ namespace reference.`microsoft.graph` {
|
|
|
6811
6858
|
@computed @key resourceAppId: string;
|
|
6812
6859
|
}
|
|
6813
6860
|
|
|
6861
|
+
@entity model insightsSettings extends entity {
|
|
6862
|
+
disabledForGroup: string | null;
|
|
6863
|
+
isEnabledInOrganization: boolean | null;
|
|
6864
|
+
}
|
|
6865
|
+
|
|
6814
6866
|
@entity model internalDomainFederation extends samlOrWsFedProvider {
|
|
6815
6867
|
activeSignInUri: string | null;
|
|
6816
6868
|
federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
|
|
@@ -9629,6 +9681,10 @@ namespace reference.`microsoft.graph` {
|
|
|
9629
9681
|
@contains masterCategories: outlookCategory[];
|
|
9630
9682
|
}
|
|
9631
9683
|
|
|
9684
|
+
@entity model peopleAdminSettings extends entity {
|
|
9685
|
+
@contains itemInsights: insightsSettings | null;
|
|
9686
|
+
}
|
|
9687
|
+
|
|
9632
9688
|
@entity model permissionGrantConditionSet extends entity {
|
|
9633
9689
|
clientApplicationIds: string[] | null;
|
|
9634
9690
|
clientApplicationPublisherIds: string[] | null;
|
|
@@ -9681,6 +9737,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9681
9737
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
9682
9738
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
9683
9739
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
9740
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
9684
9741
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
9685
9742
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
9686
9743
|
@contains tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
@@ -10494,6 +10551,8 @@ namespace reference.`microsoft.graph` {
|
|
|
10494
10551
|
@references ownedDevices: directoryObject[];
|
|
10495
10552
|
@references ownedObjects: directoryObject[];
|
|
10496
10553
|
@contains people: person[];
|
|
10554
|
+
@contains photo: profilePhoto | null;
|
|
10555
|
+
@contains photos: profilePhoto[];
|
|
10497
10556
|
@references registeredDevices: directoryObject[];
|
|
10498
10557
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
10499
10558
|
@references sponsors: directoryObject[];
|
|
@@ -11452,6 +11511,10 @@ namespace reference.`microsoft.graph` {
|
|
|
11452
11511
|
workFromAnywhereScore: float64;
|
|
11453
11512
|
}
|
|
11454
11513
|
|
|
11514
|
+
@entity model userInsightsSettings extends entity {
|
|
11515
|
+
isEnabled: boolean;
|
|
11516
|
+
}
|
|
11517
|
+
|
|
11455
11518
|
/**
|
|
11456
11519
|
* Contains properties for the installation state summary for a user.
|
|
11457
11520
|
*/
|
|
@@ -11478,6 +11541,10 @@ namespace reference.`microsoft.graph` {
|
|
|
11478
11541
|
@contains deviceStates: deviceInstallState[];
|
|
11479
11542
|
}
|
|
11480
11543
|
|
|
11544
|
+
@entity model userSettings extends entity {
|
|
11545
|
+
@contains itemInsights: userInsightsSettings | null;
|
|
11546
|
+
}
|
|
11547
|
+
|
|
11481
11548
|
/**
|
|
11482
11549
|
* You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens.
|
|
11483
11550
|
*/
|
|
@@ -14079,6 +14146,14 @@ namespace reference.`microsoft.graph` {
|
|
|
14079
14146
|
notSupported: 6,
|
|
14080
14147
|
}
|
|
14081
14148
|
|
|
14149
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
14150
|
+
enum activityDomain {
|
|
14151
|
+
`unknown`: 0,
|
|
14152
|
+
work: 1,
|
|
14153
|
+
personal: 2,
|
|
14154
|
+
unrestricted: 3,
|
|
14155
|
+
}
|
|
14156
|
+
|
|
14082
14157
|
enum activityType {
|
|
14083
14158
|
signin: 0,
|
|
14084
14159
|
user: 1,
|
|
@@ -16587,6 +16662,14 @@ namespace reference.`microsoft.graph` {
|
|
|
16587
16662
|
radio: 9,
|
|
16588
16663
|
}
|
|
16589
16664
|
|
|
16665
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
16666
|
+
enum physicalAddressType {
|
|
16667
|
+
`unknown`: 0,
|
|
16668
|
+
home: 1,
|
|
16669
|
+
business: 2,
|
|
16670
|
+
other: 3,
|
|
16671
|
+
}
|
|
16672
|
+
|
|
16590
16673
|
/**
|
|
16591
16674
|
* Supported platform types for policies.
|
|
16592
16675
|
*/
|
|
@@ -17560,6 +17643,16 @@ namespace reference.`microsoft.graph` {
|
|
|
17560
17643
|
high: 5,
|
|
17561
17644
|
}
|
|
17562
17645
|
|
|
17646
|
+
enum stagedFeatureName {
|
|
17647
|
+
passthroughAuthentication: 0,
|
|
17648
|
+
seamlessSso: 1,
|
|
17649
|
+
passwordHashSync: 2,
|
|
17650
|
+
emailAsAlternateId: 3,
|
|
17651
|
+
unknownFutureValue: 4,
|
|
17652
|
+
certificateBasedAuthentication: 5,
|
|
17653
|
+
multiFactorAuthentication: 6,
|
|
17654
|
+
}
|
|
17655
|
+
|
|
17563
17656
|
/**
|
|
17564
17657
|
* State Management Setting.
|
|
17565
17658
|
*/
|