yellowgrid-api-ts 3.2.135 → 3.2.136
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/api.ts +1 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/docs/CRMApi.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -11785,6 +11785,7 @@ export class CRMApi extends BaseAPI {
|
|
|
11785
11785
|
export const GetGetCrmActivitiesTypeEnum = {
|
|
11786
11786
|
Alert: 'alert',
|
|
11787
11787
|
Call: 'call',
|
|
11788
|
+
Email: 'email',
|
|
11788
11789
|
Note: 'note',
|
|
11789
11790
|
Order: 'order',
|
|
11790
11791
|
Quote: 'quote',
|
package/dist/api.d.ts
CHANGED
|
@@ -9950,6 +9950,7 @@ export declare class CRMApi extends BaseAPI {
|
|
|
9950
9950
|
export declare const GetGetCrmActivitiesTypeEnum: {
|
|
9951
9951
|
readonly Alert: "alert";
|
|
9952
9952
|
readonly Call: "call";
|
|
9953
|
+
readonly Email: "email";
|
|
9953
9954
|
readonly Note: "note";
|
|
9954
9955
|
readonly Order: "order";
|
|
9955
9956
|
readonly Quote: "quote";
|
package/dist/api.js
CHANGED
package/docs/CRMApi.md
CHANGED
|
@@ -25,7 +25,7 @@ const configuration = new Configuration();
|
|
|
25
25
|
const apiInstance = new CRMApi(configuration);
|
|
26
26
|
|
|
27
27
|
let id: number; //Account ID (default to undefined)
|
|
28
|
-
let type: 'alert' | 'call' | 'note' | 'order' | 'quote' | 'tcx_order'; //Activity Type (optional) (default to undefined)
|
|
28
|
+
let type: 'alert' | 'call' | 'email' | 'note' | 'order' | 'quote' | 'tcx_order'; //Activity Type (optional) (default to undefined)
|
|
29
29
|
let userId: number; //Activity Created By (optional) (default to undefined)
|
|
30
30
|
|
|
31
31
|
const { status, data } = await apiInstance.getGetCrmActivities(
|
|
@@ -40,7 +40,7 @@ const { status, data } = await apiInstance.getGetCrmActivities(
|
|
|
40
40
|
|Name | Type | Description | Notes|
|
|
41
41
|
|------------- | ------------- | ------------- | -------------|
|
|
42
42
|
| **id** | [**number**] | Account ID | defaults to undefined|
|
|
43
|
-
| **type** | [**'alert' | 'call' | 'note' | 'order' | 'quote' | 'tcx_order'**]**Array<'alert' | 'call' | 'note' | 'order' | 'quote' | 'tcx_order'>** | Activity Type | (optional) defaults to undefined|
|
|
43
|
+
| **type** | [**'alert' | 'call' | 'email' | 'note' | 'order' | 'quote' | 'tcx_order'**]**Array<'alert' | 'call' | 'email' | 'note' | 'order' | 'quote' | 'tcx_order'>** | Activity Type | (optional) defaults to undefined|
|
|
44
44
|
| **userId** | [**number**] | Activity Created By | (optional) defaults to undefined|
|
|
45
45
|
|
|
46
46
|
|