@d19n/youfibre-odin-sdk 2.0.43 → 2.0.46
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.
|
@@ -22,7 +22,7 @@ export interface AddressUpdateMessage extends OdinRecordUpdatedEvent<AddressUpda
|
|
|
22
22
|
* Properties for AddressUpdate action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 9
|
|
26
26
|
*/
|
|
27
27
|
export interface AddressUpdateProperties {
|
|
28
28
|
/**
|
|
@@ -81,6 +81,13 @@ export interface AddressUpdateProperties {
|
|
|
81
81
|
* @type {TEXT}
|
|
82
82
|
*/
|
|
83
83
|
Providers?: string | null;
|
|
84
|
+
/**
|
|
85
|
+
* CrmDatasetId
|
|
86
|
+
*
|
|
87
|
+
* Related CrmDataset
|
|
88
|
+
* @type {LOOKUP}
|
|
89
|
+
*/
|
|
90
|
+
CrmDatasetId?: string | null;
|
|
84
91
|
}
|
|
85
92
|
/**
|
|
86
93
|
* AddressUpdate
|
|
@@ -23,7 +23,7 @@ export interface CreateMessageMessage extends OdinRecordCreatedEvent<CreateMessa
|
|
|
23
23
|
* Properties for CreateMessage action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 5
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 3
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateMessageProperties {
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface UpdateAddressDataSetMessage extends OdinRecordUpdatedEvent<Upda
|
|
|
23
23
|
* Properties for UpdateAddressDataSet action
|
|
24
24
|
*
|
|
25
25
|
* @property Required fields: 1
|
|
26
|
-
* @property Optional fields:
|
|
26
|
+
* @property Optional fields: 3
|
|
27
27
|
*/
|
|
28
28
|
export interface UpdateAddressDataSetProperties {
|
|
29
29
|
/**
|
|
@@ -48,6 +48,13 @@ export interface UpdateAddressDataSetProperties {
|
|
|
48
48
|
* @type {LOOKUP}
|
|
49
49
|
*/
|
|
50
50
|
Owner?: string | null;
|
|
51
|
+
/**
|
|
52
|
+
* TotalAddressNumber
|
|
53
|
+
*
|
|
54
|
+
* Shows total number of addresses within dataset
|
|
55
|
+
* @type {NUMBER}
|
|
56
|
+
*/
|
|
57
|
+
TotalAddressNumber?: number | null;
|
|
51
58
|
}
|
|
52
59
|
/**
|
|
53
60
|
* UpdateAddressDataSet
|
|
@@ -75,6 +75,8 @@ export declare enum AddressSalesStatus {
|
|
|
75
75
|
* Use these constants instead of string literals for type safety
|
|
76
76
|
*/
|
|
77
77
|
export declare enum AddressPropertyKeys {
|
|
78
|
+
/** Related CrmDataset */
|
|
79
|
+
CrmDatasetId = "CrmDatasetId",
|
|
78
80
|
/** To identify to the contractor whether it is an underground or overhead connection. (Sales - Address) */
|
|
79
81
|
ConnectionType = "ConnectionType",
|
|
80
82
|
/** TRUE if the premise had an ONT connected (Sales - Address) */
|
|
@@ -204,6 +206,11 @@ export declare enum AddressPropertyKeys {
|
|
|
204
206
|
* @see CrmModule:Address
|
|
205
207
|
*/
|
|
206
208
|
export interface AddressProperties {
|
|
209
|
+
/** Related CrmDataset
|
|
210
|
+
*
|
|
211
|
+
* @type {LOOKUP}
|
|
212
|
+
*/
|
|
213
|
+
CrmDatasetId: string;
|
|
207
214
|
/** To identify to the contractor whether it is an underground or overhead connection. (Sales - Address)
|
|
208
215
|
*
|
|
209
216
|
* @type {TEXT}
|
|
@@ -64,6 +64,8 @@ var AddressSalesStatus;
|
|
|
64
64
|
*/
|
|
65
65
|
var AddressPropertyKeys;
|
|
66
66
|
(function (AddressPropertyKeys) {
|
|
67
|
+
/** Related CrmDataset */
|
|
68
|
+
AddressPropertyKeys["CrmDatasetId"] = "CrmDatasetId";
|
|
67
69
|
/** To identify to the contractor whether it is an underground or overhead connection. (Sales - Address) */
|
|
68
70
|
AddressPropertyKeys["ConnectionType"] = "ConnectionType";
|
|
69
71
|
/** TRUE if the premise had an ONT connected (Sales - Address) */
|