pipedrive 27.0.0 → 27.0.1

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.
@@ -61,6 +61,11 @@ export interface BaseDeal {
61
61
  */
62
62
  'deleted'?: boolean;
63
63
  /**
64
+ * Whether the deal is archived or not
65
+ * @type {boolean}
66
+ */
67
+ 'is_archived'?: boolean;
68
+ /**
64
69
  * The status of the deal
65
70
  * @type {string}
66
71
  */
@@ -56,6 +56,16 @@ export interface NewDealParameters {
56
56
  */
57
57
  'stage_id'?: number;
58
58
  /**
59
+ * Whether the deal is archived or not. If omitted, is_archived will be set to false.
60
+ * @type {boolean}
61
+ */
62
+ 'is_archived'?: boolean;
63
+ /**
64
+ * The optional date and time of archiving the deal in UTC. Format: YYYY-MM-DD HH:MM:SS. If omitted and `is_archived` is true, it will be set to the current date and time.
65
+ * @type {string}
66
+ */
67
+ 'archive_time'?: string;
68
+ /**
59
69
  * open = Open, won = Won, lost = Lost, deleted = Deleted. If omitted, status will be set to open.
60
70
  * @type {string}
61
71
  */
@@ -56,6 +56,11 @@ export interface UpdateDealParameters {
56
56
  */
57
57
  'stage_id'?: number;
58
58
  /**
59
+ * Whether the deal is archived or not
60
+ * @type {boolean}
61
+ */
62
+ 'is_archived'?: boolean;
63
+ /**
59
64
  * open = Open, won = Won, lost = Lost, deleted = Deleted.
60
65
  * @type {string}
61
66
  */
@@ -76,6 +76,16 @@ export interface AddDealRequest {
76
76
  */
77
77
  'is_deleted'?: boolean;
78
78
  /**
79
+ * Whether the deal is archived or not
80
+ * @type {boolean}
81
+ */
82
+ 'is_archived'?: boolean;
83
+ /**
84
+ * The optional date and time of archiving the deal in UTC. Format: YYYY-MM-DD HH:MM:SS. If omitted and `is_archived` is true, it will be set to the current date and time.
85
+ * @type {string}
86
+ */
87
+ 'archive_time'?: string;
88
+ /**
79
89
  * The status of the deal
80
90
  * @type {string}
81
91
  */
@@ -76,15 +76,15 @@ export interface DealItem {
76
76
  */
77
77
  'stage_change_time'?: string;
78
78
  /**
79
- * Whether the deal is archived or not
79
+ * Whether the deal is deleted or not
80
80
  * @type {boolean}
81
81
  */
82
- 'is_archived'?: boolean;
82
+ 'is_deleted'?: boolean;
83
83
  /**
84
- * Whether the deal is deleted or not
84
+ * Whether the deal is archived or not
85
85
  * @type {boolean}
86
86
  */
87
- 'is_deleted'?: boolean;
87
+ 'is_archived'?: boolean;
88
88
  /**
89
89
  * The status of the deal
90
90
  * @type {string}
@@ -76,15 +76,15 @@ export interface DealItem1 {
76
76
  */
77
77
  'stage_change_time'?: string;
78
78
  /**
79
- * Whether the deal is archived or not
79
+ * Whether the deal is deleted or not
80
80
  * @type {boolean}
81
81
  */
82
- 'is_archived'?: boolean;
82
+ 'is_deleted'?: boolean;
83
83
  /**
84
- * Whether the deal is deleted or not
84
+ * Whether the deal is archived or not
85
85
  * @type {boolean}
86
86
  */
87
- 'is_deleted'?: boolean;
87
+ 'is_archived'?: boolean;
88
88
  /**
89
89
  * The status of the deal
90
90
  * @type {string}
@@ -76,6 +76,16 @@ export interface UpdateDealRequest {
76
76
  */
77
77
  'is_deleted'?: boolean;
78
78
  /**
79
+ * Whether the deal is archived or not
80
+ * @type {boolean}
81
+ */
82
+ 'is_archived'?: boolean;
83
+ /**
84
+ * The optional date and time of archiving the deal in UTC. Format: YYYY-MM-DD HH:MM:SS. If omitted and `is_archived` is true, it will be set to the current date and time.
85
+ * @type {string}
86
+ */
87
+ 'archive_time'?: string;
88
+ /**
79
89
  * The status of the deal
80
90
  * @type {string}
81
91
  */
@@ -61,6 +61,11 @@ export interface BaseDeal {
61
61
  */
62
62
  'deleted'?: boolean;
63
63
  /**
64
+ * Whether the deal is archived or not
65
+ * @type {boolean}
66
+ */
67
+ 'is_archived'?: boolean;
68
+ /**
64
69
  * The status of the deal
65
70
  * @type {string}
66
71
  */
@@ -56,6 +56,16 @@ export interface NewDealParameters {
56
56
  */
57
57
  'stage_id'?: number;
58
58
  /**
59
+ * Whether the deal is archived or not. If omitted, is_archived will be set to false.
60
+ * @type {boolean}
61
+ */
62
+ 'is_archived'?: boolean;
63
+ /**
64
+ * The optional date and time of archiving the deal in UTC. Format: YYYY-MM-DD HH:MM:SS. If omitted and `is_archived` is true, it will be set to the current date and time.
65
+ * @type {string}
66
+ */
67
+ 'archive_time'?: string;
68
+ /**
59
69
  * open = Open, won = Won, lost = Lost, deleted = Deleted. If omitted, status will be set to open.
60
70
  * @type {string}
61
71
  */
@@ -56,6 +56,11 @@ export interface UpdateDealParameters {
56
56
  */
57
57
  'stage_id'?: number;
58
58
  /**
59
+ * Whether the deal is archived or not
60
+ * @type {boolean}
61
+ */
62
+ 'is_archived'?: boolean;
63
+ /**
59
64
  * open = Open, won = Won, lost = Lost, deleted = Deleted.
60
65
  * @type {string}
61
66
  */
@@ -76,6 +76,16 @@ export interface AddDealRequest {
76
76
  */
77
77
  'is_deleted'?: boolean;
78
78
  /**
79
+ * Whether the deal is archived or not
80
+ * @type {boolean}
81
+ */
82
+ 'is_archived'?: boolean;
83
+ /**
84
+ * The optional date and time of archiving the deal in UTC. Format: YYYY-MM-DD HH:MM:SS. If omitted and `is_archived` is true, it will be set to the current date and time.
85
+ * @type {string}
86
+ */
87
+ 'archive_time'?: string;
88
+ /**
79
89
  * The status of the deal
80
90
  * @type {string}
81
91
  */
@@ -76,15 +76,15 @@ export interface DealItem {
76
76
  */
77
77
  'stage_change_time'?: string;
78
78
  /**
79
- * Whether the deal is archived or not
79
+ * Whether the deal is deleted or not
80
80
  * @type {boolean}
81
81
  */
82
- 'is_archived'?: boolean;
82
+ 'is_deleted'?: boolean;
83
83
  /**
84
- * Whether the deal is deleted or not
84
+ * Whether the deal is archived or not
85
85
  * @type {boolean}
86
86
  */
87
- 'is_deleted'?: boolean;
87
+ 'is_archived'?: boolean;
88
88
  /**
89
89
  * The status of the deal
90
90
  * @type {string}
@@ -76,15 +76,15 @@ export interface DealItem1 {
76
76
  */
77
77
  'stage_change_time'?: string;
78
78
  /**
79
- * Whether the deal is archived or not
79
+ * Whether the deal is deleted or not
80
80
  * @type {boolean}
81
81
  */
82
- 'is_archived'?: boolean;
82
+ 'is_deleted'?: boolean;
83
83
  /**
84
- * Whether the deal is deleted or not
84
+ * Whether the deal is archived or not
85
85
  * @type {boolean}
86
86
  */
87
- 'is_deleted'?: boolean;
87
+ 'is_archived'?: boolean;
88
88
  /**
89
89
  * The status of the deal
90
90
  * @type {string}
@@ -76,6 +76,16 @@ export interface UpdateDealRequest {
76
76
  */
77
77
  'is_deleted'?: boolean;
78
78
  /**
79
+ * Whether the deal is archived or not
80
+ * @type {boolean}
81
+ */
82
+ 'is_archived'?: boolean;
83
+ /**
84
+ * The optional date and time of archiving the deal in UTC. Format: YYYY-MM-DD HH:MM:SS. If omitted and `is_archived` is true, it will be set to the current date and time.
85
+ * @type {string}
86
+ */
87
+ 'archive_time'?: string;
88
+ /**
79
89
  * The status of the deal
80
90
  * @type {string}
81
91
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipedrive",
3
- "version": "27.0.0",
3
+ "version": "27.0.1",
4
4
  "description": "Pipedrive REST client for NodeJS",
5
5
  "license": "MIT",
6
6
  "homepage": "https://developers.pipedrive.com",