@d19n/youfibre-odin-sdk 2.0.3-beta.0 → 2.0.3

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,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
- /** Data field for Config records. Used by Platform team. */
27
- Test = "Test",
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
- /** the name of the app this config relates to (Platform - Config) */
31
- AppName = "AppName"
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
- /** Data field for Config records. Used by Platform team.
39
+ /** the name of the app this config relates to (Platform - Config)
40
40
  *
41
41
  * @type {TEXT}
42
42
  */
43
- Test: string;
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
- /** the name of the app this config relates to (Platform - Config)
49
+ /** Data field for Config records. Used by Platform team.
50
50
  *
51
51
  * @type {TEXT}
52
52
  */
53
- AppName: string;
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
@@ -153,12 +153,14 @@ export declare enum OrderBillingTerms {
153
153
  * network provider (Sales - Order)
154
154
  *
155
155
  * @remarks Available options:
156
+ * - `BRSK` - Brsk
156
157
  * - `CITYFIBRE` - CityFibre
157
158
  * - `NETOMNIA` - Netomnia
158
159
  * - `NETOMNIA_LEGACY` - Netomnia legacy
159
160
  * - `PYOMNI` - PyOmni
160
161
  */
161
162
  export declare enum OrderProvider {
163
+ BRSK = "BRSK",
162
164
  CITY_FIBRE = "CITYFIBRE",
163
165
  NETOMNIA = "NETOMNIA",
164
166
  NETOMNIA_LEGACY = "NETOMNIA_LEGACY",
@@ -128,6 +128,7 @@ var OrderBillingTerms;
128
128
  * network provider (Sales - Order)
129
129
  *
130
130
  * @remarks Available options:
131
+ * - `BRSK` - Brsk
131
132
  * - `CITYFIBRE` - CityFibre
132
133
  * - `NETOMNIA` - Netomnia
133
134
  * - `NETOMNIA_LEGACY` - Netomnia legacy
@@ -135,6 +136,7 @@ var OrderBillingTerms;
135
136
  */
136
137
  var OrderProvider;
137
138
  (function (OrderProvider) {
139
+ OrderProvider["BRSK"] = "BRSK";
138
140
  OrderProvider["CITY_FIBRE"] = "CITYFIBRE";
139
141
  OrderProvider["NETOMNIA"] = "NETOMNIA";
140
142
  OrderProvider["NETOMNIA_LEGACY"] = "NETOMNIA_LEGACY";
@@ -40,6 +40,8 @@ export declare enum ServiceAppointmentTimeBlock {
40
40
  * Use these constants instead of string literals for type safety
41
41
  */
42
42
  export declare enum ServiceAppointmentPropertyKeys {
43
+ /** The reservation ID from the wholesale provider */
44
+ SupplierReference = "SupplierReference",
43
45
  /** used for holding appointments, if there is a past date the appointment will be deleted (Field Operations - ServiceAppointment) */
44
46
  ExpirationDate = "ExpirationDate",
45
47
  /** This is the id of the ServiceAppointmentConfig (Field Operations - ServiceAppointment) */
@@ -61,6 +63,11 @@ export declare enum ServiceAppointmentPropertyKeys {
61
63
  * @see FieldServiceModule:ServiceAppointment
62
64
  */
63
65
  export interface ServiceAppointmentProperties {
66
+ /** The reservation ID from the wholesale provider
67
+ *
68
+ * @type {TEXT}
69
+ */
70
+ SupplierReference: string;
64
71
  /** used for holding appointments, if there is a past date the appointment will be deleted (Field Operations - ServiceAppointment)
65
72
  *
66
73
  * @type {DATE_TIME}
@@ -42,6 +42,8 @@ var ServiceAppointmentTimeBlock;
42
42
  */
43
43
  var ServiceAppointmentPropertyKeys;
44
44
  (function (ServiceAppointmentPropertyKeys) {
45
+ /** The reservation ID from the wholesale provider */
46
+ ServiceAppointmentPropertyKeys["SupplierReference"] = "SupplierReference";
45
47
  /** used for holding appointments, if there is a past date the appointment will be deleted (Field Operations - ServiceAppointment) */
46
48
  ServiceAppointmentPropertyKeys["ExpirationDate"] = "ExpirationDate";
47
49
  /** This is the id of the ServiceAppointmentConfig (Field Operations - ServiceAppointment) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d19n/youfibre-odin-sdk",
3
- "version": "2.0.3-beta.0",
3
+ "version": "2.0.3",
4
4
  "description": "",
5
5
  "author": "@d19n",
6
6
  "license": "UNLICENSED",