@microsoft/msgraph-sdk-deviceappmanagement 1.0.0-preview.57 → 1.0.0-preview.58

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/README.md CHANGED
@@ -5,16 +5,13 @@ Get started with the Microsoft Graph SDK for TypeScript by integrating the [Micr
5
5
  This package provides a fluent API for interacting with Microsoft Graph administrative functions.
6
6
 
7
7
  > [!NOTE]
8
- > This package requires the `@microsoft/msgraph-sdk` package. It allows you to build applications using the [v1.0](https://learn.microsoft.com/graph/use-the-api#version) of Microsoft Graph. If you want to try the latest Microsoft Graph APIs, use our [beta SDK](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript) instead.
9
-
8
+ > This package allows you to build applications using the [v1.0](https://learn.microsoft.com/graph/use-the-api#version) of Microsoft Graph. If you want to try the latest Microsoft Graph APIs, use our [beta SDK](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript) instead.
10
9
 
11
10
  ## 1. Installation
12
11
 
13
12
  To install the package, use npm:
14
13
 
15
14
  ```shell
16
- # this will install the main package
17
- npm install @microsoft/msgraph-sdk
18
15
  # this will install the authentication provider for Azure Identity / Microsoft Entra
19
16
  npm install @microsoft/kiota-authentication-azure @azure/identity
20
17
  # this will install the fluent API package for the administrative API paths
@@ -84,7 +84,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder<De
84
84
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
85
85
  * @returns {Promise<DeviceAppManagement>}
86
86
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
87
- * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-get?view=graph-rest-1.0|Find more info here}
87
+ * @see {@link https://learn.microsoft.com/graph/api/intune-unlock-deviceappmanagement-get?view=graph-rest-1.0|Find more info here}
88
88
  */
89
89
  get(requestConfiguration?: RequestConfiguration<DeviceAppManagementRequestBuilderGetQueryParameters> | undefined): Promise<DeviceAppManagement | undefined>;
90
90
  /**
@@ -93,7 +93,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder<De
93
93
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
94
94
  * @returns {Promise<DeviceAppManagement>}
95
95
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
96
- * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
96
+ * @see {@link https://learn.microsoft.com/graph/api/intune-unlock-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
97
97
  */
98
98
  patch(body: DeviceAppManagement, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DeviceAppManagement | undefined>;
99
99
  /**
@@ -17,11 +17,11 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder<Man
17
17
  */
18
18
  byManagedAppPolicyId(managedAppPolicyId: string): ManagedAppPolicyItemRequestBuilder;
19
19
  /**
20
- * List properties and relationships of the managedAppProtection objects.
20
+ * List properties and relationships of the targetedManagedAppProtection objects.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<ManagedAppPolicyCollectionResponse>}
23
23
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-list?view=graph-rest-1.0|Find more info here}
24
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-list?view=graph-rest-1.0|Find more info here}
25
25
  */
26
26
  get(requestConfiguration?: RequestConfiguration<ManagedAppPoliciesRequestBuilderGetQueryParameters> | undefined): Promise<ManagedAppPolicyCollectionResponse | undefined>;
27
27
  /**
@@ -33,7 +33,7 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder<Man
33
33
  */
34
34
  post(body: ManagedAppPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedAppPolicy | undefined>;
35
35
  /**
36
- * List properties and relationships of the managedAppProtection objects.
36
+ * List properties and relationships of the targetedManagedAppProtection objects.
37
37
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
38
38
  * @returns {RequestInformation}
39
39
  */
@@ -47,7 +47,7 @@ export interface ManagedAppPoliciesRequestBuilder extends BaseRequestBuilder<Man
47
47
  toPostRequestInformation(body: ManagedAppPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
48
48
  }
49
49
  /**
50
- * List properties and relationships of the managedAppProtection objects.
50
+ * List properties and relationships of the targetedManagedAppProtection objects.
51
51
  */
52
52
  export interface ManagedAppPoliciesRequestBuilderGetQueryParameters {
53
53
  /**
@@ -16,11 +16,11 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
16
16
  */
17
17
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
18
18
  /**
19
- * Read properties and relationships of the managedAppConfiguration object.
19
+ * Read properties and relationships of the managedAppPolicy object.
20
20
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
21
21
  * @returns {Promise<ManagedAppPolicy>}
22
22
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
23
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0|Find more info here}
23
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-get?view=graph-rest-1.0|Find more info here}
24
24
  */
25
25
  get(requestConfiguration?: RequestConfiguration<ManagedAppPolicyItemRequestBuilderGetQueryParameters> | undefined): Promise<ManagedAppPolicy | undefined>;
26
26
  /**
@@ -38,7 +38,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
38
38
  */
39
39
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
40
40
  /**
41
- * Read properties and relationships of the managedAppConfiguration object.
41
+ * Read properties and relationships of the managedAppPolicy object.
42
42
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
43
43
  * @returns {RequestInformation}
44
44
  */
@@ -52,7 +52,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
52
52
  toPatchRequestInformation(body: ManagedAppPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
53
53
  }
54
54
  /**
55
- * Read properties and relationships of the managedAppConfiguration object.
55
+ * Read properties and relationships of the managedAppPolicy object.
56
56
  */
57
57
  export interface ManagedAppPolicyItemRequestBuilderGetQueryParameters {
58
58
  /**
@@ -39,7 +39,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
39
39
  * @param body The request body
40
40
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
41
41
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
42
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
42
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
43
43
  */
44
44
  post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
45
45
  /**
@@ -39,7 +39,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
39
39
  * @param body The request body
40
40
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
41
41
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
42
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
42
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
43
43
  */
44
44
  post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
45
45
  /**
@@ -39,7 +39,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
39
39
  * @param body The request body
40
40
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
41
41
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
42
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
42
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
43
43
  */
44
44
  post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
45
45
  /**
@@ -17,11 +17,11 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
17
17
  */
18
18
  byManagedEBookAssignmentId(managedEBookAssignmentId: string): ManagedEBookAssignmentItemRequestBuilder;
19
19
  /**
20
- * List properties and relationships of the managedEBookAssignment objects.
20
+ * List properties and relationships of the iosVppEBookAssignment objects.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<ManagedEBookAssignmentCollectionResponse>}
23
23
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
- * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-list?view=graph-rest-1.0|Find more info here}
24
+ * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-list?view=graph-rest-1.0|Find more info here}
25
25
  */
26
26
  get(requestConfiguration?: RequestConfiguration<AssignmentsRequestBuilderGetQueryParameters> | undefined): Promise<ManagedEBookAssignmentCollectionResponse | undefined>;
27
27
  /**
@@ -34,7 +34,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
34
34
  */
35
35
  post(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedEBookAssignment | undefined>;
36
36
  /**
37
- * List properties and relationships of the managedEBookAssignment objects.
37
+ * List properties and relationships of the iosVppEBookAssignment objects.
38
38
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
39
39
  * @returns {RequestInformation}
40
40
  */
@@ -48,7 +48,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
48
48
  toPostRequestInformation(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
49
49
  }
50
50
  /**
51
- * List properties and relationships of the managedEBookAssignment objects.
51
+ * List properties and relationships of the iosVppEBookAssignment objects.
52
52
  */
53
53
  export interface AssignmentsRequestBuilderGetQueryParameters {
54
54
  /**
@@ -5,10 +5,10 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBuilder<ManagedEBookAssignmentItemRequestBuilder> {
7
7
  /**
8
- * Deletes a managedEBookAssignment.
8
+ * Deletes a iosVppEBookAssignment.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
11
- * @see {@link https://learn.microsoft.com/graph/api/intune-books-managedebookassignment-delete?view=graph-rest-1.0|Find more info here}
11
+ * @see {@link https://learn.microsoft.com/graph/api/intune-books-iosvppebookassignment-delete?view=graph-rest-1.0|Find more info here}
12
12
  */
13
13
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
14
14
  /**
@@ -29,7 +29,7 @@ export interface ManagedEBookAssignmentItemRequestBuilder extends BaseRequestBui
29
29
  */
30
30
  patch(body: ManagedEBookAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedEBookAssignment | undefined>;
31
31
  /**
32
- * Deletes a managedEBookAssignment.
32
+ * Deletes a iosVppEBookAssignment.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
@@ -17,11 +17,11 @@ export interface MobileAppConfigurationsRequestBuilder extends BaseRequestBuilde
17
17
  */
18
18
  byManagedDeviceMobileAppConfigurationId(managedDeviceMobileAppConfigurationId: string): ManagedDeviceMobileAppConfigurationItemRequestBuilder;
19
19
  /**
20
- * List properties and relationships of the managedDeviceMobileAppConfiguration objects.
20
+ * List properties and relationships of the iosMobileAppConfiguration objects.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {Promise<ManagedDeviceMobileAppConfigurationCollectionResponse>}
23
23
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
24
- * @see {@link https://learn.microsoft.com/graph/api/intune-apps-manageddevicemobileappconfiguration-list?view=graph-rest-1.0|Find more info here}
24
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-iosmobileappconfiguration-list?view=graph-rest-1.0|Find more info here}
25
25
  */
26
26
  get(requestConfiguration?: RequestConfiguration<MobileAppConfigurationsRequestBuilderGetQueryParameters> | undefined): Promise<ManagedDeviceMobileAppConfigurationCollectionResponse | undefined>;
27
27
  /**
@@ -34,7 +34,7 @@ export interface MobileAppConfigurationsRequestBuilder extends BaseRequestBuilde
34
34
  */
35
35
  post(body: ManagedDeviceMobileAppConfiguration, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ManagedDeviceMobileAppConfiguration | undefined>;
36
36
  /**
37
- * List properties and relationships of the managedDeviceMobileAppConfiguration objects.
37
+ * List properties and relationships of the iosMobileAppConfiguration objects.
38
38
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
39
39
  * @returns {RequestInformation}
40
40
  */
@@ -48,7 +48,7 @@ export interface MobileAppConfigurationsRequestBuilder extends BaseRequestBuilde
48
48
  toPostRequestInformation(body: ManagedDeviceMobileAppConfiguration, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
49
49
  }
50
50
  /**
51
- * List properties and relationships of the managedDeviceMobileAppConfiguration objects.
51
+ * List properties and relationships of the iosMobileAppConfiguration objects.
52
52
  */
53
53
  export interface MobileAppConfigurationsRequestBuilderGetQueryParameters {
54
54
  /**
@@ -97,11 +97,11 @@ export interface MobileAppsRequestBuilder extends BaseRequestBuilder<MobileAppsR
97
97
  */
98
98
  byMobileAppId(mobileAppId: string): MobileAppItemRequestBuilder;
99
99
  /**
100
- * List properties and relationships of the iosStoreApp objects.
100
+ * List properties and relationships of the macOSOfficeSuiteApp objects.
101
101
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
102
102
  * @returns {Promise<MobileAppCollectionResponse>}
103
103
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
104
- * @see {@link https://learn.microsoft.com/graph/api/intune-apps-iosstoreapp-list?view=graph-rest-1.0|Find more info here}
104
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-list?view=graph-rest-1.0|Find more info here}
105
105
  */
106
106
  get(requestConfiguration?: RequestConfiguration<MobileAppsRequestBuilderGetQueryParameters> | undefined): Promise<MobileAppCollectionResponse | undefined>;
107
107
  /**
@@ -114,7 +114,7 @@ export interface MobileAppsRequestBuilder extends BaseRequestBuilder<MobileAppsR
114
114
  */
115
115
  post(body: MobileApp, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MobileApp | undefined>;
116
116
  /**
117
- * List properties and relationships of the iosStoreApp objects.
117
+ * List properties and relationships of the macOSOfficeSuiteApp objects.
118
118
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
119
119
  * @returns {RequestInformation}
120
120
  */
@@ -128,7 +128,7 @@ export interface MobileAppsRequestBuilder extends BaseRequestBuilder<MobileAppsR
128
128
  toPostRequestInformation(body: MobileApp, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
129
129
  }
130
130
  /**
131
- * List properties and relationships of the iosStoreApp objects.
131
+ * List properties and relationships of the macOSOfficeSuiteApp objects.
132
132
  */
133
133
  export interface MobileAppsRequestBuilderGetQueryParameters {
134
134
  /**
@@ -100,43 +100,43 @@ export interface MobileAppItemRequestBuilder extends BaseRequestBuilder<MobileAp
100
100
  */
101
101
  get graphWindowsWebApp(): GraphWindowsWebAppRequestBuilder;
102
102
  /**
103
- * Deletes a windowsWebApp.
103
+ * Deletes a macOSMicrosoftEdgeApp.
104
104
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
105
105
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
106
- * @see {@link https://learn.microsoft.com/graph/api/intune-apps-windowswebapp-delete?view=graph-rest-1.0|Find more info here}
106
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-macosmicrosoftedgeapp-delete?view=graph-rest-1.0|Find more info here}
107
107
  */
108
108
  delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
109
109
  /**
110
- * Read properties and relationships of the windowsAppX object.
110
+ * Read properties and relationships of the iosiPadOSWebClip object.
111
111
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
112
112
  * @returns {Promise<MobileApp>}
113
113
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
114
- * @see {@link https://learn.microsoft.com/graph/api/intune-apps-windowsappx-get?view=graph-rest-1.0|Find more info here}
114
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-iosipadoswebclip-get?view=graph-rest-1.0|Find more info here}
115
115
  */
116
116
  get(requestConfiguration?: RequestConfiguration<MobileAppItemRequestBuilderGetQueryParameters> | undefined): Promise<MobileApp | undefined>;
117
117
  /**
118
- * Update the properties of a webApp object.
118
+ * Update the properties of a macOSMicrosoftEdgeApp object.
119
119
  * @param body The request body
120
120
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
121
121
  * @returns {Promise<MobileApp>}
122
122
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
123
- * @see {@link https://learn.microsoft.com/graph/api/intune-apps-webapp-update?view=graph-rest-1.0|Find more info here}
123
+ * @see {@link https://learn.microsoft.com/graph/api/intune-apps-macosmicrosoftedgeapp-update?view=graph-rest-1.0|Find more info here}
124
124
  */
125
125
  patch(body: MobileApp, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MobileApp | undefined>;
126
126
  /**
127
- * Deletes a windowsWebApp.
127
+ * Deletes a macOSMicrosoftEdgeApp.
128
128
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
129
129
  * @returns {RequestInformation}
130
130
  */
131
131
  toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
132
132
  /**
133
- * Read properties and relationships of the windowsAppX object.
133
+ * Read properties and relationships of the iosiPadOSWebClip object.
134
134
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
135
135
  * @returns {RequestInformation}
136
136
  */
137
137
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<MobileAppItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
138
138
  /**
139
- * Update the properties of a webApp object.
139
+ * Update the properties of a macOSMicrosoftEdgeApp object.
140
140
  * @param body The request body
141
141
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
142
142
  * @returns {RequestInformation}
@@ -144,7 +144,7 @@ export interface MobileAppItemRequestBuilder extends BaseRequestBuilder<MobileAp
144
144
  toPatchRequestInformation(body: MobileApp, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
145
145
  }
146
146
  /**
147
- * Read properties and relationships of the windowsAppX object.
147
+ * Read properties and relationships of the iosiPadOSWebClip object.
148
148
  */
149
149
  export interface MobileAppItemRequestBuilderGetQueryParameters {
150
150
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/msgraph-sdk-deviceappmanagement",
3
- "version": "1.0.0-preview.57",
3
+ "version": "1.0.0-preview.58",
4
4
  "description": "DeviceAppManagement fluent API for Microsoft Graph",
5
5
  "keywords": [
6
6
  "Microsoft",
@@ -37,5 +37,5 @@
37
37
  "typescript": "^5.3.3"
38
38
  },
39
39
  "type": "module",
40
- "gitHead": "2a6110df0ff3f617ccfdca60e407c9ac29e87846"
40
+ "gitHead": "d363ba15cf74a576b0b7e7377d98a9bcfdbc7025"
41
41
  }