pipedrive 33.6.2 → 33.7.0

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.
@@ -65,4 +65,9 @@ export interface ActivityCollectionResponseObjectAllOf {
65
65
  * @type {string}
66
66
  */
67
67
  'public_description'?: string;
68
+ /**
69
+ * The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API. Set to `null` to clear the Outcome.
70
+ * @type {number}
71
+ */
72
+ 'outcome'?: number | null;
68
73
  }
@@ -154,6 +154,11 @@ export interface ActivityItem {
154
154
  */
155
155
  'priority'?: number;
156
156
  /**
157
+ * The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API.
158
+ * @type {number}
159
+ */
160
+ 'outcome'?: number | null;
161
+ /**
157
162
  * The note of the activity
158
163
  * @type {string}
159
164
  */
@@ -109,6 +109,11 @@ export interface AddActivityRequest {
109
109
  */
110
110
  'priority'?: number;
111
111
  /**
112
+ * The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API. Set to `null` to clear the Outcome.
113
+ * @type {number}
114
+ */
115
+ 'outcome'?: number | null;
116
+ /**
112
117
  * The note of the activity
113
118
  * @type {string}
114
119
  */
@@ -65,4 +65,9 @@ export interface ActivityCollectionResponseObjectAllOf {
65
65
  * @type {string}
66
66
  */
67
67
  'public_description'?: string;
68
+ /**
69
+ * The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API. Set to `null` to clear the Outcome.
70
+ * @type {number}
71
+ */
72
+ 'outcome'?: number | null;
68
73
  }
@@ -154,6 +154,11 @@ export interface ActivityItem {
154
154
  */
155
155
  'priority'?: number;
156
156
  /**
157
+ * The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API.
158
+ * @type {number}
159
+ */
160
+ 'outcome'?: number | null;
161
+ /**
157
162
  * The note of the activity
158
163
  * @type {string}
159
164
  */
@@ -109,6 +109,11 @@ export interface AddActivityRequest {
109
109
  */
110
110
  'priority'?: number;
111
111
  /**
112
+ * The ID of the Outcome for the activity. The available Outcome values depend on the activity type and can be retrieved using the Activity Fields API. Set to `null` to clear the Outcome.
113
+ * @type {number}
114
+ */
115
+ 'outcome'?: number | null;
116
+ /**
112
117
  * The note of the activity
113
118
  * @type {string}
114
119
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipedrive",
3
- "version": "33.6.2",
3
+ "version": "33.7.0",
4
4
  "description": "Pipedrive REST client for NodeJS",
5
5
  "license": "MIT",
6
6
  "homepage": "https://developers.pipedrive.com",