pipedrive 22.9.0 → 22.10.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/model/AddNoteRequest.js +2 -2
- package/dist/model/BaseDeal.js +60 -0
- package/dist/model/BasicPerson.js +1 -1
- package/dist/model/DealNonStrict.js +90 -0
- package/dist/model/DealNonStrictWithDetails.js +90 -0
- package/dist/model/DealStrict.js +90 -0
- package/dist/model/DealStrictWithMergeId.js +90 -0
- package/dist/model/NewDeal.js +2 -2
- package/dist/model/NewDealParameters.js +1 -1
- package/dist/model/NewOrganization.js +2 -2
- package/dist/model/NewOrganizationAllOf.js +1 -1
- package/dist/model/NewPerson.js +2 -2
- package/dist/model/Note.js +2 -2
- package/dist/model/NoteParams.js +1 -1
- package/dist/model/UpdatePerson.js +2 -2
- package/dist/model/UserSettingsItem.js +0 -20
- package/package.json +1 -1
@@ -158,7 +158,7 @@ AddNoteRequest.prototype['org_id'] = undefined;
|
|
158
158
|
AddNoteRequest.prototype['user_id'] = undefined;
|
159
159
|
|
160
160
|
/**
|
161
|
-
* The optional creation date & time of the note in UTC. Can be set in the past or in the future.
|
161
|
+
* The optional creation date & time of the note in UTC. Can be set in the past or in the future. Format: YYYY-MM-DD HH:MM:SS
|
162
162
|
* @member {String} add_time
|
163
163
|
*/
|
164
164
|
AddNoteRequest.prototype['add_time'] = undefined;
|
@@ -220,7 +220,7 @@ _AddNoteRequestAllOf["default"].prototype['org_id'] = undefined;
|
|
220
220
|
*/
|
221
221
|
_NoteParams["default"].prototype['user_id'] = undefined;
|
222
222
|
/**
|
223
|
-
* The optional creation date & time of the note in UTC. Can be set in the past or in the future.
|
223
|
+
* The optional creation date & time of the note in UTC. Can be set in the past or in the future. Format: YYYY-MM-DD HH:MM:SS
|
224
224
|
* @member {String} add_time
|
225
225
|
*/
|
226
226
|
_NoteParams["default"].prototype['add_time'] = undefined;
|
package/dist/model/BaseDeal.js
CHANGED
@@ -280,6 +280,30 @@ var BaseDeal = /*#__PURE__*/function () {
|
|
280
280
|
obj['channel_id'] = _ApiClient["default"].convertToType(data['channel_id'], 'String');
|
281
281
|
delete data['channel_id'];
|
282
282
|
}
|
283
|
+
if (data.hasOwnProperty('arr')) {
|
284
|
+
obj['arr'] = _ApiClient["default"].convertToType(data['arr'], 'Number');
|
285
|
+
delete data['arr'];
|
286
|
+
}
|
287
|
+
if (data.hasOwnProperty('mrr')) {
|
288
|
+
obj['mrr'] = _ApiClient["default"].convertToType(data['mrr'], 'Number');
|
289
|
+
delete data['mrr'];
|
290
|
+
}
|
291
|
+
if (data.hasOwnProperty('acv')) {
|
292
|
+
obj['acv'] = _ApiClient["default"].convertToType(data['acv'], 'Number');
|
293
|
+
delete data['acv'];
|
294
|
+
}
|
295
|
+
if (data.hasOwnProperty('arr_currency')) {
|
296
|
+
obj['arr_currency'] = _ApiClient["default"].convertToType(data['arr_currency'], 'String');
|
297
|
+
delete data['arr_currency'];
|
298
|
+
}
|
299
|
+
if (data.hasOwnProperty('mrr_currency')) {
|
300
|
+
obj['mrr_currency'] = _ApiClient["default"].convertToType(data['mrr_currency'], 'String');
|
301
|
+
delete data['mrr_currency'];
|
302
|
+
}
|
303
|
+
if (data.hasOwnProperty('acv_currency')) {
|
304
|
+
obj['acv_currency'] = _ApiClient["default"].convertToType(data['acv_currency'], 'String');
|
305
|
+
delete data['acv_currency'];
|
306
|
+
}
|
283
307
|
if (Object.keys(data).length > 0) {
|
284
308
|
Object.assign(obj, data);
|
285
309
|
}
|
@@ -624,5 +648,41 @@ BaseDeal.prototype['channel'] = undefined;
|
|
624
648
|
* @member {String} channel_id
|
625
649
|
*/
|
626
650
|
BaseDeal.prototype['channel_id'] = undefined;
|
651
|
+
|
652
|
+
/**
|
653
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
654
|
+
* @member {Number} arr
|
655
|
+
*/
|
656
|
+
BaseDeal.prototype['arr'] = undefined;
|
657
|
+
|
658
|
+
/**
|
659
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
660
|
+
* @member {Number} mrr
|
661
|
+
*/
|
662
|
+
BaseDeal.prototype['mrr'] = undefined;
|
663
|
+
|
664
|
+
/**
|
665
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
666
|
+
* @member {Number} acv
|
667
|
+
*/
|
668
|
+
BaseDeal.prototype['acv'] = undefined;
|
669
|
+
|
670
|
+
/**
|
671
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
672
|
+
* @member {String} arr_currency
|
673
|
+
*/
|
674
|
+
BaseDeal.prototype['arr_currency'] = undefined;
|
675
|
+
|
676
|
+
/**
|
677
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
678
|
+
* @member {String} mrr_currency
|
679
|
+
*/
|
680
|
+
BaseDeal.prototype['mrr_currency'] = undefined;
|
681
|
+
|
682
|
+
/**
|
683
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
684
|
+
* @member {String} acv_currency
|
685
|
+
*/
|
686
|
+
BaseDeal.prototype['acv_currency'] = undefined;
|
627
687
|
var _default = BaseDeal;
|
628
688
|
exports["default"] = _default;
|
@@ -144,7 +144,7 @@ BasicPerson.prototype['visible_to'] = undefined;
|
|
144
144
|
BasicPerson.prototype['marketing_status'] = undefined;
|
145
145
|
|
146
146
|
/**
|
147
|
-
* The optional creation date & time of the person in UTC.
|
147
|
+
* The optional creation date & time of the person in UTC. Format: YYYY-MM-DD HH:MM:SS
|
148
148
|
* @member {String} add_time
|
149
149
|
*/
|
150
150
|
BasicPerson.prototype['add_time'] = undefined;
|
@@ -312,6 +312,30 @@ var DealNonStrict = /*#__PURE__*/function () {
|
|
312
312
|
obj['channel_id'] = _ApiClient["default"].convertToType(data['channel_id'], 'String');
|
313
313
|
delete data['channel_id'];
|
314
314
|
}
|
315
|
+
if (data.hasOwnProperty('arr')) {
|
316
|
+
obj['arr'] = _ApiClient["default"].convertToType(data['arr'], 'Number');
|
317
|
+
delete data['arr'];
|
318
|
+
}
|
319
|
+
if (data.hasOwnProperty('mrr')) {
|
320
|
+
obj['mrr'] = _ApiClient["default"].convertToType(data['mrr'], 'Number');
|
321
|
+
delete data['mrr'];
|
322
|
+
}
|
323
|
+
if (data.hasOwnProperty('acv')) {
|
324
|
+
obj['acv'] = _ApiClient["default"].convertToType(data['acv'], 'Number');
|
325
|
+
delete data['acv'];
|
326
|
+
}
|
327
|
+
if (data.hasOwnProperty('arr_currency')) {
|
328
|
+
obj['arr_currency'] = _ApiClient["default"].convertToType(data['arr_currency'], 'String');
|
329
|
+
delete data['arr_currency'];
|
330
|
+
}
|
331
|
+
if (data.hasOwnProperty('mrr_currency')) {
|
332
|
+
obj['mrr_currency'] = _ApiClient["default"].convertToType(data['mrr_currency'], 'String');
|
333
|
+
delete data['mrr_currency'];
|
334
|
+
}
|
335
|
+
if (data.hasOwnProperty('acv_currency')) {
|
336
|
+
obj['acv_currency'] = _ApiClient["default"].convertToType(data['acv_currency'], 'String');
|
337
|
+
delete data['acv_currency'];
|
338
|
+
}
|
315
339
|
if (Object.keys(data).length > 0) {
|
316
340
|
Object.assign(obj, data);
|
317
341
|
}
|
@@ -683,6 +707,42 @@ DealNonStrict.prototype['channel'] = undefined;
|
|
683
707
|
*/
|
684
708
|
DealNonStrict.prototype['channel_id'] = undefined;
|
685
709
|
|
710
|
+
/**
|
711
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
712
|
+
* @member {Number} arr
|
713
|
+
*/
|
714
|
+
DealNonStrict.prototype['arr'] = undefined;
|
715
|
+
|
716
|
+
/**
|
717
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
718
|
+
* @member {Number} mrr
|
719
|
+
*/
|
720
|
+
DealNonStrict.prototype['mrr'] = undefined;
|
721
|
+
|
722
|
+
/**
|
723
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
724
|
+
* @member {Number} acv
|
725
|
+
*/
|
726
|
+
DealNonStrict.prototype['acv'] = undefined;
|
727
|
+
|
728
|
+
/**
|
729
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
730
|
+
* @member {String} arr_currency
|
731
|
+
*/
|
732
|
+
DealNonStrict.prototype['arr_currency'] = undefined;
|
733
|
+
|
734
|
+
/**
|
735
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
736
|
+
* @member {String} mrr_currency
|
737
|
+
*/
|
738
|
+
DealNonStrict.prototype['mrr_currency'] = undefined;
|
739
|
+
|
740
|
+
/**
|
741
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
742
|
+
* @member {String} acv_currency
|
743
|
+
*/
|
744
|
+
DealNonStrict.prototype['acv_currency'] = undefined;
|
745
|
+
|
686
746
|
// Implement DealNonStrictModeFields interface:
|
687
747
|
/**
|
688
748
|
* The ID of the deal
|
@@ -986,5 +1046,35 @@ _BaseDeal["default"].prototype['channel'] = undefined;
|
|
986
1046
|
* @member {String} channel_id
|
987
1047
|
*/
|
988
1048
|
_BaseDeal["default"].prototype['channel_id'] = undefined;
|
1049
|
+
/**
|
1050
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
1051
|
+
* @member {Number} arr
|
1052
|
+
*/
|
1053
|
+
_BaseDeal["default"].prototype['arr'] = undefined;
|
1054
|
+
/**
|
1055
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
1056
|
+
* @member {Number} mrr
|
1057
|
+
*/
|
1058
|
+
_BaseDeal["default"].prototype['mrr'] = undefined;
|
1059
|
+
/**
|
1060
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
1061
|
+
* @member {Number} acv
|
1062
|
+
*/
|
1063
|
+
_BaseDeal["default"].prototype['acv'] = undefined;
|
1064
|
+
/**
|
1065
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
1066
|
+
* @member {String} arr_currency
|
1067
|
+
*/
|
1068
|
+
_BaseDeal["default"].prototype['arr_currency'] = undefined;
|
1069
|
+
/**
|
1070
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
1071
|
+
* @member {String} mrr_currency
|
1072
|
+
*/
|
1073
|
+
_BaseDeal["default"].prototype['mrr_currency'] = undefined;
|
1074
|
+
/**
|
1075
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
1076
|
+
* @member {String} acv_currency
|
1077
|
+
*/
|
1078
|
+
_BaseDeal["default"].prototype['acv_currency'] = undefined;
|
989
1079
|
var _default = DealNonStrict;
|
990
1080
|
exports["default"] = _default;
|
@@ -315,6 +315,30 @@ var DealNonStrictWithDetails = /*#__PURE__*/function () {
|
|
315
315
|
obj['channel_id'] = _ApiClient["default"].convertToType(data['channel_id'], 'String');
|
316
316
|
delete data['channel_id'];
|
317
317
|
}
|
318
|
+
if (data.hasOwnProperty('arr')) {
|
319
|
+
obj['arr'] = _ApiClient["default"].convertToType(data['arr'], 'Number');
|
320
|
+
delete data['arr'];
|
321
|
+
}
|
322
|
+
if (data.hasOwnProperty('mrr')) {
|
323
|
+
obj['mrr'] = _ApiClient["default"].convertToType(data['mrr'], 'Number');
|
324
|
+
delete data['mrr'];
|
325
|
+
}
|
326
|
+
if (data.hasOwnProperty('acv')) {
|
327
|
+
obj['acv'] = _ApiClient["default"].convertToType(data['acv'], 'Number');
|
328
|
+
delete data['acv'];
|
329
|
+
}
|
330
|
+
if (data.hasOwnProperty('arr_currency')) {
|
331
|
+
obj['arr_currency'] = _ApiClient["default"].convertToType(data['arr_currency'], 'String');
|
332
|
+
delete data['arr_currency'];
|
333
|
+
}
|
334
|
+
if (data.hasOwnProperty('mrr_currency')) {
|
335
|
+
obj['mrr_currency'] = _ApiClient["default"].convertToType(data['mrr_currency'], 'String');
|
336
|
+
delete data['mrr_currency'];
|
337
|
+
}
|
338
|
+
if (data.hasOwnProperty('acv_currency')) {
|
339
|
+
obj['acv_currency'] = _ApiClient["default"].convertToType(data['acv_currency'], 'String');
|
340
|
+
delete data['acv_currency'];
|
341
|
+
}
|
318
342
|
if (data.hasOwnProperty('average_time_to_won')) {
|
319
343
|
obj['average_time_to_won'] = _DealNonStrictWithDetailsAllOfAverageTimeToWon["default"].constructFromObject(data['average_time_to_won']);
|
320
344
|
delete data['average_time_to_won'];
|
@@ -710,6 +734,42 @@ DealNonStrictWithDetails.prototype['channel'] = undefined;
|
|
710
734
|
*/
|
711
735
|
DealNonStrictWithDetails.prototype['channel_id'] = undefined;
|
712
736
|
|
737
|
+
/**
|
738
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
739
|
+
* @member {Number} arr
|
740
|
+
*/
|
741
|
+
DealNonStrictWithDetails.prototype['arr'] = undefined;
|
742
|
+
|
743
|
+
/**
|
744
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
745
|
+
* @member {Number} mrr
|
746
|
+
*/
|
747
|
+
DealNonStrictWithDetails.prototype['mrr'] = undefined;
|
748
|
+
|
749
|
+
/**
|
750
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
751
|
+
* @member {Number} acv
|
752
|
+
*/
|
753
|
+
DealNonStrictWithDetails.prototype['acv'] = undefined;
|
754
|
+
|
755
|
+
/**
|
756
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
757
|
+
* @member {String} arr_currency
|
758
|
+
*/
|
759
|
+
DealNonStrictWithDetails.prototype['arr_currency'] = undefined;
|
760
|
+
|
761
|
+
/**
|
762
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
763
|
+
* @member {String} mrr_currency
|
764
|
+
*/
|
765
|
+
DealNonStrictWithDetails.prototype['mrr_currency'] = undefined;
|
766
|
+
|
767
|
+
/**
|
768
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
769
|
+
* @member {String} acv_currency
|
770
|
+
*/
|
771
|
+
DealNonStrictWithDetails.prototype['acv_currency'] = undefined;
|
772
|
+
|
713
773
|
/**
|
714
774
|
* @member {module:model/DealNonStrictWithDetailsAllOfAverageTimeToWon} average_time_to_won
|
715
775
|
*/
|
@@ -1045,6 +1105,36 @@ _DealNonStrict["default"].prototype['channel'] = undefined;
|
|
1045
1105
|
* @member {String} channel_id
|
1046
1106
|
*/
|
1047
1107
|
_DealNonStrict["default"].prototype['channel_id'] = undefined;
|
1108
|
+
/**
|
1109
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
1110
|
+
* @member {Number} arr
|
1111
|
+
*/
|
1112
|
+
_DealNonStrict["default"].prototype['arr'] = undefined;
|
1113
|
+
/**
|
1114
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
1115
|
+
* @member {Number} mrr
|
1116
|
+
*/
|
1117
|
+
_DealNonStrict["default"].prototype['mrr'] = undefined;
|
1118
|
+
/**
|
1119
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
1120
|
+
* @member {Number} acv
|
1121
|
+
*/
|
1122
|
+
_DealNonStrict["default"].prototype['acv'] = undefined;
|
1123
|
+
/**
|
1124
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
1125
|
+
* @member {String} arr_currency
|
1126
|
+
*/
|
1127
|
+
_DealNonStrict["default"].prototype['arr_currency'] = undefined;
|
1128
|
+
/**
|
1129
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
1130
|
+
* @member {String} mrr_currency
|
1131
|
+
*/
|
1132
|
+
_DealNonStrict["default"].prototype['mrr_currency'] = undefined;
|
1133
|
+
/**
|
1134
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
1135
|
+
* @member {String} acv_currency
|
1136
|
+
*/
|
1137
|
+
_DealNonStrict["default"].prototype['acv_currency'] = undefined;
|
1048
1138
|
// Implement DealNonStrictWithDetailsAllOf interface:
|
1049
1139
|
/**
|
1050
1140
|
* @member {module:model/DealNonStrictWithDetailsAllOfAverageTimeToWon} average_time_to_won
|
package/dist/model/DealStrict.js
CHANGED
@@ -308,6 +308,30 @@ var DealStrict = /*#__PURE__*/function () {
|
|
308
308
|
obj['channel_id'] = _ApiClient["default"].convertToType(data['channel_id'], 'String');
|
309
309
|
delete data['channel_id'];
|
310
310
|
}
|
311
|
+
if (data.hasOwnProperty('arr')) {
|
312
|
+
obj['arr'] = _ApiClient["default"].convertToType(data['arr'], 'Number');
|
313
|
+
delete data['arr'];
|
314
|
+
}
|
315
|
+
if (data.hasOwnProperty('mrr')) {
|
316
|
+
obj['mrr'] = _ApiClient["default"].convertToType(data['mrr'], 'Number');
|
317
|
+
delete data['mrr'];
|
318
|
+
}
|
319
|
+
if (data.hasOwnProperty('acv')) {
|
320
|
+
obj['acv'] = _ApiClient["default"].convertToType(data['acv'], 'Number');
|
321
|
+
delete data['acv'];
|
322
|
+
}
|
323
|
+
if (data.hasOwnProperty('arr_currency')) {
|
324
|
+
obj['arr_currency'] = _ApiClient["default"].convertToType(data['arr_currency'], 'String');
|
325
|
+
delete data['arr_currency'];
|
326
|
+
}
|
327
|
+
if (data.hasOwnProperty('mrr_currency')) {
|
328
|
+
obj['mrr_currency'] = _ApiClient["default"].convertToType(data['mrr_currency'], 'String');
|
329
|
+
delete data['mrr_currency'];
|
330
|
+
}
|
331
|
+
if (data.hasOwnProperty('acv_currency')) {
|
332
|
+
obj['acv_currency'] = _ApiClient["default"].convertToType(data['acv_currency'], 'String');
|
333
|
+
delete data['acv_currency'];
|
334
|
+
}
|
311
335
|
if (Object.keys(data).length > 0) {
|
312
336
|
Object.assign(obj, data);
|
313
337
|
}
|
@@ -683,6 +707,42 @@ DealStrict.prototype['channel'] = undefined;
|
|
683
707
|
*/
|
684
708
|
DealStrict.prototype['channel_id'] = undefined;
|
685
709
|
|
710
|
+
/**
|
711
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
712
|
+
* @member {Number} arr
|
713
|
+
*/
|
714
|
+
DealStrict.prototype['arr'] = undefined;
|
715
|
+
|
716
|
+
/**
|
717
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
718
|
+
* @member {Number} mrr
|
719
|
+
*/
|
720
|
+
DealStrict.prototype['mrr'] = undefined;
|
721
|
+
|
722
|
+
/**
|
723
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
724
|
+
* @member {Number} acv
|
725
|
+
*/
|
726
|
+
DealStrict.prototype['acv'] = undefined;
|
727
|
+
|
728
|
+
/**
|
729
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
730
|
+
* @member {String} arr_currency
|
731
|
+
*/
|
732
|
+
DealStrict.prototype['arr_currency'] = undefined;
|
733
|
+
|
734
|
+
/**
|
735
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
736
|
+
* @member {String} mrr_currency
|
737
|
+
*/
|
738
|
+
DealStrict.prototype['mrr_currency'] = undefined;
|
739
|
+
|
740
|
+
/**
|
741
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
742
|
+
* @member {String} acv_currency
|
743
|
+
*/
|
744
|
+
DealStrict.prototype['acv_currency'] = undefined;
|
745
|
+
|
686
746
|
// Implement DealStrictModeFields interface:
|
687
747
|
/**
|
688
748
|
* The ID of the deal
|
@@ -990,5 +1050,35 @@ _BaseDeal["default"].prototype['channel'] = undefined;
|
|
990
1050
|
* @member {String} channel_id
|
991
1051
|
*/
|
992
1052
|
_BaseDeal["default"].prototype['channel_id'] = undefined;
|
1053
|
+
/**
|
1054
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
1055
|
+
* @member {Number} arr
|
1056
|
+
*/
|
1057
|
+
_BaseDeal["default"].prototype['arr'] = undefined;
|
1058
|
+
/**
|
1059
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
1060
|
+
* @member {Number} mrr
|
1061
|
+
*/
|
1062
|
+
_BaseDeal["default"].prototype['mrr'] = undefined;
|
1063
|
+
/**
|
1064
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
1065
|
+
* @member {Number} acv
|
1066
|
+
*/
|
1067
|
+
_BaseDeal["default"].prototype['acv'] = undefined;
|
1068
|
+
/**
|
1069
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
1070
|
+
* @member {String} arr_currency
|
1071
|
+
*/
|
1072
|
+
_BaseDeal["default"].prototype['arr_currency'] = undefined;
|
1073
|
+
/**
|
1074
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
1075
|
+
* @member {String} mrr_currency
|
1076
|
+
*/
|
1077
|
+
_BaseDeal["default"].prototype['mrr_currency'] = undefined;
|
1078
|
+
/**
|
1079
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
1080
|
+
* @member {String} acv_currency
|
1081
|
+
*/
|
1082
|
+
_BaseDeal["default"].prototype['acv_currency'] = undefined;
|
993
1083
|
var _default = DealStrict;
|
994
1084
|
exports["default"] = _default;
|
@@ -308,6 +308,30 @@ var DealStrictWithMergeId = /*#__PURE__*/function () {
|
|
308
308
|
obj['channel_id'] = _ApiClient["default"].convertToType(data['channel_id'], 'String');
|
309
309
|
delete data['channel_id'];
|
310
310
|
}
|
311
|
+
if (data.hasOwnProperty('arr')) {
|
312
|
+
obj['arr'] = _ApiClient["default"].convertToType(data['arr'], 'Number');
|
313
|
+
delete data['arr'];
|
314
|
+
}
|
315
|
+
if (data.hasOwnProperty('mrr')) {
|
316
|
+
obj['mrr'] = _ApiClient["default"].convertToType(data['mrr'], 'Number');
|
317
|
+
delete data['mrr'];
|
318
|
+
}
|
319
|
+
if (data.hasOwnProperty('acv')) {
|
320
|
+
obj['acv'] = _ApiClient["default"].convertToType(data['acv'], 'Number');
|
321
|
+
delete data['acv'];
|
322
|
+
}
|
323
|
+
if (data.hasOwnProperty('arr_currency')) {
|
324
|
+
obj['arr_currency'] = _ApiClient["default"].convertToType(data['arr_currency'], 'String');
|
325
|
+
delete data['arr_currency'];
|
326
|
+
}
|
327
|
+
if (data.hasOwnProperty('mrr_currency')) {
|
328
|
+
obj['mrr_currency'] = _ApiClient["default"].convertToType(data['mrr_currency'], 'String');
|
329
|
+
delete data['mrr_currency'];
|
330
|
+
}
|
331
|
+
if (data.hasOwnProperty('acv_currency')) {
|
332
|
+
obj['acv_currency'] = _ApiClient["default"].convertToType(data['acv_currency'], 'String');
|
333
|
+
delete data['acv_currency'];
|
334
|
+
}
|
311
335
|
if (data.hasOwnProperty('merge_what_id')) {
|
312
336
|
obj['merge_what_id'] = _ApiClient["default"].convertToType(data['merge_what_id'], 'Number');
|
313
337
|
delete data['merge_what_id'];
|
@@ -687,6 +711,42 @@ DealStrictWithMergeId.prototype['channel'] = undefined;
|
|
687
711
|
*/
|
688
712
|
DealStrictWithMergeId.prototype['channel_id'] = undefined;
|
689
713
|
|
714
|
+
/**
|
715
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
716
|
+
* @member {Number} arr
|
717
|
+
*/
|
718
|
+
DealStrictWithMergeId.prototype['arr'] = undefined;
|
719
|
+
|
720
|
+
/**
|
721
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
722
|
+
* @member {Number} mrr
|
723
|
+
*/
|
724
|
+
DealStrictWithMergeId.prototype['mrr'] = undefined;
|
725
|
+
|
726
|
+
/**
|
727
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
728
|
+
* @member {Number} acv
|
729
|
+
*/
|
730
|
+
DealStrictWithMergeId.prototype['acv'] = undefined;
|
731
|
+
|
732
|
+
/**
|
733
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
734
|
+
* @member {String} arr_currency
|
735
|
+
*/
|
736
|
+
DealStrictWithMergeId.prototype['arr_currency'] = undefined;
|
737
|
+
|
738
|
+
/**
|
739
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
740
|
+
* @member {String} mrr_currency
|
741
|
+
*/
|
742
|
+
DealStrictWithMergeId.prototype['mrr_currency'] = undefined;
|
743
|
+
|
744
|
+
/**
|
745
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
746
|
+
* @member {String} acv_currency
|
747
|
+
*/
|
748
|
+
DealStrictWithMergeId.prototype['acv_currency'] = undefined;
|
749
|
+
|
690
750
|
/**
|
691
751
|
* The deal ID of the deal which the original deal was merged with
|
692
752
|
* @member {Number} merge_what_id
|
@@ -999,6 +1059,36 @@ _DealStrict["default"].prototype['channel'] = undefined;
|
|
999
1059
|
* @member {String} channel_id
|
1000
1060
|
*/
|
1001
1061
|
_DealStrict["default"].prototype['channel_id'] = undefined;
|
1062
|
+
/**
|
1063
|
+
* Only available in Advanced and above plans The Annual Recurring Revenue of the deal Null if there are no products attached to the deal
|
1064
|
+
* @member {Number} arr
|
1065
|
+
*/
|
1066
|
+
_DealStrict["default"].prototype['arr'] = undefined;
|
1067
|
+
/**
|
1068
|
+
* Only available in Advanced and above plans The Monthly Recurring Revenue of the deal Null if there are no products attached to the deal
|
1069
|
+
* @member {Number} mrr
|
1070
|
+
*/
|
1071
|
+
_DealStrict["default"].prototype['mrr'] = undefined;
|
1072
|
+
/**
|
1073
|
+
* Only available in Advanced and above plans The Annual Contract Value of the deal Null if there are no products attached to the deal
|
1074
|
+
* @member {Number} acv
|
1075
|
+
*/
|
1076
|
+
_DealStrict["default"].prototype['acv'] = undefined;
|
1077
|
+
/**
|
1078
|
+
* Only available in Advanced and above plans The Currency for Annual Recurring Revenue of the deal If the `arr` is null, this will also be null
|
1079
|
+
* @member {String} arr_currency
|
1080
|
+
*/
|
1081
|
+
_DealStrict["default"].prototype['arr_currency'] = undefined;
|
1082
|
+
/**
|
1083
|
+
* Only available in Advanced and above plans The Currency for Monthly Recurring Revenue of the deal If the `mrr` is null, this will also be null
|
1084
|
+
* @member {String} mrr_currency
|
1085
|
+
*/
|
1086
|
+
_DealStrict["default"].prototype['mrr_currency'] = undefined;
|
1087
|
+
/**
|
1088
|
+
* Only available in Advanced and above plans The Currency for Annual Contract Value of the deal If the `acv` is null, this will also be null
|
1089
|
+
* @member {String} acv_currency
|
1090
|
+
*/
|
1091
|
+
_DealStrict["default"].prototype['acv_currency'] = undefined;
|
1002
1092
|
// Implement DealStrictWithMergeIdAllOf interface:
|
1003
1093
|
/**
|
1004
1094
|
* The deal ID of the deal which the original deal was merged with
|
package/dist/model/NewDeal.js
CHANGED
@@ -244,7 +244,7 @@ NewDeal.prototype['channel'] = undefined;
|
|
244
244
|
NewDeal.prototype['channel_id'] = undefined;
|
245
245
|
|
246
246
|
/**
|
247
|
-
* The optional creation date & time of the deal in UTC.
|
247
|
+
* The optional creation date & time of the deal in UTC. Format: YYYY-MM-DD HH:MM:SS
|
248
248
|
* @member {String} add_time
|
249
249
|
*/
|
250
250
|
NewDeal.prototype['add_time'] = undefined;
|
@@ -359,7 +359,7 @@ _NewDealParameters["default"].prototype['channel'] = undefined;
|
|
359
359
|
*/
|
360
360
|
_NewDealParameters["default"].prototype['channel_id'] = undefined;
|
361
361
|
/**
|
362
|
-
* The optional creation date & time of the deal in UTC.
|
362
|
+
* The optional creation date & time of the deal in UTC. Format: YYYY-MM-DD HH:MM:SS
|
363
363
|
* @member {String} add_time
|
364
364
|
*/
|
365
365
|
_NewDealParameters["default"].prototype['add_time'] = undefined;
|
@@ -190,7 +190,7 @@ NewDealParameters.prototype['channel'] = undefined;
|
|
190
190
|
NewDealParameters.prototype['channel_id'] = undefined;
|
191
191
|
|
192
192
|
/**
|
193
|
-
* The optional creation date & time of the deal in UTC.
|
193
|
+
* The optional creation date & time of the deal in UTC. Format: YYYY-MM-DD HH:MM:SS
|
194
194
|
* @member {String} add_time
|
195
195
|
*/
|
196
196
|
NewDealParameters.prototype['add_time'] = undefined;
|
@@ -104,7 +104,7 @@ var NewOrganization = /*#__PURE__*/function () {
|
|
104
104
|
NewOrganization.prototype['name'] = undefined;
|
105
105
|
|
106
106
|
/**
|
107
|
-
* The optional creation date & time of the organization in UTC.
|
107
|
+
* The optional creation date & time of the organization in UTC. Format: YYYY-MM-DD HH:MM:SS
|
108
108
|
* @member {String} add_time
|
109
109
|
*/
|
110
110
|
NewOrganization.prototype['add_time'] = undefined;
|
@@ -134,7 +134,7 @@ NewOrganization.prototype['visible_to'] = undefined;
|
|
134
134
|
*/
|
135
135
|
_NewOrganizationAllOf["default"].prototype['name'] = undefined;
|
136
136
|
/**
|
137
|
-
* The optional creation date & time of the organization in UTC.
|
137
|
+
* The optional creation date & time of the organization in UTC. Format: YYYY-MM-DD HH:MM:SS
|
138
138
|
* @member {String} add_time
|
139
139
|
*/
|
140
140
|
_NewOrganizationAllOf["default"].prototype['add_time'] = undefined;
|
@@ -83,7 +83,7 @@ var NewOrganizationAllOf = /*#__PURE__*/function () {
|
|
83
83
|
NewOrganizationAllOf.prototype['name'] = undefined;
|
84
84
|
|
85
85
|
/**
|
86
|
-
* The optional creation date & time of the organization in UTC.
|
86
|
+
* The optional creation date & time of the organization in UTC. Format: YYYY-MM-DD HH:MM:SS
|
87
87
|
* @member {String} add_time
|
88
88
|
*/
|
89
89
|
NewOrganizationAllOf.prototype['add_time'] = undefined;
|
package/dist/model/NewPerson.js
CHANGED
@@ -165,7 +165,7 @@ NewPerson.prototype['visible_to'] = undefined;
|
|
165
165
|
NewPerson.prototype['marketing_status'] = undefined;
|
166
166
|
|
167
167
|
/**
|
168
|
-
* The optional creation date & time of the person in UTC.
|
168
|
+
* The optional creation date & time of the person in UTC. Format: YYYY-MM-DD HH:MM:SS
|
169
169
|
* @member {String} add_time
|
170
170
|
*/
|
171
171
|
NewPerson.prototype['add_time'] = undefined;
|
@@ -213,7 +213,7 @@ _BasicPerson["default"].prototype['visible_to'] = undefined;
|
|
213
213
|
*/
|
214
214
|
_BasicPerson["default"].prototype['marketing_status'] = undefined;
|
215
215
|
/**
|
216
|
-
* The optional creation date & time of the person in UTC.
|
216
|
+
* The optional creation date & time of the person in UTC. Format: YYYY-MM-DD HH:MM:SS
|
217
217
|
* @member {String} add_time
|
218
218
|
*/
|
219
219
|
_BasicPerson["default"].prototype['add_time'] = undefined;
|
package/dist/model/Note.js
CHANGED
@@ -159,7 +159,7 @@ Note.prototype['org_id'] = undefined;
|
|
159
159
|
Note.prototype['user_id'] = undefined;
|
160
160
|
|
161
161
|
/**
|
162
|
-
* The optional creation date & time of the note in UTC. Can be set in the past or in the future.
|
162
|
+
* The optional creation date & time of the note in UTC. Can be set in the past or in the future. Format: YYYY-MM-DD HH:MM:SS
|
163
163
|
* @member {String} add_time
|
164
164
|
*/
|
165
165
|
Note.prototype['add_time'] = undefined;
|
@@ -222,7 +222,7 @@ _NoteConnectToParams["default"].prototype['org_id'] = undefined;
|
|
222
222
|
*/
|
223
223
|
_NoteParams["default"].prototype['user_id'] = undefined;
|
224
224
|
/**
|
225
|
-
* The optional creation date & time of the note in UTC. Can be set in the past or in the future.
|
225
|
+
* The optional creation date & time of the note in UTC. Can be set in the past or in the future. Format: YYYY-MM-DD HH:MM:SS
|
226
226
|
* @member {String} add_time
|
227
227
|
*/
|
228
228
|
_NoteParams["default"].prototype['add_time'] = undefined;
|
package/dist/model/NoteParams.js
CHANGED
@@ -97,7 +97,7 @@ var NoteParams = /*#__PURE__*/function () {
|
|
97
97
|
NoteParams.prototype['user_id'] = undefined;
|
98
98
|
|
99
99
|
/**
|
100
|
-
* The optional creation date & time of the note in UTC. Can be set in the past or in the future.
|
100
|
+
* The optional creation date & time of the note in UTC. Can be set in the past or in the future. Format: YYYY-MM-DD HH:MM:SS
|
101
101
|
* @member {String} add_time
|
102
102
|
*/
|
103
103
|
NoteParams.prototype['add_time'] = undefined;
|
@@ -162,7 +162,7 @@ UpdatePerson.prototype['visible_to'] = undefined;
|
|
162
162
|
UpdatePerson.prototype['marketing_status'] = undefined;
|
163
163
|
|
164
164
|
/**
|
165
|
-
* The optional creation date & time of the person in UTC.
|
165
|
+
* The optional creation date & time of the person in UTC. Format: YYYY-MM-DD HH:MM:SS
|
166
166
|
* @member {String} add_time
|
167
167
|
*/
|
168
168
|
UpdatePerson.prototype['add_time'] = undefined;
|
@@ -210,7 +210,7 @@ _BasicPerson["default"].prototype['visible_to'] = undefined;
|
|
210
210
|
*/
|
211
211
|
_BasicPerson["default"].prototype['marketing_status'] = undefined;
|
212
212
|
/**
|
213
|
-
* The optional creation date & time of the person in UTC.
|
213
|
+
* The optional creation date & time of the person in UTC. Format: YYYY-MM-DD HH:MM:SS
|
214
214
|
* @member {String} add_time
|
215
215
|
*/
|
216
216
|
_BasicPerson["default"].prototype['add_time'] = undefined;
|
@@ -56,14 +56,6 @@ var UserSettingsItem = /*#__PURE__*/function () {
|
|
56
56
|
value: function constructFromObject(data, obj) {
|
57
57
|
if (data) {
|
58
58
|
obj = obj || new UserSettingsItem();
|
59
|
-
if (data.hasOwnProperty('marketplace_allow_custom_install_url')) {
|
60
|
-
obj['marketplace_allow_custom_install_url'] = _ApiClient["default"].convertToType(data['marketplace_allow_custom_install_url'], 'Boolean');
|
61
|
-
delete data['marketplace_allow_custom_install_url'];
|
62
|
-
}
|
63
|
-
if (data.hasOwnProperty('marketplace_app_extensions_vendor')) {
|
64
|
-
obj['marketplace_app_extensions_vendor'] = _ApiClient["default"].convertToType(data['marketplace_app_extensions_vendor'], 'Boolean');
|
65
|
-
delete data['marketplace_app_extensions_vendor'];
|
66
|
-
}
|
67
59
|
if (data.hasOwnProperty('marketplace_team')) {
|
68
60
|
obj['marketplace_team'] = _ApiClient["default"].convertToType(data['marketplace_team'], 'Boolean');
|
69
61
|
delete data['marketplace_team'];
|
@@ -105,18 +97,6 @@ var UserSettingsItem = /*#__PURE__*/function () {
|
|
105
97
|
}]);
|
106
98
|
return UserSettingsItem;
|
107
99
|
}();
|
108
|
-
/**
|
109
|
-
* If the vendors are allowed to install custom Marketplace apps with functionality and content in the Pipedrive UI or not
|
110
|
-
* @member {Boolean} marketplace_allow_custom_install_url
|
111
|
-
*/
|
112
|
-
UserSettingsItem.prototype['marketplace_allow_custom_install_url'] = undefined;
|
113
|
-
|
114
|
-
/**
|
115
|
-
* If the vendors are allowed to extend their Marketplace apps with functionality and content in the Pipedrive UI or not
|
116
|
-
* @member {Boolean} marketplace_app_extensions_vendor
|
117
|
-
*/
|
118
|
-
UserSettingsItem.prototype['marketplace_app_extensions_vendor'] = undefined;
|
119
|
-
|
120
100
|
/**
|
121
101
|
* If the vendors are allowed to be part of the Marketplace team or not
|
122
102
|
* @member {Boolean} marketplace_team
|