yellowgrid-api-ts 3.2.219 → 3.2.221

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
@@ -1717,10 +1717,6 @@ export interface CrmActivityDTO {
1717
1717
  * Activity Description
1718
1718
  */
1719
1719
  'description'?: string;
1720
- /**
1721
- * Activity URL
1722
- */
1723
- 'url'?: string | null;
1724
1720
  /**
1725
1721
  * Activity User Name
1726
1722
  */
@@ -1729,6 +1725,10 @@ export interface CrmActivityDTO {
1729
1725
  * Activity Contact Name
1730
1726
  */
1731
1727
  'contact'?: string | null;
1728
+ /**
1729
+ * Activity Order ID
1730
+ */
1731
+ 'orderId'?: number | null;
1732
1732
  }
1733
1733
  /**
1734
1734
  * CRM Contact
package/dist/api.d.ts CHANGED
@@ -1694,10 +1694,6 @@ export interface CrmActivityDTO {
1694
1694
  * Activity Description
1695
1695
  */
1696
1696
  'description'?: string;
1697
- /**
1698
- * Activity URL
1699
- */
1700
- 'url'?: string | null;
1701
1697
  /**
1702
1698
  * Activity User Name
1703
1699
  */
@@ -1706,6 +1702,10 @@ export interface CrmActivityDTO {
1706
1702
  * Activity Contact Name
1707
1703
  */
1708
1704
  'contact'?: string | null;
1705
+ /**
1706
+ * Activity Order ID
1707
+ */
1708
+ 'orderId'?: number | null;
1709
1709
  }
1710
1710
  /**
1711
1711
  * CRM Contact
@@ -10,9 +10,9 @@ Name | Type | Description | Notes
10
10
  **timestamp** | **string** | Activity Timestamp | [optional] [default to undefined]
11
11
  **title** | **string** | Activity Title | [optional] [default to undefined]
12
12
  **description** | **string** | Activity Description | [optional] [default to undefined]
13
- **url** | **string** | Activity URL | [optional] [default to undefined]
14
13
  **user** | **string** | Activity User Name | [optional] [default to undefined]
15
14
  **contact** | **string** | Activity Contact Name | [optional] [default to undefined]
15
+ **orderId** | **number** | Activity Order ID | [optional] [default to undefined]
16
16
 
17
17
  ## Example
18
18
 
@@ -24,9 +24,9 @@ const instance: CrmActivityDTO = {
24
24
  timestamp,
25
25
  title,
26
26
  description,
27
- url,
28
27
  user,
29
28
  contact,
29
+ orderId,
30
30
  };
31
31
  ```
32
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.219",
3
+ "version": "3.2.221",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {