@d19n/youfibre-odin-sdk 2.0.47-beta.0 → 2.0.47
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.
|
@@ -23,7 +23,7 @@ export interface CrmDatasetCreateMessage extends OdinRecordCreatedEvent<CrmDatas
|
|
|
23
23
|
* Properties for CrmDatasetCreate action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 3
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 4
|
|
27
27
|
*/
|
|
28
28
|
export interface CrmDatasetCreateProperties {
|
|
29
29
|
/**
|
|
@@ -71,6 +71,13 @@ export interface CrmDatasetCreateProperties {
|
|
|
71
71
|
* @type {LOOKUP}
|
|
72
72
|
*/
|
|
73
73
|
Owner?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
* Exchange
|
|
76
|
+
*
|
|
77
|
+
* Data field for CrmDataset records. Used by Sales team.
|
|
78
|
+
* @type {TEXT}
|
|
79
|
+
*/
|
|
80
|
+
Exchange?: string | null;
|
|
74
81
|
}
|
|
75
82
|
/**
|
|
76
83
|
* CrmDatasetCreate
|
|
@@ -150,7 +150,6 @@ export interface CrmDatasetProperties {
|
|
|
150
150
|
/** Data field for CrmDataset records. Used by Sales team.
|
|
151
151
|
*
|
|
152
152
|
* @type {TEXT}
|
|
153
|
-
* @hidden This field is hidden in the UI
|
|
154
153
|
*/
|
|
155
154
|
Exchange: string;
|
|
156
155
|
/** Used for analytics when querying data we search starting from this date (Sales - CrmDataset)
|
|
@@ -234,7 +233,6 @@ export interface AddressCrmDatasetProperties {
|
|
|
234
233
|
/** Data field for CrmDataset records. Used by Sales team.
|
|
235
234
|
*
|
|
236
235
|
* @type {TEXT}
|
|
237
|
-
* @hidden This field is hidden in the UI
|
|
238
236
|
*/
|
|
239
237
|
Exchange: string;
|
|
240
238
|
/** Used for analytics when querying data we search starting from this date (Sales - CrmDataset)
|
|
@@ -318,7 +316,6 @@ export interface ContactCrmDatasetProperties {
|
|
|
318
316
|
/** Data field for CrmDataset records. Used by Sales team.
|
|
319
317
|
*
|
|
320
318
|
* @type {TEXT}
|
|
321
|
-
* @hidden This field is hidden in the UI
|
|
322
319
|
*/
|
|
323
320
|
Exchange: string;
|
|
324
321
|
/** Used for analytics when querying data we search starting from this date (Sales - CrmDataset)
|
|
@@ -402,7 +399,6 @@ export interface LeadCrmDatasetProperties {
|
|
|
402
399
|
/** Data field for CrmDataset records. Used by Sales team.
|
|
403
400
|
*
|
|
404
401
|
* @type {TEXT}
|
|
405
|
-
* @hidden This field is hidden in the UI
|
|
406
402
|
*/
|
|
407
403
|
Exchange: string;
|
|
408
404
|
/** Used for analytics when querying data we search starting from this date (Sales - CrmDataset)
|