@redhat-cloud-services/notifications-client 1.0.102

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.
Files changed (57) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +59 -0
  3. package/doc/README.md +63 -0
  4. package/doc/classes/appregistrationapi.md +102 -0
  5. package/doc/classes/appsapi.md +127 -0
  6. package/doc/classes/baseapi.md +71 -0
  7. package/doc/classes/configuration.md +116 -0
  8. package/doc/classes/endpointsapi.md +229 -0
  9. package/doc/classes/filtersapi.md +103 -0
  10. package/doc/classes/requirederror.md +88 -0
  11. package/doc/enums/apptypeenum.md +19 -0
  12. package/doc/enums/endpointattributeslastdeliverystatusenum.md +28 -0
  13. package/doc/enums/endpointtypeenum.md +19 -0
  14. package/doc/enums/eventtypetypeenum.md +19 -0
  15. package/doc/enums/inlineresponse2004datatypeenum.md +19 -0
  16. package/doc/enums/leveltypeenum.md +19 -0
  17. package/doc/globals.md +458 -0
  18. package/doc/interfaces/app.md +66 -0
  19. package/doc/interfaces/appattributes.md +42 -0
  20. package/doc/interfaces/apprelationships.md +27 -0
  21. package/doc/interfaces/appsregisterapplication.md +38 -0
  22. package/doc/interfaces/appsregistereventtypes.md +49 -0
  23. package/doc/interfaces/appsregistereventtypeslevels.md +38 -0
  24. package/doc/interfaces/configurationparameters.md +75 -0
  25. package/doc/interfaces/endpoint.md +53 -0
  26. package/doc/interfaces/endpointattributes.md +94 -0
  27. package/doc/interfaces/endpointsendpoint.md +60 -0
  28. package/doc/interfaces/endpointsendpointfilter.md +49 -0
  29. package/doc/interfaces/endpointsidendpoint.md +60 -0
  30. package/doc/interfaces/endpointsidendpointfilter.md +60 -0
  31. package/doc/interfaces/errors.md +27 -0
  32. package/doc/interfaces/errorserrors.md +93 -0
  33. package/doc/interfaces/errorssource.md +38 -0
  34. package/doc/interfaces/eventtype.md +66 -0
  35. package/doc/interfaces/eventtypeattributes.md +42 -0
  36. package/doc/interfaces/eventtyperelationships.md +27 -0
  37. package/doc/interfaces/inlineobject.md +38 -0
  38. package/doc/interfaces/inlineobject1.md +27 -0
  39. package/doc/interfaces/inlineobject2.md +27 -0
  40. package/doc/interfaces/inlineresponse200.md +38 -0
  41. package/doc/interfaces/inlineresponse2001.md +27 -0
  42. package/doc/interfaces/inlineresponse2002.md +38 -0
  43. package/doc/interfaces/inlineresponse2003.md +49 -0
  44. package/doc/interfaces/inlineresponse2004.md +27 -0
  45. package/doc/interfaces/inlineresponse2004data.md +60 -0
  46. package/doc/interfaces/inlineresponse2004dataattributes.md +27 -0
  47. package/doc/interfaces/inlineresponse2004datarelationships.md +60 -0
  48. package/doc/interfaces/inlineresponse201.md +27 -0
  49. package/doc/interfaces/level.md +55 -0
  50. package/doc/interfaces/levelattributes.md +29 -0
  51. package/doc/interfaces/links.md +68 -0
  52. package/doc/interfaces/metadata.md +55 -0
  53. package/doc/interfaces/relationship.md +38 -0
  54. package/doc/interfaces/relationships.md +27 -0
  55. package/doc/interfaces/requestargs.md +34 -0
  56. package/package.json +34 -0
  57. package/postProcess.sh +12 -0
@@ -0,0 +1,66 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [EventType](eventtype.md)
2
+
3
+ # Interface: EventType
4
+
5
+ Event type record properties
6
+
7
+ **`export`**
8
+
9
+ **`interface`** EventType
10
+
11
+ ## Hierarchy
12
+
13
+ * **EventType**
14
+
15
+ ## Index
16
+
17
+ ### Properties
18
+
19
+ * [attributes](eventtype.md#optional-attributes)
20
+ * [id](eventtype.md#optional-id)
21
+ * [relationships](eventtype.md#optional-relationships)
22
+ * [type](eventtype.md#optional-type)
23
+
24
+ ## Properties
25
+
26
+ ### `Optional` attributes
27
+
28
+ • **attributes**? : *[EventTypeAttributes](eventtypeattributes.md)*
29
+
30
+ *Defined in [packages/hooks/api.ts:466](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L466)*
31
+
32
+ **`memberof`** EventType
33
+
34
+ ___
35
+
36
+ ### `Optional` id
37
+
38
+ • **id**? : *string*
39
+
40
+ *Defined in [packages/hooks/api.ts:454](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L454)*
41
+
42
+ Identifier of the event type
43
+
44
+ **`memberof`** EventType
45
+
46
+ ___
47
+
48
+ ### `Optional` relationships
49
+
50
+ • **relationships**? : *[EventTypeRelationships](eventtyperelationships.md)*
51
+
52
+ *Defined in [packages/hooks/api.ts:472](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L472)*
53
+
54
+ **`memberof`** EventType
55
+
56
+ ___
57
+
58
+ ### `Optional` type
59
+
60
+ • **type**? : *[EventTypeTypeEnum](../enums/eventtypetypeenum.md)*
61
+
62
+ *Defined in [packages/hooks/api.ts:460](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L460)*
63
+
64
+ Type of the returned record
65
+
66
+ **`memberof`** EventType
@@ -0,0 +1,42 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [EventTypeAttributes](eventtypeattributes.md)
2
+
3
+ # Interface: EventTypeAttributes
4
+
5
+ **`export`**
6
+
7
+ **`interface`** EventTypeAttributes
8
+
9
+ ## Hierarchy
10
+
11
+ * **EventTypeAttributes**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [name](eventtypeattributes.md#optional-name)
18
+ * [title](eventtypeattributes.md#optional-title)
19
+
20
+ ## Properties
21
+
22
+ ### `Optional` name
23
+
24
+ • **name**? : *string*
25
+
26
+ *Defined in [packages/hooks/api.ts:494](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L494)*
27
+
28
+ Identifier of the event type, used to identify the event type in messages
29
+
30
+ **`memberof`** EventTypeAttributes
31
+
32
+ ___
33
+
34
+ ### `Optional` title
35
+
36
+ • **title**? : *string*
37
+
38
+ *Defined in [packages/hooks/api.ts:500](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L500)*
39
+
40
+ Human readable description of the event type, shown to the user when configuring filters
41
+
42
+ **`memberof`** EventTypeAttributes
@@ -0,0 +1,27 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [EventTypeRelationships](eventtyperelationships.md)
2
+
3
+ # Interface: EventTypeRelationships
4
+
5
+ **`export`**
6
+
7
+ **`interface`** EventTypeRelationships
8
+
9
+ ## Hierarchy
10
+
11
+ * **EventTypeRelationships**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [levels](eventtyperelationships.md#optional-levels)
18
+
19
+ ## Properties
20
+
21
+ ### `Optional` levels
22
+
23
+ • **levels**? : *[Relationships](relationships.md)*
24
+
25
+ *Defined in [packages/hooks/api.ts:513](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L513)*
26
+
27
+ **`memberof`** EventTypeRelationships
@@ -0,0 +1,38 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineObject](inlineobject.md)
2
+
3
+ # Interface: InlineObject
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineObject
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineObject**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [application](inlineobject.md#optional-application)
18
+ * [event_types](inlineobject.md#optional-event_types)
19
+
20
+ ## Properties
21
+
22
+ ### `Optional` application
23
+
24
+ • **application**? : *[AppsRegisterApplication](appsregisterapplication.md)*
25
+
26
+ *Defined in [packages/hooks/api.ts:526](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L526)*
27
+
28
+ **`memberof`** InlineObject
29
+
30
+ ___
31
+
32
+ ### `Optional` event_types
33
+
34
+ • **event_types**? : *[AppsRegisterEventTypes](appsregistereventtypes.md)*
35
+
36
+ *Defined in [packages/hooks/api.ts:532](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L532)*
37
+
38
+ **`memberof`** InlineObject
@@ -0,0 +1,27 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineObject1](inlineobject1.md)
2
+
3
+ # Interface: InlineObject1
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineObject1
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineObject1**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [endpoint](inlineobject1.md#optional-endpoint)
18
+
19
+ ## Properties
20
+
21
+ ### `Optional` endpoint
22
+
23
+ • **endpoint**? : *[EndpointsEndpoint](endpointsendpoint.md)*
24
+
25
+ *Defined in [packages/hooks/api.ts:545](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L545)*
26
+
27
+ **`memberof`** InlineObject1
@@ -0,0 +1,27 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineObject2](inlineobject2.md)
2
+
3
+ # Interface: InlineObject2
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineObject2
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineObject2**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [endpoint](inlineobject2.md#optional-endpoint)
18
+
19
+ ## Properties
20
+
21
+ ### `Optional` endpoint
22
+
23
+ • **endpoint**? : *[EndpointsIdEndpoint](endpointsidendpoint.md)*
24
+
25
+ *Defined in [packages/hooks/api.ts:558](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L558)*
26
+
27
+ **`memberof`** InlineObject2
@@ -0,0 +1,38 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse200](inlineresponse200.md)
2
+
3
+ # Interface: InlineResponse200
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse200
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse200**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [data](inlineresponse200.md#optional-data)
18
+ * [included](inlineresponse200.md#optional-included)
19
+
20
+ ## Properties
21
+
22
+ ### `Optional` data
23
+
24
+ • **data**? : *Array‹[App](app.md)›*
25
+
26
+ *Defined in [packages/hooks/api.ts:571](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L571)*
27
+
28
+ **`memberof`** InlineResponse200
29
+
30
+ ___
31
+
32
+ ### `Optional` included
33
+
34
+ • **included**? : *Array‹[EventType](eventtype.md) | [Level](level.md)›*
35
+
36
+ *Defined in [packages/hooks/api.ts:577](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L577)*
37
+
38
+ **`memberof`** InlineResponse200
@@ -0,0 +1,27 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse2001](inlineresponse2001.md)
2
+
3
+ # Interface: InlineResponse2001
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse2001
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse2001**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [data](inlineresponse2001.md#optional-data)
18
+
19
+ ## Properties
20
+
21
+ ### `Optional` data
22
+
23
+ • **data**? : *[App](app.md)*
24
+
25
+ *Defined in [packages/hooks/api.ts:590](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L590)*
26
+
27
+ **`memberof`** InlineResponse2001
@@ -0,0 +1,38 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse2002](inlineresponse2002.md)
2
+
3
+ # Interface: InlineResponse2002
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse2002
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse2002**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [data](inlineresponse2002.md#optional-data)
18
+ * [included](inlineresponse2002.md#optional-included)
19
+
20
+ ## Properties
21
+
22
+ ### `Optional` data
23
+
24
+ • **data**? : *[App](app.md)*
25
+
26
+ *Defined in [packages/hooks/api.ts:603](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L603)*
27
+
28
+ **`memberof`** InlineResponse2002
29
+
30
+ ___
31
+
32
+ ### `Optional` included
33
+
34
+ • **included**? : *Array‹[EventType](eventtype.md) | [Level](level.md)›*
35
+
36
+ *Defined in [packages/hooks/api.ts:609](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L609)*
37
+
38
+ **`memberof`** InlineResponse2002
@@ -0,0 +1,49 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse2003](inlineresponse2003.md)
2
+
3
+ # Interface: InlineResponse2003
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse2003
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse2003**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [data](inlineresponse2003.md#optional-data)
18
+ * [links](inlineresponse2003.md#optional-links)
19
+ * [meta](inlineresponse2003.md#optional-meta)
20
+
21
+ ## Properties
22
+
23
+ ### `Optional` data
24
+
25
+ • **data**? : *Array‹[Endpoint](endpoint.md)›*
26
+
27
+ *Defined in [packages/hooks/api.ts:622](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L622)*
28
+
29
+ **`memberof`** InlineResponse2003
30
+
31
+ ___
32
+
33
+ ### `Optional` links
34
+
35
+ • **links**? : *[Links](links.md)*
36
+
37
+ *Defined in [packages/hooks/api.ts:634](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L634)*
38
+
39
+ **`memberof`** InlineResponse2003
40
+
41
+ ___
42
+
43
+ ### `Optional` meta
44
+
45
+ • **meta**? : *[Metadata](metadata.md)*
46
+
47
+ *Defined in [packages/hooks/api.ts:628](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L628)*
48
+
49
+ **`memberof`** InlineResponse2003
@@ -0,0 +1,27 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse2004](inlineresponse2004.md)
2
+
3
+ # Interface: InlineResponse2004
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse2004
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse2004**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [data](inlineresponse2004.md#optional-data)
18
+
19
+ ## Properties
20
+
21
+ ### `Optional` data
22
+
23
+ • **data**? : *[InlineResponse2004Data](inlineresponse2004data.md)*
24
+
25
+ *Defined in [packages/hooks/api.ts:647](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L647)*
26
+
27
+ **`memberof`** InlineResponse2004
@@ -0,0 +1,60 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse2004Data](inlineresponse2004data.md)
2
+
3
+ # Interface: InlineResponse2004Data
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse2004Data
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse2004Data**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [attributes](inlineresponse2004data.md#optional-attributes)
18
+ * [id](inlineresponse2004data.md#optional-id)
19
+ * [relationships](inlineresponse2004data.md#optional-relationships)
20
+ * [type](inlineresponse2004data.md#optional-type)
21
+
22
+ ## Properties
23
+
24
+ ### `Optional` attributes
25
+
26
+ • **attributes**? : *[InlineResponse2004DataAttributes](inlineresponse2004dataattributes.md)*
27
+
28
+ *Defined in [packages/hooks/api.ts:672](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L672)*
29
+
30
+ **`memberof`** InlineResponse2004Data
31
+
32
+ ___
33
+
34
+ ### `Optional` id
35
+
36
+ • **id**? : *string*
37
+
38
+ *Defined in [packages/hooks/api.ts:660](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L660)*
39
+
40
+ **`memberof`** InlineResponse2004Data
41
+
42
+ ___
43
+
44
+ ### `Optional` relationships
45
+
46
+ • **relationships**? : *[InlineResponse2004DataRelationships](inlineresponse2004datarelationships.md)*
47
+
48
+ *Defined in [packages/hooks/api.ts:678](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L678)*
49
+
50
+ **`memberof`** InlineResponse2004Data
51
+
52
+ ___
53
+
54
+ ### `Optional` type
55
+
56
+ • **type**? : *[InlineResponse2004DataTypeEnum](../enums/inlineresponse2004datatypeenum.md)*
57
+
58
+ *Defined in [packages/hooks/api.ts:666](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L666)*
59
+
60
+ **`memberof`** InlineResponse2004Data
@@ -0,0 +1,27 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse2004DataAttributes](inlineresponse2004dataattributes.md)
2
+
3
+ # Interface: InlineResponse2004DataAttributes
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse2004DataAttributes
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse2004DataAttributes**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [enabled](inlineresponse2004dataattributes.md#optional-enabled)
18
+
19
+ ## Properties
20
+
21
+ ### `Optional` enabled
22
+
23
+ • **enabled**? : *boolean*
24
+
25
+ *Defined in [packages/hooks/api.ts:700](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L700)*
26
+
27
+ **`memberof`** InlineResponse2004DataAttributes
@@ -0,0 +1,60 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse2004DataRelationships](inlineresponse2004datarelationships.md)
2
+
3
+ # Interface: InlineResponse2004DataRelationships
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse2004DataRelationships
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse2004DataRelationships**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [apps](inlineresponse2004datarelationships.md#optional-apps)
18
+ * [endpoint](inlineresponse2004datarelationships.md#optional-endpoint)
19
+ * [event_types](inlineresponse2004datarelationships.md#optional-event_types)
20
+ * [levels](inlineresponse2004datarelationships.md#optional-levels)
21
+
22
+ ## Properties
23
+
24
+ ### `Optional` apps
25
+
26
+ • **apps**? : *[Relationships](relationships.md)*
27
+
28
+ *Defined in [packages/hooks/api.ts:713](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L713)*
29
+
30
+ **`memberof`** InlineResponse2004DataRelationships
31
+
32
+ ___
33
+
34
+ ### `Optional` endpoint
35
+
36
+ • **endpoint**? : *[Relationship](relationship.md)*
37
+
38
+ *Defined in [packages/hooks/api.ts:731](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L731)*
39
+
40
+ **`memberof`** InlineResponse2004DataRelationships
41
+
42
+ ___
43
+
44
+ ### `Optional` event_types
45
+
46
+ • **event_types**? : *[Relationships](relationships.md)*
47
+
48
+ *Defined in [packages/hooks/api.ts:719](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L719)*
49
+
50
+ **`memberof`** InlineResponse2004DataRelationships
51
+
52
+ ___
53
+
54
+ ### `Optional` levels
55
+
56
+ • **levels**? : *[Relationships](relationships.md)*
57
+
58
+ *Defined in [packages/hooks/api.ts:725](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L725)*
59
+
60
+ **`memberof`** InlineResponse2004DataRelationships
@@ -0,0 +1,27 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [InlineResponse201](inlineresponse201.md)
2
+
3
+ # Interface: InlineResponse201
4
+
5
+ **`export`**
6
+
7
+ **`interface`** InlineResponse201
8
+
9
+ ## Hierarchy
10
+
11
+ * **InlineResponse201**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [data](inlineresponse201.md#optional-data)
18
+
19
+ ## Properties
20
+
21
+ ### `Optional` data
22
+
23
+ • **data**? : *[Endpoint](endpoint.md)*
24
+
25
+ *Defined in [packages/hooks/api.ts:744](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L744)*
26
+
27
+ **`memberof`** InlineResponse201
@@ -0,0 +1,55 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [Level](level.md)
2
+
3
+ # Interface: Level
4
+
5
+ Level record properties
6
+
7
+ **`export`**
8
+
9
+ **`interface`** Level
10
+
11
+ ## Hierarchy
12
+
13
+ * **Level**
14
+
15
+ ## Index
16
+
17
+ ### Properties
18
+
19
+ * [attributes](level.md#optional-attributes)
20
+ * [id](level.md#optional-id)
21
+ * [type](level.md#optional-type)
22
+
23
+ ## Properties
24
+
25
+ ### `Optional` attributes
26
+
27
+ • **attributes**? : *[LevelAttributes](levelattributes.md)*
28
+
29
+ *Defined in [packages/hooks/api.ts:769](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L769)*
30
+
31
+ **`memberof`** Level
32
+
33
+ ___
34
+
35
+ ### `Optional` id
36
+
37
+ • **id**? : *string*
38
+
39
+ *Defined in [packages/hooks/api.ts:757](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L757)*
40
+
41
+ Identifier of the level record
42
+
43
+ **`memberof`** Level
44
+
45
+ ___
46
+
47
+ ### `Optional` type
48
+
49
+ • **type**? : *[LevelTypeEnum](../enums/leveltypeenum.md)*
50
+
51
+ *Defined in [packages/hooks/api.ts:763](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L763)*
52
+
53
+ Type of the returned record
54
+
55
+ **`memberof`** Level
@@ -0,0 +1,29 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) › [Globals](../globals.md) › [LevelAttributes](levelattributes.md)
2
+
3
+ # Interface: LevelAttributes
4
+
5
+ **`export`**
6
+
7
+ **`interface`** LevelAttributes
8
+
9
+ ## Hierarchy
10
+
11
+ * **LevelAttributes**
12
+
13
+ ## Index
14
+
15
+ ### Properties
16
+
17
+ * [title](levelattributes.md#optional-title)
18
+
19
+ ## Properties
20
+
21
+ ### `Optional` title
22
+
23
+ • **title**? : *string*
24
+
25
+ *Defined in [packages/hooks/api.ts:791](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L791)*
26
+
27
+ Title of the level, shown to the user when configuring filters
28
+
29
+ **`memberof`** LevelAttributes