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.
- package/dist/esm/versions/v1/models/base-deal.d.ts +5 -0
- package/dist/esm/versions/v1/models/new-deal-parameters.d.ts +10 -0
- package/dist/esm/versions/v1/models/update-deal-parameters.d.ts +5 -0
- package/dist/esm/versions/v2/models/add-deal-request.d.ts +10 -0
- package/dist/esm/versions/v2/models/deal-item.d.ts +4 -4
- package/dist/esm/versions/v2/models/deal-item1.d.ts +4 -4
- package/dist/esm/versions/v2/models/update-deal-request.d.ts +10 -0
- package/dist/versions/v1/models/base-deal.d.ts +5 -0
- package/dist/versions/v1/models/new-deal-parameters.d.ts +10 -0
- package/dist/versions/v1/models/update-deal-parameters.d.ts +5 -0
- package/dist/versions/v2/models/add-deal-request.d.ts +10 -0
- package/dist/versions/v2/models/deal-item.d.ts +4 -4
- package/dist/versions/v2/models/deal-item1.d.ts +4 -4
- package/dist/versions/v2/models/update-deal-request.d.ts +10 -0
- package/package.json +1 -1
@@ -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
|
79
|
+
* Whether the deal is deleted or not
|
80
80
|
* @type {boolean}
|
81
81
|
*/
|
82
|
-
'
|
82
|
+
'is_deleted'?: boolean;
|
83
83
|
/**
|
84
|
-
* Whether the deal is
|
84
|
+
* Whether the deal is archived or not
|
85
85
|
* @type {boolean}
|
86
86
|
*/
|
87
|
-
'
|
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
|
79
|
+
* Whether the deal is deleted or not
|
80
80
|
* @type {boolean}
|
81
81
|
*/
|
82
|
-
'
|
82
|
+
'is_deleted'?: boolean;
|
83
83
|
/**
|
84
|
-
* Whether the deal is
|
84
|
+
* Whether the deal is archived or not
|
85
85
|
* @type {boolean}
|
86
86
|
*/
|
87
|
-
'
|
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
|
*/
|
@@ -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
|
79
|
+
* Whether the deal is deleted or not
|
80
80
|
* @type {boolean}
|
81
81
|
*/
|
82
|
-
'
|
82
|
+
'is_deleted'?: boolean;
|
83
83
|
/**
|
84
|
-
* Whether the deal is
|
84
|
+
* Whether the deal is archived or not
|
85
85
|
* @type {boolean}
|
86
86
|
*/
|
87
|
-
'
|
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
|
79
|
+
* Whether the deal is deleted or not
|
80
80
|
* @type {boolean}
|
81
81
|
*/
|
82
|
-
'
|
82
|
+
'is_deleted'?: boolean;
|
83
83
|
/**
|
84
|
-
* Whether the deal is
|
84
|
+
* Whether the deal is archived or not
|
85
85
|
* @type {boolean}
|
86
86
|
*/
|
87
|
-
'
|
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
|
*/
|