@d19n/youfibre-odin-sdk 2.0.53 → 2.0.55
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.
|
@@ -39,7 +39,9 @@ export declare enum BngProvisionPropertyKeys {
|
|
|
39
39
|
/** Radius Package Name */
|
|
40
40
|
RadiusPackageName = "RadiusPackageName",
|
|
41
41
|
/** Radius Result */
|
|
42
|
-
RadiusResult = "RadiusResult"
|
|
42
|
+
RadiusResult = "RadiusResult",
|
|
43
|
+
/** Deprovisioned Flag */
|
|
44
|
+
Deprovisioned = "Deprovisioned"
|
|
43
45
|
}
|
|
44
46
|
/**
|
|
45
47
|
* Properties for BngProvision records
|
|
@@ -87,6 +89,12 @@ export interface BngProvisionProperties {
|
|
|
87
89
|
* @type {TEXT}
|
|
88
90
|
*/
|
|
89
91
|
RadiusResult: string;
|
|
92
|
+
/** Deprovisioned Flag
|
|
93
|
+
*
|
|
94
|
+
* @type {BOOLEAN}
|
|
95
|
+
* @default False
|
|
96
|
+
*/
|
|
97
|
+
Deprovisioned: boolean;
|
|
90
98
|
}
|
|
91
99
|
/**
|
|
92
100
|
* BngProvision entity from ServiceModule
|
|
@@ -44,6 +44,8 @@ var BngProvisionPropertyKeys;
|
|
|
44
44
|
BngProvisionPropertyKeys["RadiusPackageName"] = "RadiusPackageName";
|
|
45
45
|
/** Radius Result */
|
|
46
46
|
BngProvisionPropertyKeys["RadiusResult"] = "RadiusResult";
|
|
47
|
+
/** Deprovisioned Flag */
|
|
48
|
+
BngProvisionPropertyKeys["Deprovisioned"] = "Deprovisioned";
|
|
47
49
|
})(BngProvisionPropertyKeys = exports.BngProvisionPropertyKeys || (exports.BngProvisionPropertyKeys = {}));
|
|
48
50
|
/**
|
|
49
51
|
* BngProvision entity from ServiceModule
|
|
@@ -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
|
|
@@ -75,7 +75,9 @@ export declare enum DefaultOrderStageNames {
|
|
|
75
75
|
/** order is cancelled (fail) */
|
|
76
76
|
Cancelled = "Cancelled",
|
|
77
77
|
/** Pending Cancellation */
|
|
78
|
-
PendingCancellation = "Pending Cancellation"
|
|
78
|
+
PendingCancellation = "Pending Cancellation",
|
|
79
|
+
/** BrskMigrationRemediation */
|
|
80
|
+
BrskMigrationRemediation = "BrskMigrationRemediation"
|
|
79
81
|
}
|
|
80
82
|
/**
|
|
81
83
|
* Pipeline stage keys for DEFAULT Order
|
|
@@ -97,7 +99,9 @@ export declare enum DefaultOrderStageKeys {
|
|
|
97
99
|
/** order is cancelled */
|
|
98
100
|
OrderStageCancelled = "OrderStageCancelled",
|
|
99
101
|
/** Pending Cancellation */
|
|
100
|
-
OrderStagePendingCancellation = "OrderStagePendingCancellation"
|
|
102
|
+
OrderStagePendingCancellation = "OrderStagePendingCancellation",
|
|
103
|
+
/** BrskMigrationRemediation */
|
|
104
|
+
OrderStageBrskMigrationRemediation = "OrderStageBrskMigrationRemediation"
|
|
101
105
|
}
|
|
102
106
|
/**
|
|
103
107
|
* Valid values for Order.CurrencyCode
|
|
@@ -451,6 +455,8 @@ export declare enum OrderPropertyKeys {
|
|
|
451
455
|
ExternalRefBrskFno = "ExternalRefBrskFNO",
|
|
452
456
|
/** ExternalRefBrskISP */
|
|
453
457
|
ExternalRefBrskIsp = "ExternalRefBrskISP",
|
|
458
|
+
/** BrskOrderStatus */
|
|
459
|
+
BrskOrderStatus = "BrskOrderStatus",
|
|
454
460
|
/** Affiliate code used when order was placed */
|
|
455
461
|
AffiliateCode = "AffiliateCode"
|
|
456
462
|
}
|
|
@@ -1020,6 +1026,11 @@ export interface OrderProperties {
|
|
|
1020
1026
|
* @type {TEXT}
|
|
1021
1027
|
*/
|
|
1022
1028
|
ExternalRefBrskIsp: string;
|
|
1029
|
+
/** BrskOrderStatus
|
|
1030
|
+
*
|
|
1031
|
+
* @type {TEXT}
|
|
1032
|
+
*/
|
|
1033
|
+
BrskOrderStatus: string;
|
|
1023
1034
|
/** Affiliate code used when order was placed
|
|
1024
1035
|
*
|
|
1025
1036
|
* @type {TEXT}
|
|
@@ -46,6 +46,8 @@ var DefaultOrderStageNames;
|
|
|
46
46
|
DefaultOrderStageNames["Cancelled"] = "Cancelled";
|
|
47
47
|
/** Pending Cancellation */
|
|
48
48
|
DefaultOrderStageNames["PendingCancellation"] = "Pending Cancellation";
|
|
49
|
+
/** BrskMigrationRemediation */
|
|
50
|
+
DefaultOrderStageNames["BrskMigrationRemediation"] = "BrskMigrationRemediation";
|
|
49
51
|
})(DefaultOrderStageNames = exports.DefaultOrderStageNames || (exports.DefaultOrderStageNames = {}));
|
|
50
52
|
/**
|
|
51
53
|
* Pipeline stage keys for DEFAULT Order
|
|
@@ -69,6 +71,8 @@ var DefaultOrderStageKeys;
|
|
|
69
71
|
DefaultOrderStageKeys["OrderStageCancelled"] = "OrderStageCancelled";
|
|
70
72
|
/** Pending Cancellation */
|
|
71
73
|
DefaultOrderStageKeys["OrderStagePendingCancellation"] = "OrderStagePendingCancellation";
|
|
74
|
+
/** BrskMigrationRemediation */
|
|
75
|
+
DefaultOrderStageKeys["OrderStageBrskMigrationRemediation"] = "OrderStageBrskMigrationRemediation";
|
|
72
76
|
})(DefaultOrderStageKeys = exports.DefaultOrderStageKeys || (exports.DefaultOrderStageKeys = {}));
|
|
73
77
|
/**
|
|
74
78
|
* Valid values for Order.CurrencyCode
|
|
@@ -433,6 +437,8 @@ var OrderPropertyKeys;
|
|
|
433
437
|
OrderPropertyKeys["ExternalRefBrskFno"] = "ExternalRefBrskFNO";
|
|
434
438
|
/** ExternalRefBrskISP */
|
|
435
439
|
OrderPropertyKeys["ExternalRefBrskIsp"] = "ExternalRefBrskISP";
|
|
440
|
+
/** BrskOrderStatus */
|
|
441
|
+
OrderPropertyKeys["BrskOrderStatus"] = "BrskOrderStatus";
|
|
436
442
|
/** Affiliate code used when order was placed */
|
|
437
443
|
OrderPropertyKeys["AffiliateCode"] = "AffiliateCode";
|
|
438
444
|
})(OrderPropertyKeys = exports.OrderPropertyKeys || (exports.OrderPropertyKeys = {}));
|