groupcore-utils 1.3.2 → 1.3.3
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 +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
### Description
|
3
3
|
This package provides methods to work with parts of your Core account to enable you build solutions around the Core features.
|
4
4
|
|
5
|
-
###Installation
|
5
|
+
### Installation
|
6
6
|
```
|
7
7
|
npm install groupcore-utils
|
8
8
|
```
|
9
9
|
|
10
|
-
###Basic Usage
|
10
|
+
### Basic Usage
|
11
11
|
```
|
12
12
|
import CoreUtils from 'groupcore-utils'
|
13
13
|
|
@@ -26,10 +26,10 @@ coreUtil.getGroupInventory({groupId: 1}).then((response)=>{
|
|
26
26
|
|
27
27
|
```
|
28
28
|
|
29
|
-
###Available Methods
|
29
|
+
### Available Methods
|
30
30
|
These are the methods you can call with this package. This list will continually be updated as needs arise.
|
31
31
|
|
32
|
-
####submitForm()
|
32
|
+
#### submitForm()
|
33
33
|
```
|
34
34
|
/**
|
35
35
|
* Submit a form to the Core Lead Management module
|
@@ -42,7 +42,7 @@ These are the methods you can call with this package. This list will continually
|
|
42
42
|
```
|
43
43
|
|
44
44
|
|
45
|
-
####sendMail()
|
45
|
+
#### sendMail()
|
46
46
|
```
|
47
47
|
/**
|
48
48
|
* Send an email message from your Core account.
|
@@ -56,7 +56,7 @@ These are the methods you can call with this package. This list will continually
|
|
56
56
|
*/
|
57
57
|
```
|
58
58
|
|
59
|
-
####addLead()
|
59
|
+
#### addLead()
|
60
60
|
```
|
61
61
|
/**
|
62
62
|
* Add a lead to the Core Lead Management module
|
@@ -68,7 +68,7 @@ These are the methods you can call with this package. This list will continually
|
|
68
68
|
*/
|
69
69
|
```
|
70
70
|
|
71
|
-
####getGroupInventory()
|
71
|
+
#### getGroupInventory()
|
72
72
|
```
|
73
73
|
/**
|
74
74
|
* get inventory by group
|
@@ -77,7 +77,7 @@ These are the methods you can call with this package. This list will continually
|
|
77
77
|
*/
|
78
78
|
```
|
79
79
|
|
80
|
-
####getSectionContent()
|
80
|
+
#### getSectionContent()
|
81
81
|
```
|
82
82
|
/**
|
83
83
|
* Get content from the Core content management system, by section
|
@@ -86,7 +86,7 @@ These are the methods you can call with this package. This list will continually
|
|
86
86
|
*/
|
87
87
|
```
|
88
88
|
|
89
|
-
###Testing
|
89
|
+
### Testing
|
90
90
|
```
|
91
91
|
npm run test
|
92
92
|
```
|