@d19n/youfibre-odin-sdk 2.0.47-beta.0 → 2.0.48
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 CreateAddressCrmDatasetMessage extends OdinRecordCreatedEvent<C
|
|
|
23
23
|
* Properties for CreateAddressCrmDataset action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 2
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 6
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateAddressCrmDatasetProperties {
|
|
29
29
|
/**
|
|
@@ -77,6 +77,13 @@ export interface CreateAddressCrmDatasetProperties {
|
|
|
77
77
|
* @type {LOOKUP}
|
|
78
78
|
*/
|
|
79
79
|
Owner?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
* Exchange
|
|
82
|
+
*
|
|
83
|
+
* Data field for CrmDataset records. Used by Sales team.
|
|
84
|
+
* @type {TEXT}
|
|
85
|
+
*/
|
|
86
|
+
Exchange?: string | null;
|
|
80
87
|
}
|
|
81
88
|
/**
|
|
82
89
|
* CreateAddressCrmDataset
|
|
@@ -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
|
|
@@ -23,12 +23,12 @@ export declare enum ConfigEntityTypes {
|
|
|
23
23
|
* Use these constants instead of string literals for type safety
|
|
24
24
|
*/
|
|
25
25
|
export declare enum ConfigPropertyKeys {
|
|
26
|
-
/**
|
|
27
|
-
|
|
26
|
+
/** Data field for Config records. Used by Platform team. */
|
|
27
|
+
Test = "Test",
|
|
28
28
|
/** object of { key: value } mappings (Platform - Config) */
|
|
29
29
|
Mappings = "Mappings",
|
|
30
|
-
/**
|
|
31
|
-
|
|
30
|
+
/** the name of the app this config relates to (Platform - Config) */
|
|
31
|
+
AppName = "AppName"
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
34
|
* Properties for Config records
|
|
@@ -36,21 +36,21 @@ export declare enum ConfigPropertyKeys {
|
|
|
36
36
|
* @see SchemaModule:Config
|
|
37
37
|
*/
|
|
38
38
|
export interface ConfigProperties {
|
|
39
|
-
/**
|
|
39
|
+
/** Data field for Config records. Used by Platform team.
|
|
40
40
|
*
|
|
41
41
|
* @type {TEXT}
|
|
42
42
|
*/
|
|
43
|
-
|
|
43
|
+
Test: string;
|
|
44
44
|
/** object of { key: value } mappings (Platform - Config)
|
|
45
45
|
*
|
|
46
46
|
* @type {JSON}
|
|
47
47
|
*/
|
|
48
48
|
Mappings: string;
|
|
49
|
-
/**
|
|
49
|
+
/** the name of the app this config relates to (Platform - Config)
|
|
50
50
|
*
|
|
51
51
|
* @type {TEXT}
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
AppName: string;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
56
|
* Config entity from SchemaModule
|
|
@@ -28,12 +28,12 @@ var ConfigEntityTypes;
|
|
|
28
28
|
*/
|
|
29
29
|
var ConfigPropertyKeys;
|
|
30
30
|
(function (ConfigPropertyKeys) {
|
|
31
|
-
/** the name of the app this config relates to (Platform - Config) */
|
|
32
|
-
ConfigPropertyKeys["AppName"] = "AppName";
|
|
33
|
-
/** object of { key: value } mappings (Platform - Config) */
|
|
34
|
-
ConfigPropertyKeys["Mappings"] = "Mappings";
|
|
35
31
|
/** Data field for Config records. Used by Platform team. */
|
|
36
32
|
ConfigPropertyKeys["Test"] = "Test";
|
|
33
|
+
/** object of { key: value } mappings (Platform - Config) */
|
|
34
|
+
ConfigPropertyKeys["Mappings"] = "Mappings";
|
|
35
|
+
/** the name of the app this config relates to (Platform - Config) */
|
|
36
|
+
ConfigPropertyKeys["AppName"] = "AppName";
|
|
37
37
|
})(ConfigPropertyKeys = exports.ConfigPropertyKeys || (exports.ConfigPropertyKeys = {}));
|
|
38
38
|
/**
|
|
39
39
|
* Config entity from SchemaModule
|
|
@@ -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)
|