@@ -3953,7 +3953,7 @@ export interface Team extends Entity {
39533953 * parsed.
39543954 */
39553955 webUrl?: NullableOption<string>;
3956- // The collection of channels & messages associated with the team.
3956+ // The collection of channels and messages associated with the team.
39573957 channels?: NullableOption<Channel[]>;
39583958 group?: NullableOption<Group>;
39593959 // The apps installed in this team.
@@ -14635,13 +14635,14 @@ export interface KeyCredential {
1463514635 // Friendly name for the key. Optional.
1463614636 displayName?: NullableOption<string>;
1463714637 /**
14638- * The date and time at which the credential expires.The Timestamp type represents date and time information using ISO
14639- * 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
14638+ * The date and time at which the credential expires. The DateTimeOffset type represents date and time information using
14639+ * ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
1464014640 */
1464114641 endDateTime?: NullableOption<string>;
1464214642 /**
14643- * The certificate's raw data in byte array converted to Base64 string; for example,
14644- * [System.Convert]::ToBase64String($Cert.GetRawCertData()).
14643+ * The certificate's raw data in byte array converted to Base64 string. Returned only on $select for a single object, that
14644+ * is, GET applications/{applicationId}?$select=keyCredentials or GET
14645+ * servicePrincipals/{servicePrincipalId}?$select=keyCredentials; otherwise, it is always null.
1464514646 */
1464614647 key?: NullableOption<number>;
1464714648 // The unique identifier (GUID) for the key.
@@ -14651,7 +14652,7 @@ export interface KeyCredential {
1465114652 * ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
1465214653 */
1465314654 startDateTime?: NullableOption<string>;
14654- // The type of key credential; for example, Symmetric.
14655+ // The type of key credential; for example, Symmetric, AsymmetricX509Cert .
1465514656 type?: NullableOption<string>;
1465614657 // A string that describes the purpose for which the key can be used; for example, Verify.
1465714658 usage?: NullableOption<string>;
0 commit comments