pipedrive 33.3.0 → 33.4.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.
@@ -70,4 +70,9 @@ export interface ProjectAllOf1 {
70
70
  * @type {Array<number>}
71
71
  */
72
72
  'labels'?: Array<number>;
73
+ /**
74
+ * The health status of the project
75
+ * @type {number}
76
+ */
77
+ 'health_status'?: number | null;
73
78
  }
@@ -76,6 +76,11 @@ export interface AddProjectRequest {
76
76
  */
77
77
  'label_ids'?: Array<number>;
78
78
  /**
79
+ * The health status of the project
80
+ * @type {number}
81
+ */
82
+ 'health_status'?: number;
83
+ /**
79
84
  * The ID of the template the project will be based on. Only used when creating a new project.
80
85
  * @type {number}
81
86
  */
@@ -82,9 +82,9 @@ export interface Project {
82
82
  'label_ids'?: Array<number>;
83
83
  /**
84
84
  * The health status of the project
85
- * @type {string}
85
+ * @type {number}
86
86
  */
87
- 'health_status'?: string | null;
87
+ 'health_status'?: number | null;
88
88
  /**
89
89
  * The creation date and time of the project in ISO 8601 format
90
90
  * @type {string}
@@ -76,6 +76,11 @@ export interface UpdateProjectRequest {
76
76
  */
77
77
  'label_ids'?: Array<number>;
78
78
  /**
79
+ * The health status of the project
80
+ * @type {number}
81
+ */
82
+ 'health_status'?: number;
83
+ /**
79
84
  * The ID of the template the project will be based on. Only used when creating a new project.
80
85
  * @type {number}
81
86
  */
@@ -70,4 +70,9 @@ export interface ProjectAllOf1 {
70
70
  * @type {Array<number>}
71
71
  */
72
72
  'labels'?: Array<number>;
73
+ /**
74
+ * The health status of the project
75
+ * @type {number}
76
+ */
77
+ 'health_status'?: number | null;
73
78
  }
@@ -76,6 +76,11 @@ export interface AddProjectRequest {
76
76
  */
77
77
  'label_ids'?: Array<number>;
78
78
  /**
79
+ * The health status of the project
80
+ * @type {number}
81
+ */
82
+ 'health_status'?: number;
83
+ /**
79
84
  * The ID of the template the project will be based on. Only used when creating a new project.
80
85
  * @type {number}
81
86
  */
@@ -82,9 +82,9 @@ export interface Project {
82
82
  'label_ids'?: Array<number>;
83
83
  /**
84
84
  * The health status of the project
85
- * @type {string}
85
+ * @type {number}
86
86
  */
87
- 'health_status'?: string | null;
87
+ 'health_status'?: number | null;
88
88
  /**
89
89
  * The creation date and time of the project in ISO 8601 format
90
90
  * @type {string}
@@ -76,6 +76,11 @@ export interface UpdateProjectRequest {
76
76
  */
77
77
  'label_ids'?: Array<number>;
78
78
  /**
79
+ * The health status of the project
80
+ * @type {number}
81
+ */
82
+ 'health_status'?: number;
83
+ /**
79
84
  * The ID of the template the project will be based on. Only used when creating a new project.
80
85
  * @type {number}
81
86
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipedrive",
3
- "version": "33.3.0",
3
+ "version": "33.4.0",
4
4
  "description": "Pipedrive REST client for NodeJS",
5
5
  "license": "MIT",
6
6
  "homepage": "https://developers.pipedrive.com",