@axazure/pcf-proxy-dynamics 1.0.17 → 1.0.19
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 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,11 +20,11 @@ component logic in real time, avoiding the heavy deploy-test cycle.
|
|
|
20
20
|
|
|
21
21
|
## 1. Installation
|
|
22
22
|
```js
|
|
23
|
-
npm
|
|
23
|
+
npm i @axazure/pcf-proxy-dynamics
|
|
24
24
|
```
|
|
25
25
|
Add the backend script if it’s missing:
|
|
26
26
|
```js
|
|
27
|
-
"start:backend": "node ./node_modules/@
|
|
27
|
+
"start:backend": "node ./node_modules/@axazure/pcf-proxy-dynamics/dist/server.js"
|
|
28
28
|
```
|
|
29
29
|
Start your local dev environment:
|
|
30
30
|
```{r, engine='bash', count_lines}
|
|
@@ -39,7 +39,7 @@ Proxy base URL: http://localhost:3001
|
|
|
39
39
|
var _userSettings, _recordId, _entityName;
|
|
40
40
|
|
|
41
41
|
if (document.location.host.includes('localhost')) {
|
|
42
|
-
const { WebApiProxy } = require("@
|
|
42
|
+
const { WebApiProxy } = require("@axazure/pcf-proxy-dynamics");
|
|
43
43
|
_api = new WebApiProxy("http://localhost:3001");
|
|
44
44
|
_userSettings = {} as ComponentFramework.UserSettings;
|
|
45
45
|
_userSettings.userId = "00000000-0000-0000-0000-000000000000";
|
|
@@ -92,7 +92,7 @@ Proxy base URL: http://localhost:3001
|
|
|
92
92
|
var _userSettings, _recordId, _entityName = null;
|
|
93
93
|
|
|
94
94
|
if (document.location.host.includes('localhost')) {
|
|
95
|
-
const { WebApiProxy } = require("@
|
|
95
|
+
const { WebApiProxy } = require("@axazure/pcf-proxy-dynamics");
|
|
96
96
|
_api = new WebApiProxy("http://localhost:3001");
|
|
97
97
|
_userSettings = {} as ComponentFramework.UserSettings;
|
|
98
98
|
_userSettings.userId = "00000000-0000-0000-0000-000000000000";
|