@d19n/youfibre-odin-sdk 2.0.16 → 2.0.17
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 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: 4
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateMessageProperties {
|
|
29
29
|
/**
|
|
@@ -66,6 +66,13 @@ export interface CreateMessageProperties {
|
|
|
66
66
|
* @required
|
|
67
67
|
*/
|
|
68
68
|
To: string;
|
|
69
|
+
/**
|
|
70
|
+
* Status
|
|
71
|
+
*
|
|
72
|
+
* Status of the message (CREATED,DELETED) (Communications - Message)
|
|
73
|
+
* @type {TEXT}
|
|
74
|
+
*/
|
|
75
|
+
Status?: string | null;
|
|
69
76
|
/**
|
|
70
77
|
* MessageType
|
|
71
78
|
*
|
|
@@ -24,6 +24,22 @@ export declare enum BngProvisionEntityTypes {
|
|
|
24
24
|
* Use these constants instead of string literals for type safety
|
|
25
25
|
*/
|
|
26
26
|
export declare enum BngProvisionPropertyKeys {
|
|
27
|
+
/** IPv4 Address */
|
|
28
|
+
IPv4Address = "IPv4Address",
|
|
29
|
+
/** IPv6 Address */
|
|
30
|
+
IPv6Address = "IPv6Address",
|
|
31
|
+
/** Radius Username */
|
|
32
|
+
RadiusUsername = "RadiusUsername",
|
|
33
|
+
/** Idempotency Key */
|
|
34
|
+
IdempotencyKey = "IdempotencyKey",
|
|
35
|
+
/** IPv6 Delegated Prefix */
|
|
36
|
+
IPv6DelegatedPrefix = "IPv6DelegatedPrefix",
|
|
37
|
+
/** IPv6 NDRA Prefix */
|
|
38
|
+
IPv6NdraPrefix = "IPv6NDRAPrefix",
|
|
39
|
+
/** Radius Package Name */
|
|
40
|
+
RadiusPackageName = "RadiusPackageName",
|
|
41
|
+
/** Radius Result */
|
|
42
|
+
RadiusResult = "RadiusResult"
|
|
27
43
|
}
|
|
28
44
|
/**
|
|
29
45
|
* Properties for BngProvision records
|
|
@@ -31,6 +47,46 @@ export declare enum BngProvisionPropertyKeys {
|
|
|
31
47
|
* @see ServiceModule:BngProvision
|
|
32
48
|
*/
|
|
33
49
|
export interface BngProvisionProperties {
|
|
50
|
+
/** IPv4 Address
|
|
51
|
+
*
|
|
52
|
+
* @type {TEXT}
|
|
53
|
+
*/
|
|
54
|
+
IPv4Address: string;
|
|
55
|
+
/** IPv6 Address
|
|
56
|
+
*
|
|
57
|
+
* @type {TEXT}
|
|
58
|
+
*/
|
|
59
|
+
IPv6Address: string;
|
|
60
|
+
/** Radius Username
|
|
61
|
+
*
|
|
62
|
+
* @type {TEXT}
|
|
63
|
+
*/
|
|
64
|
+
RadiusUsername: string;
|
|
65
|
+
/** Idempotency Key
|
|
66
|
+
*
|
|
67
|
+
* @type {TEXT}
|
|
68
|
+
*/
|
|
69
|
+
IdempotencyKey: string;
|
|
70
|
+
/** IPv6 Delegated Prefix
|
|
71
|
+
*
|
|
72
|
+
* @type {TEXT}
|
|
73
|
+
*/
|
|
74
|
+
IPv6DelegatedPrefix: string;
|
|
75
|
+
/** IPv6 NDRA Prefix
|
|
76
|
+
*
|
|
77
|
+
* @type {TEXT}
|
|
78
|
+
*/
|
|
79
|
+
IPv6NdraPrefix: string;
|
|
80
|
+
/** Radius Package Name
|
|
81
|
+
*
|
|
82
|
+
* @type {TEXT}
|
|
83
|
+
*/
|
|
84
|
+
RadiusPackageName: string;
|
|
85
|
+
/** Radius Result
|
|
86
|
+
*
|
|
87
|
+
* @type {TEXT}
|
|
88
|
+
*/
|
|
89
|
+
RadiusResult: string;
|
|
34
90
|
}
|
|
35
91
|
/**
|
|
36
92
|
* BngProvision entity from ServiceModule
|
|
@@ -28,6 +28,22 @@ var BngProvisionEntityTypes;
|
|
|
28
28
|
*/
|
|
29
29
|
var BngProvisionPropertyKeys;
|
|
30
30
|
(function (BngProvisionPropertyKeys) {
|
|
31
|
+
/** IPv4 Address */
|
|
32
|
+
BngProvisionPropertyKeys["IPv4Address"] = "IPv4Address";
|
|
33
|
+
/** IPv6 Address */
|
|
34
|
+
BngProvisionPropertyKeys["IPv6Address"] = "IPv6Address";
|
|
35
|
+
/** Radius Username */
|
|
36
|
+
BngProvisionPropertyKeys["RadiusUsername"] = "RadiusUsername";
|
|
37
|
+
/** Idempotency Key */
|
|
38
|
+
BngProvisionPropertyKeys["IdempotencyKey"] = "IdempotencyKey";
|
|
39
|
+
/** IPv6 Delegated Prefix */
|
|
40
|
+
BngProvisionPropertyKeys["IPv6DelegatedPrefix"] = "IPv6DelegatedPrefix";
|
|
41
|
+
/** IPv6 NDRA Prefix */
|
|
42
|
+
BngProvisionPropertyKeys["IPv6NdraPrefix"] = "IPv6NDRAPrefix";
|
|
43
|
+
/** Radius Package Name */
|
|
44
|
+
BngProvisionPropertyKeys["RadiusPackageName"] = "RadiusPackageName";
|
|
45
|
+
/** Radius Result */
|
|
46
|
+
BngProvisionPropertyKeys["RadiusResult"] = "RadiusResult";
|
|
31
47
|
})(BngProvisionPropertyKeys = exports.BngProvisionPropertyKeys || (exports.BngProvisionPropertyKeys = {}));
|
|
32
48
|
/**
|
|
33
49
|
* BngProvision entity from ServiceModule
|