From ab2d33eaeafd65cc5e43ad25b6e2f8ced7974a2a Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 13 Jun 2023 10:13:28 +0000 Subject: [PATCH 1/3] Update generated files with build 117217 --- README.md | 5 +++-- gradle.properties | 3 ++- src/main/java/com/microsoft/graph/info/Constants.java | 3 ++- .../com/microsoft/graph/models/LearningProvider.java | 9 +++++++++ .../com/microsoft/graph/models/LicenseUnitsDetail.java | 9 +++++++++ .../microsoft/graph/models/ProvisioningStatusInfo.java | 2 +- src/main/java/com/microsoft/graph/models/User.java | 2 +- 7 files changed, 27 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f7139aa28e0..a8200a6afd9 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ repositories { dependencies { // Include the sdk as a dependency - implementation 'com.microsoft.graph:microsoft-graph:5.60.0' + implementation 'com.microsoft.graph:microsoft-graph:5.61.0' // Uncomment the line below if you are building an android application //implementation 'com.google.guava:guava:30.1.1-android' // This dependency is only needed if you are using the TokenCrendentialAuthProvider @@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph - 5.60.0 + 5.61.0 @@ -191,5 +191,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI + diff --git a/gradle.properties b/gradle.properties index 38e55327067..8c81fafa044 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,7 +26,7 @@ org.gradle.caching=true mavenGroupId = com.microsoft.graph mavenArtifactId = microsoft-graph mavenMajorVersion = 5 -mavenMinorVersion = 60 +mavenMinorVersion = 61 mavenPatchVersion = 0 mavenArtifactSuffix = @@ -114,5 +114,6 @@ mavenCentralPublishingEnabled=false + diff --git a/src/main/java/com/microsoft/graph/info/Constants.java b/src/main/java/com/microsoft/graph/info/Constants.java index 4756abffdb1..3c4f25e172b 100644 --- a/src/main/java/com/microsoft/graph/info/Constants.java +++ b/src/main/java/com/microsoft/graph/info/Constants.java @@ -18,7 +18,7 @@ private Constants() { /** The client secret to use for unit testing */ public static final String CLIENTSECRET = "clientsecret"; /** The SDK version */ - public static final String VERSION_NAME = "5.60.0"; + public static final String VERSION_NAME = "5.61.0"; } @@ -91,5 +91,6 @@ private Constants() { + diff --git a/src/main/java/com/microsoft/graph/models/LearningProvider.java b/src/main/java/com/microsoft/graph/models/LearningProvider.java index 79fe67bb5c2..57ca089512e 100644 --- a/src/main/java/com/microsoft/graph/models/LearningProvider.java +++ b/src/main/java/com/microsoft/graph/models/LearningProvider.java @@ -36,6 +36,15 @@ public class LearningProvider extends Entity implements IJsonBackedObject { @Nullable public String displayName; + /** + * The Is Course Activity Sync Enabled. + * Indicates whether a provider can ingest learning course activity records. The default value is false. Set to true to make learningCourseActivities available for this provider. + */ + @SerializedName(value = "isCourseActivitySyncEnabled", alternate = {"IsCourseActivitySyncEnabled"}) + @Expose + @Nullable + public Boolean isCourseActivitySyncEnabled; + /** * The Login Web Url. * Authentication URL to access the courses for the provider. Optional. diff --git a/src/main/java/com/microsoft/graph/models/LicenseUnitsDetail.java b/src/main/java/com/microsoft/graph/models/LicenseUnitsDetail.java index 9c538c34814..1df2bee1edd 100644 --- a/src/main/java/com/microsoft/graph/models/LicenseUnitsDetail.java +++ b/src/main/java/com/microsoft/graph/models/LicenseUnitsDetail.java @@ -46,6 +46,15 @@ public final AdditionalDataManager additionalDataManager() { @Nullable public Integer enabled; + /** + * The Locked Out. + * + */ + @SerializedName(value = "lockedOut", alternate = {"LockedOut"}) + @Expose + @Nullable + public Integer lockedOut; + /** * The Suspended. * The number of units that are suspended because the subscription of the service SKU has been cancelled. The units cannot be assigned but can still be reactivated before they are deleted. diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningStatusInfo.java b/src/main/java/com/microsoft/graph/models/ProvisioningStatusInfo.java index 79f2d886610..748c086356f 100644 --- a/src/main/java/com/microsoft/graph/models/ProvisioningStatusInfo.java +++ b/src/main/java/com/microsoft/graph/models/ProvisioningStatusInfo.java @@ -41,7 +41,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Error Information. - * + * If status is not success/ skipped details for the error are contained in this. */ @SerializedName(value = "errorInformation", alternate = {"ErrorInformation"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/User.java b/src/main/java/com/microsoft/graph/models/User.java index b07c06eddc0..0e309e1eacc 100644 --- a/src/main/java/com/microsoft/graph/models/User.java +++ b/src/main/java/com/microsoft/graph/models/User.java @@ -369,7 +369,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Mobile Phone. - * The primary cellular telephone number for the user. Read-only for users synced from on-premises directory. Maximum length is 64 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). + * The primary cellular telephone number for the user. Read-only for users synced from on-premises directory. Maximum length is 64 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values) and $search. */ @SerializedName(value = "mobilePhone", alternate = {"MobilePhone"}) @Expose From 42783b7c29f81fa083eb6c137bf2a9019cc1b8c0 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Fri, 16 Jun 2023 14:38:19 -0700 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f08d14ca4f..9505a16a99c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +## [5.61.0] - 2023-06-16 + +### Changed + +- Generated v1.0 models and request builders using Typewriter. + ## [5.60.0] - 2023-06-09 ### Added From 6c46b2d3ef11c446b28dbe5957e83fa6e08d567f Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Fri, 16 Jun 2023 15:00:09 -0700 Subject: [PATCH 3/3] Update build.gradle --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index dfebadbcf75..92688c1cad1 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -25,13 +25,13 @@ apply plugin: "com.github.ben-manes.versions" android { namespace 'com.microsoft.graph' - compileSdkVersion 33 + compileSdkVersion 34 defaultConfig { versionCode 1 versionName "1.0" minSdkVersion 26 - targetSdkVersion 33 + targetSdkVersion 34 } buildTypes {