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 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
@@ -4354,6 +4354,7 @@ exports.CRMApi = CRMApi;
4354
4354
  exports.GetGetCrmActivitiesTypeEnum = {
4355
4355
  Alert: 'alert',
4356
4356
  Call: 'call',
4357
+ Email: 'email',
4357
4358
  Note: 'note',
4358
4359
  Order: 'order',
4359
4360
  Quote: 'quote',
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** | [**&#39;alert&#39; | &#39;call&#39; | &#39;note&#39; | &#39;order&#39; | &#39;quote&#39; | &#39;tcx_order&#39;**]**Array<&#39;alert&#39; &#124; &#39;call&#39; &#124; &#39;note&#39; &#124; &#39;order&#39; &#124; &#39;quote&#39; &#124; &#39;tcx_order&#39;>** | Activity Type | (optional) defaults to undefined|
43
+ | **type** | [**&#39;alert&#39; | &#39;call&#39; | &#39;email&#39; | &#39;note&#39; | &#39;order&#39; | &#39;quote&#39; | &#39;tcx_order&#39;**]**Array<&#39;alert&#39; &#124; &#39;call&#39; &#124; &#39;email&#39; &#124; &#39;note&#39; &#124; &#39;order&#39; &#124; &#39;quote&#39; &#124; &#39;tcx_order&#39;>** | Activity Type | (optional) defaults to undefined|
44
44
  | **userId** | [**number**] | Activity Created By | (optional) defaults to undefined|
45
45
 
46
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.135",
3
+ "version": "3.2.136",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {