Skip to content

Commit d12b966

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
feat(generation): update request builders and models
Update generated files with build 179842
1 parent 9aa32c5 commit d12b966

File tree

103 files changed

+4915
-321
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+4915
-321
lines changed

packages/kiota-dom-export.txt

Lines changed: 534 additions & 14 deletions
Large diffs are not rendered by default.

packages/kiota-lock.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"descriptionHash": "0922012981783F96DC07F5D7A6C66ACF27F7231418359DF10E870D51A0337185AA115C991527B8D7447CE77BF79643604D78D413185E7274AE691774AA3D4716",
2+
"descriptionHash": "0077549B9A55BB643B7A2BD1516D0A1B541CD52514513E618B5893B2BD0435073E4D6B1296F16B36B7C947FBB1D2F738DD71B168EA72A1F8230A71F3EAB99EC9",
33
"descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml",
44
"lockFileVersion": "1.0.0",
5-
"kiotaVersion": "1.23.0",
5+
"kiotaVersion": "1.24.0",
66
"clientClassName": "GraphBaseServiceClient",
77
"typeAccessModifier": "Public",
88
"clientNamespaceName": "github.com/microsoftgraph/msgraph-sdk-typescript/",

packages/msgraph-sdk-chats/chats/item/members/item/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder
2020
*/
2121
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
2222
/**
23-
* Retrieve a conversationMember from a chat or channel.
23+
* Retrieve a conversationMember from a chat.
2424
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
2525
* @returns {Promise<ConversationMember>}
2626
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
27-
* @see {@link https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0|Find more info here}
27+
* @see {@link https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0|Find more info here}
2828
*/
2929
get(requestConfiguration?: RequestConfiguration<ConversationMemberItemRequestBuilderGetQueryParameters> | undefined) : Promise<ConversationMember | undefined>;
3030
/**
@@ -42,7 +42,7 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder
4242
*/
4343
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
4444
/**
45-
* Retrieve a conversationMember from a chat or channel.
45+
* Retrieve a conversationMember from a chat.
4646
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4747
* @returns {RequestInformation}
4848
*/
@@ -56,7 +56,7 @@ export interface ConversationMemberItemRequestBuilder extends BaseRequestBuilder
5656
toPatchRequestInformation(body: ConversationMember, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
5757
}
5858
/**
59-
* Retrieve a conversationMember from a chat or channel.
59+
* Retrieve a conversationMember from a chat.
6060
*/
6161
export interface ConversationMemberItemRequestBuilderGetQueryParameters {
6262
/**

packages/msgraph-sdk-communications/communications/calls/item/answer/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export function deserializeIntoAnswerPostRequestBody(answerPostRequestBody: Part
9090
export function serializeAnswerPostRequestBody(writer: SerializationWriter, answerPostRequestBody: Partial<AnswerPostRequestBody> | undefined | null = {}) : void {
9191
if (answerPostRequestBody) {
9292
if(answerPostRequestBody.acceptedModalities)
93-
writer.writeEnumValue<Modality>("acceptedModalities", ...answerPostRequestBody.acceptedModalities);
93+
writer.writeCollectionOfEnumValues<Modality>("acceptedModalities", answerPostRequestBody.acceptedModalities);
9494
writer.writeStringValue("callbackUri", answerPostRequestBody.callbackUri);
9595
writer.writeObjectValue<IncomingCallOptions>("callOptions", answerPostRequestBody.callOptions, serializeIncomingCallOptions);
9696
writer.writeObjectValue<MediaConfig>("mediaConfig", answerPostRequestBody.mediaConfig, serializeMediaConfig);

packages/msgraph-sdk-communications/communications/calls/item/participants/invite/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ export interface InvitePostRequestBody extends AdditionalDataHolder, BackedModel
5252
*/
5353
export interface InviteRequestBuilder extends BaseRequestBuilder<InviteRequestBuilder> {
5454
/**
55-
* Invite participants to the active call. For more information about how to handle operations, see commsOperation.
55+
* Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
5656
* @param body The request body
5757
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5858
* @returns {Promise<InviteParticipantsOperation>}
5959
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
60-
* @see {@link https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-1.0|Find more info here}
60+
* @see {@link https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0|Find more info here}
6161
*/
6262
post(body: InvitePostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<InviteParticipantsOperation | undefined>;
6363
/**
64-
* Invite participants to the active call. For more information about how to handle operations, see commsOperation.
64+
* Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
6565
* @param body The request body
6666
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6767
* @returns {RequestInformation}

packages/msgraph-sdk-communications/communications/calls/item/sendDtmfTones/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function serializeSendDtmfTonesPostRequestBody(writer: SerializationWrite
8282
writer.writeStringValue("clientContext", sendDtmfTonesPostRequestBody.clientContext);
8383
writer.writeNumberValue("delayBetweenTonesMs", sendDtmfTonesPostRequestBody.delayBetweenTonesMs);
8484
if(sendDtmfTonesPostRequestBody.tones)
85-
writer.writeEnumValue<Tone>("tones", ...sendDtmfTonesPostRequestBody.tones);
85+
writer.writeCollectionOfEnumValues<Tone>("tones", sendDtmfTonesPostRequestBody.tones);
8686
writer.writeAdditionalData(sendDtmfTonesPostRequestBody.additionalData);
8787
}
8888
}

packages/msgraph-sdk-communications/communications/onlineMeetings/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export interface OnlineMeetingsRequestBuilder extends BaseRequestBuilder<OnlineM
4545
*/
4646
byOnlineMeetingId(onlineMeetingId: string) : OnlineMeetingItemRequestBuilder;
4747
/**
48-
* Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions.
48+
* Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) and Teams live event recordings (deprecated) are online meeting artifacts. For more information, see Online meeting artifacts and permissions.
4949
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5050
* @returns {Promise<OnlineMeetingCollectionResponse>}
5151
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
@@ -61,7 +61,7 @@ export interface OnlineMeetingsRequestBuilder extends BaseRequestBuilder<OnlineM
6161
*/
6262
post(body: OnlineMeeting, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<OnlineMeeting | undefined>;
6363
/**
64-
* Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions.
64+
* Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) and Teams live event recordings (deprecated) are online meeting artifacts. For more information, see Online meeting artifacts and permissions.
6565
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6666
* @returns {RequestInformation}
6767
*/
@@ -75,7 +75,7 @@ export interface OnlineMeetingsRequestBuilder extends BaseRequestBuilder<OnlineM
7575
toPostRequestInformation(body: OnlineMeeting, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
7676
}
7777
/**
78-
* Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions.
78+
* Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) and Teams live event recordings (deprecated) are online meeting artifacts. For more information, see Online meeting artifacts and permissions.
7979
*/
8080
export interface OnlineMeetingsRequestBuilderGetQueryParameters {
8181
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder<De
107107
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
108108
* @returns {Promise<DeviceAppManagement>}
109109
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
110-
* @see {@link https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-get?view=graph-rest-1.0|Find more info here}
110+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-get?view=graph-rest-1.0|Find more info here}
111111
*/
112112
get(requestConfiguration?: RequestConfiguration<DeviceAppManagementRequestBuilderGetQueryParameters> | undefined) : Promise<DeviceAppManagement | undefined>;
113113
/**
@@ -116,7 +116,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder<De
116116
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
117117
* @returns {Promise<DeviceAppManagement>}
118118
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
119-
* @see {@link https://learn.microsoft.com/graph/api/intune-policyset-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
119+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
120120
*/
121121
patch(body: DeviceAppManagement, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<DeviceAppManagement | undefined>;
122122
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
2525
*/
2626
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
2727
/**
28-
* Read properties and relationships of the managedAppConfiguration object.
28+
* Read properties and relationships of the managedAppPolicy object.
2929
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3030
* @returns {Promise<ManagedAppPolicy>}
3131
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
32-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0|Find more info here}
32+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-get?view=graph-rest-1.0|Find more info here}
3333
*/
3434
get(requestConfiguration?: RequestConfiguration<ManagedAppPolicyItemRequestBuilderGetQueryParameters> | undefined) : Promise<ManagedAppPolicy | undefined>;
3535
/**
@@ -47,7 +47,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
4747
*/
4848
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
4949
/**
50-
* Read properties and relationships of the managedAppConfiguration object.
50+
* Read properties and relationships of the managedAppPolicy object.
5151
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5252
* @returns {RequestInformation}
5353
*/
@@ -61,7 +61,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
6161
toPatchRequestInformation(body: ManagedAppPolicy, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6262
}
6363
/**
64-
* Read properties and relationships of the managedAppConfiguration object.
64+
* Read properties and relationships of the managedAppPolicy object.
6565
*/
6666
export interface ManagedAppPolicyItemRequestBuilderGetQueryParameters {
6767
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/targetApps/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
6262
* @param body The request body
6363
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6464
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
65-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
65+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
6666
*/
6767
post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
6868
/**

0 commit comments

Comments
 (0)