Skip to content

Commit 9a91fe5

Browse files
authored
Merge pull request #808 from microsoftgraph/v1.0/pipelinebuild/187629
Generated models and request builders
2 parents 6fc89a2 + 4d80797 commit 9a91fe5

130 files changed

Lines changed: 2591 additions & 213 deletions

File tree

Some content is hidden

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

packages/kiota-dom-export.txt

Lines changed: 246 additions & 0 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": "4681793C8F3B1E88B820DC2864FDBD9CEBBECDC8A4E0AB6F0CD58A2B4B910E0A02EDCFCAADB436613C1276EADE1BCD033BEB57AD8FB465F32C56AD9B44CBA253",
2+
"descriptionHash": "5536A4421E05104CCF4D6411759119E72560919EF5EBFD2501963106783FD9010B3BEF7791FDB56C8366B628E198708FE405193517EB63F351F1955EF3919A92",
33
"descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml",
44
"lockFileVersion": "1.0.0",
5-
"kiotaVersion": "1.25.1",
5+
"kiotaVersion": "1.27.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.
23+
* Retrieve a conversationMember from a chat or channel.
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/chat-get-members?view=graph-rest-1.0|Find more info here}
27+
* @see {@link https://learn.microsoft.com/graph/api/conversationmember-get?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.
45+
* Retrieve a conversationMember from a chat or channel.
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.
59+
* Retrieve a conversationMember from a chat or channel.
6060
*/
6161
export interface ConversationMemberItemRequestBuilderGetQueryParameters {
6262
/**

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-onboarding-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
119+
* @see {@link https://learn.microsoft.com/graph/api/intune-policyset-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 targetedManagedAppProtection 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-targetedmanagedappprotection-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 targetedManagedAppProtection 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 targetedManagedAppProtection 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-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
65+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
6666
*/
6767
post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
6868
/**

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
3333
*/
3434
byManagedAppRegistrationId(managedAppRegistrationId: string) : ManagedAppRegistrationItemRequestBuilder;
3535
/**
36-
* List properties and relationships of the iosManagedAppRegistration objects.
36+
* List properties and relationships of the androidManagedAppRegistration objects.
3737
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3838
* @returns {Promise<ManagedAppRegistrationCollectionResponse>}
3939
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
40-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-list?view=graph-rest-1.0|Find more info here}
40+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-list?view=graph-rest-1.0|Find more info here}
4141
*/
4242
get(requestConfiguration?: RequestConfiguration<ManagedAppRegistrationsRequestBuilderGetQueryParameters> | undefined) : Promise<ManagedAppRegistrationCollectionResponse | undefined>;
4343
/**
@@ -50,7 +50,7 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
5050
*/
5151
post(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ManagedAppRegistration | undefined>;
5252
/**
53-
* List properties and relationships of the iosManagedAppRegistration objects.
53+
* List properties and relationships of the androidManagedAppRegistration objects.
5454
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5555
* @returns {RequestInformation}
5656
*/
@@ -64,7 +64,7 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
6464
toPostRequestInformation(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6565
}
6666
/**
67-
* List properties and relationships of the iosManagedAppRegistration objects.
67+
* List properties and relationships of the androidManagedAppRegistration objects.
6868
*/
6969
export interface ManagedAppRegistrationsRequestBuilderGetQueryParameters {
7070
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/appliedPolicies/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-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
65+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
6666
*/
6767
post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
6868
/**

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
3737
*/
3838
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
3939
/**
40-
* Read properties and relationships of the androidManagedAppRegistration object.
40+
* Read properties and relationships of the iosManagedAppRegistration object.
4141
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4242
* @returns {Promise<ManagedAppRegistration>}
4343
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
44-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-get?view=graph-rest-1.0|Find more info here}
44+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-get?view=graph-rest-1.0|Find more info here}
4545
*/
4646
get(requestConfiguration?: RequestConfiguration<ManagedAppRegistrationItemRequestBuilderGetQueryParameters> | undefined) : Promise<ManagedAppRegistration | undefined>;
4747
/**
@@ -59,7 +59,7 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
5959
*/
6060
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6161
/**
62-
* Read properties and relationships of the androidManagedAppRegistration object.
62+
* Read properties and relationships of the iosManagedAppRegistration object.
6363
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6464
* @returns {RequestInformation}
6565
*/
@@ -73,7 +73,7 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
7373
toPatchRequestInformation(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
7474
}
7575
/**
76-
* Read properties and relationships of the androidManagedAppRegistration object.
76+
* Read properties and relationships of the iosManagedAppRegistration object.
7777
*/
7878
export interface ManagedAppRegistrationItemRequestBuilderGetQueryParameters {
7979
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/intendedPolicies/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-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
65+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-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)