@emilgroup/public-api-sdk-node 1.17.0 → 1.17.1
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
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/public-api-sdk-node@1.
|
|
20
|
+
npm install @emilgroup/public-api-sdk-node@1.16.3 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/public-api-sdk-node@1.
|
|
24
|
+
yarn add @emilgroup/public-api-sdk-node@1.16.3
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PublicApi`.
|
|
@@ -35,16 +35,16 @@ export interface CreateLeadRequestDto {
|
|
|
35
35
|
'productVersionId'?: number;
|
|
36
36
|
/**
|
|
37
37
|
* Unique identifier of the product that this object belongs to.
|
|
38
|
-
* @type {
|
|
38
|
+
* @type {string}
|
|
39
39
|
* @memberof CreateLeadRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'productCode'
|
|
41
|
+
'productCode'?: string;
|
|
42
42
|
/**
|
|
43
43
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
44
|
-
* @type {
|
|
44
|
+
* @type {string}
|
|
45
45
|
* @memberof CreateLeadRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'productSlug'
|
|
47
|
+
'productSlug'?: string;
|
|
48
48
|
/**
|
|
49
49
|
* Account object. The create lead request should either contain accountCode or account. The account content will be validated if the \'validate\' flag is set to true. an empty object is required if \'validate flag is set to false.
|
|
50
50
|
* @type {CreateAccountRequestDto}
|
|
@@ -34,16 +34,16 @@ export interface UpdateLeadRequestDto {
|
|
|
34
34
|
'productVersionId'?: number;
|
|
35
35
|
/**
|
|
36
36
|
* Unique identifier of the product that this object belongs to.
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {string}
|
|
38
38
|
* @memberof UpdateLeadRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'productCode'
|
|
40
|
+
'productCode'?: string;
|
|
41
41
|
/**
|
|
42
42
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {string}
|
|
44
44
|
* @memberof UpdateLeadRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'productSlug'
|
|
46
|
+
'productSlug'?: string;
|
|
47
47
|
/**
|
|
48
48
|
* Account object. The create lead request should either contain accountCode or account. The account content will be validated if the \'validate\' flag is set to true. an empty object is required if \'validate flag is set to false.
|
|
49
49
|
* @type {CreateAccountRequestDto}
|
|
@@ -40,16 +40,16 @@ export interface CreateLeadRequestDto {
|
|
|
40
40
|
'productVersionId'?: number;
|
|
41
41
|
/**
|
|
42
42
|
* Unique identifier of the product that this object belongs to.
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {string}
|
|
44
44
|
* @memberof CreateLeadRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'productCode'
|
|
46
|
+
'productCode'?: string;
|
|
47
47
|
/**
|
|
48
48
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
49
|
-
* @type {
|
|
49
|
+
* @type {string}
|
|
50
50
|
* @memberof CreateLeadRequestDto
|
|
51
51
|
*/
|
|
52
|
-
'productSlug'
|
|
52
|
+
'productSlug'?: string;
|
|
53
53
|
/**
|
|
54
54
|
* Account object. The create lead request should either contain accountCode or account. The account content will be validated if the \'validate\' flag is set to true. an empty object is required if \'validate flag is set to false.
|
|
55
55
|
* @type {CreateAccountRequestDto}
|
|
@@ -39,16 +39,16 @@ export interface UpdateLeadRequestDto {
|
|
|
39
39
|
'productVersionId'?: number;
|
|
40
40
|
/**
|
|
41
41
|
* Unique identifier of the product that this object belongs to.
|
|
42
|
-
* @type {
|
|
42
|
+
* @type {string}
|
|
43
43
|
* @memberof UpdateLeadRequestDto
|
|
44
44
|
*/
|
|
45
|
-
'productCode'
|
|
45
|
+
'productCode'?: string;
|
|
46
46
|
/**
|
|
47
47
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {string}
|
|
49
49
|
* @memberof UpdateLeadRequestDto
|
|
50
50
|
*/
|
|
51
|
-
'productSlug'
|
|
51
|
+
'productSlug'?: string;
|
|
52
52
|
/**
|
|
53
53
|
* Account object. The create lead request should either contain accountCode or account. The account content will be validated if the \'validate\' flag is set to true. an empty object is required if \'validate flag is set to false.
|
|
54
54
|
* @type {CreateAccountRequestDto}
|