@d19n/youfibre-odin-sdk 1.0.340 → 1.0.341
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,8 +22,8 @@ export interface UpdateInstallScheduleMessage extends OdinRecordUpdatedEvent<Upd
|
|
|
22
22
|
/**
|
|
23
23
|
* Properties for UpdateInstallSchedule action
|
|
24
24
|
*
|
|
25
|
-
* @property Required fields:
|
|
26
|
-
* @property Optional fields:
|
|
25
|
+
* @property Required fields: 3
|
|
26
|
+
* @property Optional fields: 9
|
|
27
27
|
*/
|
|
28
28
|
export interface UpdateInstallScheduleProperties {
|
|
29
29
|
/**
|
|
@@ -51,14 +51,6 @@ export interface UpdateInstallScheduleProperties {
|
|
|
51
51
|
* @required
|
|
52
52
|
*/
|
|
53
53
|
Contractor: string;
|
|
54
|
-
/**
|
|
55
|
-
* Region
|
|
56
|
-
*
|
|
57
|
-
* The linked region (Field Operations - ServiceAppointmentConfig)
|
|
58
|
-
* @type {LOOKUP}
|
|
59
|
-
* @required
|
|
60
|
-
*/
|
|
61
|
-
RegionId: string;
|
|
62
54
|
/**
|
|
63
55
|
* ExPolygonId
|
|
64
56
|
*
|
|
@@ -81,6 +73,13 @@ export interface UpdateInstallScheduleProperties {
|
|
|
81
73
|
* @format DD/MM/YYYY
|
|
82
74
|
*/
|
|
83
75
|
AvailableTo?: string | null;
|
|
76
|
+
/**
|
|
77
|
+
* Region
|
|
78
|
+
*
|
|
79
|
+
* The linked region (Field Operations - ServiceAppointmentConfig)
|
|
80
|
+
* @type {LOOKUP}
|
|
81
|
+
*/
|
|
82
|
+
RegionId?: string | null;
|
|
84
83
|
/**
|
|
85
84
|
* BookingDelay
|
|
86
85
|
*
|
|
@@ -109,6 +108,13 @@ export interface UpdateInstallScheduleProperties {
|
|
|
109
108
|
* @type {TEXT}
|
|
110
109
|
*/
|
|
111
110
|
Name?: string | null;
|
|
111
|
+
/**
|
|
112
|
+
* region
|
|
113
|
+
*
|
|
114
|
+
* the region selection (Field Operations - ServiceAppointmentConfig)
|
|
115
|
+
* @type {ENUM}
|
|
116
|
+
*/
|
|
117
|
+
Region?: string | null;
|
|
112
118
|
}
|
|
113
119
|
/**
|
|
114
120
|
* UpdateInstallSchedule
|
|
@@ -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
|
+
/** the name of the app this config relates to (Platform - Config) */
|
|
27
|
+
AppName = "AppName",
|
|
28
28
|
/** object of { key: value } mappings (Platform - Config) */
|
|
29
29
|
Mappings = "Mappings",
|
|
30
|
-
/**
|
|
31
|
-
|
|
30
|
+
/** Data field for Config records. Used by Platform team. */
|
|
31
|
+
Test = "Test"
|
|
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
|
+
/** the name of the app this config relates to (Platform - Config)
|
|
40
40
|
*
|
|
41
41
|
* @type {TEXT}
|
|
42
42
|
*/
|
|
43
|
-
|
|
43
|
+
AppName: string;
|
|
44
44
|
/** object of { key: value } mappings (Platform - Config)
|
|
45
45
|
*
|
|
46
46
|
* @type {JSON}
|
|
47
47
|
*/
|
|
48
48
|
Mappings: string;
|
|
49
|
-
/**
|
|
49
|
+
/** Data field for Config records. Used by Platform team.
|
|
50
50
|
*
|
|
51
51
|
* @type {TEXT}
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
Test: 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
|
-
/** Data field for Config records. Used by Platform team. */
|
|
32
|
-
ConfigPropertyKeys["Test"] = "Test";
|
|
33
|
-
/** object of { key: value } mappings (Platform - Config) */
|
|
34
|
-
ConfigPropertyKeys["Mappings"] = "Mappings";
|
|
35
31
|
/** the name of the app this config relates to (Platform - Config) */
|
|
36
32
|
ConfigPropertyKeys["AppName"] = "AppName";
|
|
33
|
+
/** object of { key: value } mappings (Platform - Config) */
|
|
34
|
+
ConfigPropertyKeys["Mappings"] = "Mappings";
|
|
35
|
+
/** Data field for Config records. Used by Platform team. */
|
|
36
|
+
ConfigPropertyKeys["Test"] = "Test";
|
|
37
37
|
})(ConfigPropertyKeys = exports.ConfigPropertyKeys || (exports.ConfigPropertyKeys = {}));
|
|
38
38
|
/**
|
|
39
39
|
* Config entity from SchemaModule
|