@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.11
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 +18 -0
- package/lib/Bleu/Beta/main.tsp +1011 -52
- package/lib/Bleu/V1.0/main.tsp +27 -2
- package/lib/Delos/Beta/main.tsp +1704 -51
- package/lib/Delos/V1.0/main.tsp +468 -1
- package/lib/Fairfax/Beta/main.tsp +865 -55
- package/lib/Fairfax/V1.0/main.tsp +93 -3
- package/lib/GovSG/Beta/main.tsp +28 -0
- package/lib/Mooncake/Beta/main.tsp +709 -52
- package/lib/Mooncake/V1.0/main.tsp +103 -3
- package/lib/Prod/Beta/main.tsp +1190 -332
- package/lib/Prod/V1.0/main.tsp +310 -2
- package/lib/USNat/Beta/main.tsp +145 -9
- package/lib/USNat/V1.0/main.tsp +91 -1
- package/lib/USSec/Beta/main.tsp +145 -9
- package/lib/USSec/V1.0/main.tsp +91 -1
- package/package.json +2 -2
|
@@ -9912,7 +9912,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9912
9912
|
/**
|
|
9913
9913
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
9914
9914
|
*/
|
|
9915
|
-
@entity model deviceAppManagement extends entity {
|
|
9915
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
9916
9916
|
/**
|
|
9917
9917
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
9918
9918
|
*/
|
|
@@ -14921,6 +14921,7 @@ namespace reference.`microsoft.graph` {
|
|
|
14921
14921
|
joinMeetingIdSettings: joinMeetingIdSettings | null;
|
|
14922
14922
|
joinWebUrl: string | null;
|
|
14923
14923
|
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
14924
|
+
meetingType: onlineMeetingType | null;
|
|
14924
14925
|
recordAutomatically: boolean | null;
|
|
14925
14926
|
shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
|
|
14926
14927
|
subject: string | null;
|
|
@@ -15928,7 +15929,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15928
15929
|
roleMemberInfo: identity;
|
|
15929
15930
|
}
|
|
15930
15931
|
|
|
15931
|
-
@entity model searchEntity extends entity {
|
|
15932
|
+
@entity model searchEntity extends MsGraph.SharedModels.entity {
|
|
15932
15933
|
}
|
|
15933
15934
|
|
|
15934
15935
|
@entity model section extends place {
|
|
@@ -16740,7 +16741,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16740
16741
|
@entity model teamsTemplate extends entity {
|
|
16741
16742
|
}
|
|
16742
16743
|
|
|
16743
|
-
@entity model teamwork extends entity {
|
|
16744
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
16744
16745
|
isTeamsEnabled: boolean;
|
|
16745
16746
|
region: string | null;
|
|
16746
16747
|
@contains deletedChats: deletedChat[];
|
|
@@ -25208,6 +25209,15 @@ namespace reference.`microsoft.graph` {
|
|
|
25208
25209
|
coorganizer: 4,
|
|
25209
25210
|
}
|
|
25210
25211
|
|
|
25212
|
+
enum onlineMeetingType {
|
|
25213
|
+
adhoc: 0,
|
|
25214
|
+
scheduled: 1,
|
|
25215
|
+
recurring: 2,
|
|
25216
|
+
broadcast: 3,
|
|
25217
|
+
meetnow: 4,
|
|
25218
|
+
unknownFutureValue: 5,
|
|
25219
|
+
}
|
|
25220
|
+
|
|
25211
25221
|
@graphFlags
|
|
25212
25222
|
enum onlineMeetingVideoDisabledReason {
|
|
25213
25223
|
watermarkProtection: 1,
|
|
@@ -30548,6 +30558,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30548
30558
|
triggerAttributes: triggerAttribute[];
|
|
30549
30559
|
}
|
|
30550
30560
|
|
|
30561
|
+
@complex model attributeSetEntry {
|
|
30562
|
+
name: string;
|
|
30563
|
+
value: string | null;
|
|
30564
|
+
}
|
|
30565
|
+
|
|
30566
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
30567
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
30568
|
+
statusReasons: string[];
|
|
30569
|
+
subject: workflowSubject | null;
|
|
30570
|
+
}
|
|
30571
|
+
|
|
30551
30572
|
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
30552
30573
|
threshold: int64;
|
|
30553
30574
|
}
|
|
@@ -30561,12 +30582,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30561
30582
|
}
|
|
30562
30583
|
|
|
30563
30584
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
30585
|
+
targetSubject: workflowSubject | null;
|
|
30564
30586
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
30565
30587
|
@references task: task | null;
|
|
30566
30588
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
30567
30589
|
@references workflow: workflow | null;
|
|
30568
30590
|
}
|
|
30569
30591
|
|
|
30592
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
30593
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
30594
|
+
statusReasons: string[];
|
|
30595
|
+
targetSubject: workflowSubject | null;
|
|
30596
|
+
}
|
|
30597
|
+
|
|
30598
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
30599
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
30600
|
+
}
|
|
30601
|
+
|
|
30570
30602
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
30571
30603
|
@references groups: reference.`microsoft.graph`.group[];
|
|
30572
30604
|
}
|
|
@@ -30595,6 +30627,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30595
30627
|
taskId: string;
|
|
30596
30628
|
}
|
|
30597
30629
|
|
|
30630
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
30631
|
+
}
|
|
30632
|
+
|
|
30633
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
30634
|
+
attributeSetEntries: attributeSetEntry[];
|
|
30635
|
+
id: string;
|
|
30636
|
+
}
|
|
30637
|
+
|
|
30598
30638
|
@abstract
|
|
30599
30639
|
@complex model quarantineCondition {
|
|
30600
30640
|
}
|
|
@@ -30623,6 +30663,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30623
30663
|
totalUsers: int32;
|
|
30624
30664
|
}
|
|
30625
30665
|
|
|
30666
|
+
@complex model subjectSummary {
|
|
30667
|
+
failedSubjects: int32;
|
|
30668
|
+
failedTasks: int32;
|
|
30669
|
+
successfulSubjects: int32;
|
|
30670
|
+
totalSubjects: int32;
|
|
30671
|
+
totalTasks: int32;
|
|
30672
|
+
}
|
|
30673
|
+
|
|
30626
30674
|
@complex model taskReportSummary {
|
|
30627
30675
|
failedTasks: int32;
|
|
30628
30676
|
successfulTasks: int32;
|
|
@@ -30724,10 +30772,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30724
30772
|
totalUsers: int32;
|
|
30725
30773
|
}
|
|
30726
30774
|
|
|
30775
|
+
@abstract
|
|
30776
|
+
@complex model workflowSubject {
|
|
30777
|
+
}
|
|
30778
|
+
|
|
30727
30779
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
30728
30780
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
30729
30781
|
@computed createdDateTime: offsetDateTime | null;
|
|
30730
30782
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
30783
|
+
replyMode: customTaskExtensionReplyMode;
|
|
30731
30784
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
30732
30785
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
30733
30786
|
}
|
|
@@ -30766,10 +30819,27 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30766
30819
|
totalUsersCount: int32;
|
|
30767
30820
|
workflowExecutionType: workflowExecutionType;
|
|
30768
30821
|
@references reprocessedRuns: run[];
|
|
30822
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
30769
30823
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
30770
30824
|
@contains userProcessingResults: userProcessingResult[];
|
|
30771
30825
|
}
|
|
30772
30826
|
|
|
30827
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
30828
|
+
completedDateTime: offsetDateTime | null;
|
|
30829
|
+
failedTasksCount: int32;
|
|
30830
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
30831
|
+
scheduledDateTime: offsetDateTime;
|
|
30832
|
+
startedDateTime: offsetDateTime | null;
|
|
30833
|
+
subject: workflowSubject;
|
|
30834
|
+
subjectType: subjectType;
|
|
30835
|
+
totalTasksCount: int32;
|
|
30836
|
+
totalUnprocessedTasksCount: int32;
|
|
30837
|
+
workflowExecutionType: workflowExecutionType;
|
|
30838
|
+
workflowVersion: int32;
|
|
30839
|
+
@references reprocessedRuns: run[];
|
|
30840
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
30841
|
+
}
|
|
30842
|
+
|
|
30773
30843
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
30774
30844
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
30775
30845
|
category: lifecycleTaskCategory;
|
|
@@ -30798,6 +30868,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30798
30868
|
processingInfo: string | null;
|
|
30799
30869
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
30800
30870
|
startedDateTime: offsetDateTime | null;
|
|
30871
|
+
workflowSubject: workflowSubject | null;
|
|
30801
30872
|
@references subject: reference.`microsoft.graph`.user;
|
|
30802
30873
|
@references task: task;
|
|
30803
30874
|
}
|
|
@@ -30842,6 +30913,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30842
30913
|
@references executionScope: userProcessingResult[];
|
|
30843
30914
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
30844
30915
|
@contains runs: run[];
|
|
30916
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
30845
30917
|
@contains taskReports: taskReport[];
|
|
30846
30918
|
@contains userProcessingResults: userProcessingResult[];
|
|
30847
30919
|
@contains versions: workflowVersion[];
|
|
@@ -30857,6 +30929,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30857
30929
|
isEnabled: boolean;
|
|
30858
30930
|
isSchedulingEnabled: boolean;
|
|
30859
30931
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
30932
|
+
targetSubjectType: subjectType;
|
|
30860
30933
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
30861
30934
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
30862
30935
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -30894,12 +30967,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30894
30967
|
unknownFutureValue: 2,
|
|
30895
30968
|
}
|
|
30896
30969
|
|
|
30970
|
+
enum customTaskExtensionReplyMode {
|
|
30971
|
+
none: 0,
|
|
30972
|
+
callback: 1,
|
|
30973
|
+
response: 2,
|
|
30974
|
+
unknownFutureValue: 3,
|
|
30975
|
+
}
|
|
30976
|
+
|
|
30897
30977
|
@graphFlags
|
|
30898
30978
|
enum lifecycleTaskCategory {
|
|
30899
30979
|
joiner: 1,
|
|
30900
30980
|
leaver: 2,
|
|
30901
30981
|
unknownFutureValue: 4,
|
|
30902
30982
|
mover: 8,
|
|
30983
|
+
extensibility: 16,
|
|
30903
30984
|
}
|
|
30904
30985
|
|
|
30905
30986
|
enum lifecycleWorkflowCategory {
|
|
@@ -30907,6 +30988,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30907
30988
|
leaver: 1,
|
|
30908
30989
|
unknownFutureValue: 2,
|
|
30909
30990
|
mover: 3,
|
|
30991
|
+
extensibility: 4,
|
|
30910
30992
|
}
|
|
30911
30993
|
|
|
30912
30994
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -30940,6 +31022,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30940
31022
|
unknownFutureValue: 4,
|
|
30941
31023
|
}
|
|
30942
31024
|
|
|
31025
|
+
@graphFlags
|
|
31026
|
+
enum subjectType {
|
|
31027
|
+
user: 1,
|
|
31028
|
+
unknownFutureValue: 8,
|
|
31029
|
+
provisioningObject: 16,
|
|
31030
|
+
}
|
|
31031
|
+
|
|
30943
31032
|
enum valueType {
|
|
30944
31033
|
`enum`: 0,
|
|
30945
31034
|
`string`: 1,
|
|
@@ -30954,6 +31043,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30954
31043
|
unknownFutureValue: 2,
|
|
30955
31044
|
activatedWithScope: 3,
|
|
30956
31045
|
preview: 4,
|
|
31046
|
+
extensibilityOnDemand: 5,
|
|
30957
31047
|
}
|
|
30958
31048
|
|
|
30959
31049
|
enum workflowTriggerTimeBasedAttribute {
|
package/lib/GovSG/Beta/main.tsp
CHANGED
|
@@ -457,8 +457,26 @@ namespace reference.`microsoft.graph` {
|
|
|
457
457
|
synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
|
|
458
458
|
}
|
|
459
459
|
|
|
460
|
+
@complex model onPremisesCurrentExportData {
|
|
461
|
+
clientMachineName: string | null;
|
|
462
|
+
pendingObjectsAddition: int32 | null;
|
|
463
|
+
pendingObjectsDeletion: int32 | null;
|
|
464
|
+
pendingObjectsUpdate: int32 | null;
|
|
465
|
+
serviceAccount: string | null;
|
|
466
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
467
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
468
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
469
|
+
}
|
|
470
|
+
|
|
460
471
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
461
472
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
473
|
+
anchorAttribute: string | null;
|
|
474
|
+
applicationId: string | null;
|
|
475
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
476
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
477
|
+
synchronizationClientVersion: string | null;
|
|
478
|
+
synchronizationInterval: duration | null;
|
|
479
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
462
480
|
}
|
|
463
481
|
|
|
464
482
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -509,6 +527,11 @@ namespace reference.`microsoft.graph` {
|
|
|
509
527
|
value: string | null;
|
|
510
528
|
}
|
|
511
529
|
|
|
530
|
+
@complex model onPremisesWritebackConfiguration {
|
|
531
|
+
unifiedGroupContainer: string | null;
|
|
532
|
+
userContainer: string | null;
|
|
533
|
+
}
|
|
534
|
+
|
|
512
535
|
@complex model optionalClaim {
|
|
513
536
|
additionalProperties: string[] | null;
|
|
514
537
|
essential: boolean;
|
|
@@ -865,6 +888,9 @@ namespace reference.`microsoft.graph` {
|
|
|
865
888
|
@entity model agentIdentity extends servicePrincipal {
|
|
866
889
|
agentIdentityBlueprintId: string;
|
|
867
890
|
@computed createdDateTime: offsetDateTime | null;
|
|
891
|
+
managerApplications: guid;
|
|
892
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
893
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
868
894
|
@references sponsors: directoryObject[];
|
|
869
895
|
}
|
|
870
896
|
|
|
@@ -877,6 +903,7 @@ namespace reference.`microsoft.graph` {
|
|
|
877
903
|
|
|
878
904
|
@open
|
|
879
905
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
906
|
+
managerApplications: guid;
|
|
880
907
|
@references sponsors: directoryObject[];
|
|
881
908
|
}
|
|
882
909
|
|
|
@@ -1661,6 +1688,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1661
1688
|
|
|
1662
1689
|
@entity model roleManagement extends MsGraph.SharedModels.entity {
|
|
1663
1690
|
@contains directory: rbacApplication | null;
|
|
1691
|
+
@contains enterpriseApps: rbacApplication[];
|
|
1664
1692
|
}
|
|
1665
1693
|
|
|
1666
1694
|
@entity model samlOrWsFedExternalDomainFederation extends samlOrWsFedProvider {
|