@microsoft/msgraph-sdk-deviceappmanagement 1.0.0-preview.54 → 1.0.0-preview.57
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 +189 -4
- package/deviceAppManagement/index.d.ts +1 -1
- package/deviceAppManagement/managedAppPolicies/index.d.ts +4 -4
- package/deviceAppManagement/managedAppPolicies/item/index.d.ts +4 -4
- package/deviceAppManagement/managedAppPolicies/item/targetApps/index.d.ts +1 -1
- package/deviceAppManagement/managedAppRegistrations/index.d.ts +4 -4
- package/deviceAppManagement/managedAppRegistrations/item/appliedPolicies/item/targetApps/index.d.ts +1 -1
- package/deviceAppManagement/managedAppRegistrations/item/intendedPolicies/item/targetApps/index.d.ts +1 -1
- package/deviceAppManagement/managedAppStatuses/item/index.d.ts +4 -4
- package/deviceAppManagement/managedEBooks/index.d.ts +4 -4
- package/deviceAppManagement/managedEBooks/item/assignments/index.d.ts +3 -3
- package/deviceAppManagement/managedEBooks/item/assignments/item/index.d.ts +7 -7
- package/deviceAppManagement/managedEBooks/item/index.d.ts +4 -4
- package/deviceAppManagement/mobileAppConfigurations/item/index.d.ts +4 -4
- package/deviceAppManagement/mobileApps/index.d.ts +7 -7
- package/deviceAppManagement/mobileApps/item/index.d.ts +10 -10
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -100,43 +100,43 @@ export interface MobileAppItemRequestBuilder extends BaseRequestBuilder<MobileAp
|
|
|
100
100
|
*/
|
|
101
101
|
get graphWindowsWebApp(): GraphWindowsWebAppRequestBuilder;
|
|
102
102
|
/**
|
|
103
|
-
* Deletes a
|
|
103
|
+
* Deletes a windowsWebApp.
|
|
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-
|
|
106
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-windowswebapp-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
|
|
110
|
+
* Read properties and relationships of the windowsAppX 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-
|
|
114
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-windowsappx-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
|
|
118
|
+
* Update the properties of a webApp 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-
|
|
123
|
+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-webapp-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
|
|
127
|
+
* Deletes a windowsWebApp.
|
|
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
|
|
133
|
+
* Read properties and relationships of the windowsAppX 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
|
|
139
|
+
* Update the properties of a webApp 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
|
|
147
|
+
* Read properties and relationships of the windowsAppX 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.
|
|
3
|
+
"version": "1.0.0-preview.57",
|
|
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": "
|
|
40
|
+
"gitHead": "2a6110df0ff3f617ccfdca60e407c9ac29e87846"
|
|
41
41
|
}
|