@device-management-toolkit/wsman-messages 5.9.4 → 5.9.5
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 +4 -2
- package/dist +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,18 +10,20 @@ Creates properly formatted wsman messages to send to Intel® Active Managemen
|
|
|
10
10
|
|
|
11
11
|
<br>
|
|
12
12
|
|
|
13
|
+
> IMPORTANT: For now, we are continuing to publish both @device-management-toolkit/wsman-messages and @open-amt-cloud-toolkit/wsman-messages npm packages to avoid a breaking change. Please update your package.json at your earliest convenience for when we cease to publish @open-amt-cloud-toolkit/wsman-messages. This is in effort to support the renaming of the toolkit.
|
|
14
|
+
|
|
13
15
|
## Installation
|
|
14
16
|
|
|
15
17
|
via NPM
|
|
16
18
|
|
|
17
19
|
```bash
|
|
18
|
-
npm i @
|
|
20
|
+
npm i @device-management-toolkit/wsman-messages
|
|
19
21
|
```
|
|
20
22
|
|
|
21
23
|
## Usage
|
|
22
24
|
|
|
23
25
|
```typescript
|
|
24
|
-
import { AMT } from '@
|
|
26
|
+
import { AMT } from '@device-management-toolkit/wsman-messages'
|
|
25
27
|
|
|
26
28
|
const amtClass = new AMT.Message()
|
|
27
29
|
const message = this.amtClass.GeneralSettings.Get()
|
package/dist
CHANGED