@redhat-cloud-services/notifications-client 0.0.40 → 1.0.0

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 (194) hide show
  1. package/README.md +8 -8
  2. package/dist/EventResourceV1GetEvents/index.d.ts +111 -0
  3. package/dist/EventResourceV1GetEvents/index.js +143 -0
  4. package/dist/NotificationResourceV1AppendBehaviorGroupToEventType/index.d.ts +26 -0
  5. package/dist/NotificationResourceV1AppendBehaviorGroupToEventType/index.js +93 -0
  6. package/dist/NotificationResourceV1CreateBehaviorGroup/index.d.ts +21 -0
  7. package/dist/NotificationResourceV1CreateBehaviorGroup/index.js +93 -0
  8. package/dist/NotificationResourceV1DeleteBehaviorGroup/index.d.ts +20 -0
  9. package/dist/NotificationResourceV1DeleteBehaviorGroup/index.js +92 -0
  10. package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.d.ts +26 -0
  11. package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.js +93 -0
  12. package/dist/NotificationResourceV1FindBehaviorGroupsByBundleId/index.d.ts +20 -0
  13. package/dist/NotificationResourceV1FindBehaviorGroupsByBundleId/index.js +92 -0
  14. package/dist/NotificationResourceV1GetApplicationByNameAndBundleName/index.d.ts +26 -0
  15. package/dist/NotificationResourceV1GetApplicationByNameAndBundleName/index.js +93 -0
  16. package/dist/NotificationResourceV1GetApplicationsFacets/index.d.ts +20 -0
  17. package/dist/NotificationResourceV1GetApplicationsFacets/index.js +94 -0
  18. package/dist/NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint/index.d.ts +20 -0
  19. package/dist/NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint/index.js +92 -0
  20. package/dist/NotificationResourceV1GetBundleByName/index.d.ts +20 -0
  21. package/dist/NotificationResourceV1GetBundleByName/index.js +92 -0
  22. package/dist/NotificationResourceV1GetBundleFacets/index.d.ts +20 -0
  23. package/dist/NotificationResourceV1GetBundleFacets/index.js +94 -0
  24. package/dist/NotificationResourceV1GetEventTypes/index.d.ts +62 -0
  25. package/dist/NotificationResourceV1GetEventTypes/index.js +115 -0
  26. package/dist/NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup/index.d.ts +20 -0
  27. package/dist/NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup/index.js +92 -0
  28. package/dist/NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName/index.d.ts +32 -0
  29. package/dist/NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName/index.js +94 -0
  30. package/dist/NotificationResourceV1GetLinkedBehaviorGroups/index.d.ts +50 -0
  31. package/dist/NotificationResourceV1GetLinkedBehaviorGroups/index.js +116 -0
  32. package/dist/NotificationResourceV1UpdateBehaviorGroup/index.d.ts +27 -0
  33. package/dist/NotificationResourceV1UpdateBehaviorGroup/index.js +94 -0
  34. package/dist/NotificationResourceV1UpdateBehaviorGroupActions/index.d.ts +26 -0
  35. package/dist/NotificationResourceV1UpdateBehaviorGroupActions/index.js +94 -0
  36. package/dist/NotificationResourceV1UpdateEventTypeBehaviors/index.d.ts +26 -0
  37. package/dist/NotificationResourceV1UpdateEventTypeBehaviors/index.js +94 -0
  38. package/dist/OrgConfigResourceV1GetDailyDigestTimePreference/index.d.ts +13 -0
  39. package/dist/OrgConfigResourceV1GetDailyDigestTimePreference/index.js +90 -0
  40. package/dist/OrgConfigResourceV1SaveDailyDigestTimePreference/index.d.ts +20 -0
  41. package/dist/OrgConfigResourceV1SaveDailyDigestTimePreference/index.js +93 -0
  42. package/dist/UserConfigResourceV1GetPreferences/index.d.ts +25 -0
  43. package/dist/UserConfigResourceV1GetPreferences/index.js +92 -0
  44. package/dist/UserConfigResourceV1GetSettingsSchema/index.d.ts +19 -0
  45. package/dist/UserConfigResourceV1GetSettingsSchema/index.js +93 -0
  46. package/dist/UserConfigResourceV1SaveSettings/index.d.ts +20 -0
  47. package/dist/UserConfigResourceV1SaveSettings/index.js +92 -0
  48. package/dist/api.d.ts +2536 -759
  49. package/dist/api.js +2833 -778
  50. package/dist/base.d.ts +54 -0
  51. package/dist/base.js +80 -0
  52. package/dist/common.d.ts +65 -0
  53. package/dist/common.js +252 -0
  54. package/dist/configuration.d.ts +24 -15
  55. package/dist/configuration.js +19 -12
  56. package/dist/index.d.ts +27 -13
  57. package/dist/index.js +89 -17
  58. package/dist/types/index.d.ts +1657 -0
  59. package/dist/types/index.js +90 -0
  60. package/dist/utils/base.d.ts +84 -0
  61. package/dist/utils/base.js +251 -0
  62. package/dist/utils/common.d.ts +54 -0
  63. package/dist/utils/common.js +241 -0
  64. package/dist/utils/configuration.d.ts +72 -0
  65. package/dist/utils/configuration.js +33 -0
  66. package/dist/utils/index.d.ts +3 -0
  67. package/dist/utils/index.js +19 -0
  68. package/doc/.nojekyll +1 -0
  69. package/doc/README.md +11 -420
  70. package/doc/classes/BaseAPI.md +125 -0
  71. package/doc/classes/Configuration.md +194 -0
  72. package/doc/classes/RequiredError.md +179 -0
  73. package/doc/enums/EmailSubscriptionType.md +21 -0
  74. package/doc/enums/EndpointStatus.md +76 -0
  75. package/doc/enums/EndpointType.md +65 -0
  76. package/doc/enums/Environment.md +54 -0
  77. package/doc/enums/EventLogEntryActionStatus.md +65 -0
  78. package/doc/enums/HttpType.md +43 -0
  79. package/doc/enums/NotificationStatus.md +65 -0
  80. package/doc/enums/Status.md +32 -0
  81. package/doc/interfaces/AddAccessRequest.md +44 -0
  82. package/doc/interfaces/AddApplicationRequest.md +74 -0
  83. package/doc/interfaces/AggregationEmailTemplate.md +164 -0
  84. package/doc/interfaces/ApiConfig.md +30 -0
  85. package/doc/interfaces/Application.md +104 -0
  86. package/doc/interfaces/Application1.md +44 -0
  87. package/doc/interfaces/ApplicationSettingsValue.md +33 -0
  88. package/doc/interfaces/ApplicationSettingsValue1.md +48 -0
  89. package/doc/interfaces/BasicAuthentication.md +44 -0
  90. package/doc/interfaces/BehaviorGroup.md +149 -0
  91. package/doc/interfaces/BehaviorGroupAction.md +59 -0
  92. package/doc/interfaces/BehaviorGroupActionId.md +44 -0
  93. package/doc/interfaces/Bundle.md +89 -0
  94. package/doc/interfaces/BundleSettingsValue.md +33 -0
  95. package/doc/interfaces/BundleSettingsValue1.md +33 -0
  96. package/doc/interfaces/CamelProperties.md +93 -0
  97. package/doc/interfaces/ConfigurationParameters.md +89 -0
  98. package/doc/interfaces/CreateBehaviorGroupRequest.md +104 -0
  99. package/doc/interfaces/CreateBehaviorGroupResponse.md +104 -0
  100. package/doc/interfaces/CurrentStatus.md +59 -0
  101. package/doc/interfaces/DuplicateNameMigrationReport.md +44 -0
  102. package/doc/interfaces/Endpoint.md +179 -0
  103. package/doc/interfaces/EndpointPage.md +63 -0
  104. package/doc/interfaces/EndpointTestRequest.md +29 -0
  105. package/doc/interfaces/EventLogEntry.md +119 -0
  106. package/doc/interfaces/EventLogEntryAction.md +125 -0
  107. package/doc/interfaces/EventType.md +119 -0
  108. package/doc/interfaces/EventTypeBehavior.md +59 -0
  109. package/doc/interfaces/EventTypeBehaviorId.md +44 -0
  110. package/doc/interfaces/EventTypeSettingsValue.md +48 -0
  111. package/doc/interfaces/Facet.md +74 -0
  112. package/doc/interfaces/InstantEmailTemplate.md +149 -0
  113. package/doc/interfaces/InternalApplicationUserPermission.md +59 -0
  114. package/doc/interfaces/InternalRoleAccess.md +59 -0
  115. package/doc/interfaces/InternalUserPermissions.md +59 -0
  116. package/doc/interfaces/MessageValidationResponse.md +33 -0
  117. package/doc/interfaces/Meta.md +29 -0
  118. package/doc/interfaces/NotificationHistory.md +155 -0
  119. package/doc/interfaces/PageBehaviorGroup.md +63 -0
  120. package/doc/interfaces/PageEventLogEntry.md +63 -0
  121. package/doc/interfaces/PageEventType.md +63 -0
  122. package/doc/interfaces/PageNotificationHistory.md +63 -0
  123. package/doc/interfaces/RenderEmailTemplateRequest.md +44 -0
  124. package/doc/interfaces/RequestArgs.md +58 -0
  125. package/doc/interfaces/RequestDefaultBehaviorGroupPropertyList.md +44 -0
  126. package/doc/interfaces/RequestSystemSubscriptionProperties.md +44 -0
  127. package/doc/interfaces/ServerInfo.md +29 -0
  128. package/doc/interfaces/SettingsValues.md +33 -0
  129. package/doc/interfaces/SettingsValuesByEventType.md +33 -0
  130. package/doc/interfaces/SystemSubscriptionProperties.md +59 -0
  131. package/doc/interfaces/Template.md +104 -0
  132. package/doc/interfaces/TriggerDailyDigestRequest.md +89 -0
  133. package/doc/interfaces/UpdateBehaviorGroupRequest.md +74 -0
  134. package/doc/interfaces/UserConfigPreferences.md +44 -0
  135. package/doc/interfaces/WebhookProperties.md +89 -0
  136. package/doc/modules.md +1080 -0
  137. package/git_push.sh +57 -0
  138. package/openapitools.json +7 -0
  139. package/package.json +26 -31
  140. package/postProcess.sh +3 -11
  141. package/tsconfig-cjs.json +19 -0
  142. package/tsconfig-esm.json +21 -0
  143. package/tsconfig.json +18 -0
  144. package/doc/classes/appregistrationapi.md +0 -123
  145. package/doc/classes/appsapi.md +0 -149
  146. package/doc/classes/baseapi.md +0 -86
  147. package/doc/classes/configuration.md +0 -140
  148. package/doc/classes/endpointsapi.md +0 -255
  149. package/doc/classes/filtersapi.md +0 -124
  150. package/doc/classes/requirederror.md +0 -109
  151. package/doc/enums/app.typeenum.md +0 -28
  152. package/doc/enums/endpoint.typeenum.md +0 -28
  153. package/doc/enums/endpointattributes.lastdeliverystatusenum.md +0 -38
  154. package/doc/enums/eventtype.typeenum.md +0 -28
  155. package/doc/enums/inlineresponse2004data.typeenum.md +0 -28
  156. package/doc/enums/level.typeenum.md +0 -28
  157. package/doc/interfaces/appattributes.md +0 -54
  158. package/doc/interfaces/apprelationships.md +0 -36
  159. package/doc/interfaces/appsregisterapplication.md +0 -50
  160. package/doc/interfaces/appsregistereventtypes.md +0 -64
  161. package/doc/interfaces/appsregistereventtypeslevels.md +0 -50
  162. package/doc/interfaces/configurationparameters.md +0 -84
  163. package/doc/interfaces/endpointsendpoint.md +0 -78
  164. package/doc/interfaces/endpointsendpointfilter.md +0 -64
  165. package/doc/interfaces/endpointsidendpoint.md +0 -78
  166. package/doc/interfaces/endpointsidendpointfilter.md +0 -78
  167. package/doc/interfaces/errors.md +0 -36
  168. package/doc/interfaces/errorserrors.md +0 -120
  169. package/doc/interfaces/errorssource.md +0 -50
  170. package/doc/interfaces/eventtypeattributes.md +0 -54
  171. package/doc/interfaces/eventtyperelationships.md +0 -36
  172. package/doc/interfaces/inlineobject.md +0 -50
  173. package/doc/interfaces/inlineobject1.md +0 -36
  174. package/doc/interfaces/inlineobject2.md +0 -36
  175. package/doc/interfaces/inlineresponse200.md +0 -50
  176. package/doc/interfaces/inlineresponse2001.md +0 -36
  177. package/doc/interfaces/inlineresponse2002.md +0 -50
  178. package/doc/interfaces/inlineresponse2003.md +0 -64
  179. package/doc/interfaces/inlineresponse2004.md +0 -36
  180. package/doc/interfaces/inlineresponse2004dataattributes.md +0 -36
  181. package/doc/interfaces/inlineresponse2004datarelationships.md +0 -78
  182. package/doc/interfaces/inlineresponse201.md +0 -36
  183. package/doc/interfaces/levelattributes.md +0 -38
  184. package/doc/interfaces/links.md +0 -86
  185. package/doc/interfaces/metadata.md +0 -70
  186. package/doc/interfaces/relationship.md +0 -50
  187. package/doc/interfaces/relationships.md +0 -36
  188. package/doc/interfaces/requestargs.md +0 -42
  189. package/doc/modules/app.md +0 -82
  190. package/doc/modules/endpoint.md +0 -68
  191. package/doc/modules/endpointattributes.md +0 -118
  192. package/doc/modules/eventtype.md +0 -82
  193. package/doc/modules/inlineresponse2004data.md +0 -78
  194. package/doc/modules/level.md +0 -68
@@ -1,78 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [EndpointsIdEndpointFilter](../interfaces/endpointsidendpointfilter.md)
2
-
3
- # Interface: EndpointsIdEndpointFilter
4
-
5
- *__export__*:
6
-
7
- *__interface__*: EndpointsIdEndpointFilter
8
-
9
- ## Hierarchy
10
-
11
- **EndpointsIdEndpointFilter**
12
-
13
- ## Index
14
-
15
- ### Properties
16
-
17
- * [appIds](endpointsidendpointfilter.md#appids)
18
- * [destroy](endpointsidendpointfilter.md#destroy)
19
- * [eventTypeIds](endpointsidendpointfilter.md#eventtypeids)
20
- * [levelIds](endpointsidendpointfilter.md#levelids)
21
-
22
- ---
23
-
24
- ## Properties
25
-
26
- <a id="appids"></a>
27
-
28
- ### `<Optional>` appIds
29
-
30
- **● appIds**: *`Array`<`string`>*
31
-
32
- *Defined in [api.ts:418](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L418)*
33
-
34
- *__type__*: {Array}
35
-
36
- *__memberof__*: EndpointsIdEndpointFilter
37
-
38
- ___
39
- <a id="destroy"></a>
40
-
41
- ### `<Optional>` destroy
42
-
43
- **● destroy**: *`boolean`*
44
-
45
- *Defined in [api.ts:436](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L436)*
46
-
47
- *__type__*: {boolean}
48
-
49
- *__memberof__*: EndpointsIdEndpointFilter
50
-
51
- ___
52
- <a id="eventtypeids"></a>
53
-
54
- ### `<Optional>` eventTypeIds
55
-
56
- **● eventTypeIds**: *`Array`<`string`>*
57
-
58
- *Defined in [api.ts:424](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L424)*
59
-
60
- *__type__*: {Array}
61
-
62
- *__memberof__*: EndpointsIdEndpointFilter
63
-
64
- ___
65
- <a id="levelids"></a>
66
-
67
- ### `<Optional>` levelIds
68
-
69
- **● levelIds**: *`Array`<`string`>*
70
-
71
- *Defined in [api.ts:430](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L430)*
72
-
73
- *__type__*: {Array}
74
-
75
- *__memberof__*: EndpointsIdEndpointFilter
76
-
77
- ___
78
-
@@ -1,36 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [Errors](../interfaces/errors.md)
2
-
3
- # Interface: Errors
4
-
5
- *__export__*:
6
-
7
- *__interface__*: Errors
8
-
9
- ## Hierarchy
10
-
11
- **Errors**
12
-
13
- ## Index
14
-
15
- ### Properties
16
-
17
- * [errors](errors.md#errors-1)
18
-
19
- ---
20
-
21
- ## Properties
22
-
23
- <a id="errors-1"></a>
24
-
25
- ### `<Optional>` errors
26
-
27
- **● errors**: *`Array`<[ErrorsErrors](errorserrors.md)>*
28
-
29
- *Defined in [api.ts:450](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L450)*
30
-
31
- *__type__*: {Array}
32
-
33
- *__memberof__*: Errors
34
-
35
- ___
36
-
@@ -1,120 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [ErrorsErrors](../interfaces/errorserrors.md)
2
-
3
- # Interface: ErrorsErrors
4
-
5
- *__export__*:
6
-
7
- *__interface__*: ErrorsErrors
8
-
9
- ## Hierarchy
10
-
11
- **ErrorsErrors**
12
-
13
- ## Index
14
-
15
- ### Properties
16
-
17
- * [code](errorserrors.md#code)
18
- * [detail](errorserrors.md#detail)
19
- * [id](errorserrors.md#id)
20
- * [meta](errorserrors.md#meta)
21
- * [source](errorserrors.md#source)
22
- * [status](errorserrors.md#status)
23
- * [title](errorserrors.md#title)
24
-
25
- ---
26
-
27
- ## Properties
28
-
29
- <a id="code"></a>
30
-
31
- ### `<Optional>` code
32
-
33
- **● code**: *`string`*
34
-
35
- *Defined in [api.ts:476](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L476)*
36
-
37
- *__type__*: {string}
38
-
39
- *__memberof__*: ErrorsErrors
40
-
41
- ___
42
- <a id="detail"></a>
43
-
44
- ### `<Optional>` detail
45
-
46
- **● detail**: *`string`*
47
-
48
- *Defined in [api.ts:488](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L488)*
49
-
50
- *__type__*: {string}
51
-
52
- *__memberof__*: ErrorsErrors
53
-
54
- ___
55
- <a id="id"></a>
56
-
57
- ### `<Optional>` id
58
-
59
- **● id**: *`string`*
60
-
61
- *Defined in [api.ts:464](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L464)*
62
-
63
- *__type__*: {string}
64
-
65
- *__memberof__*: ErrorsErrors
66
-
67
- ___
68
- <a id="meta"></a>
69
-
70
- ### `<Optional>` meta
71
-
72
- **● meta**: *`any`*
73
-
74
- *Defined in [api.ts:500](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L500)*
75
-
76
- *__type__*: {any}
77
-
78
- *__memberof__*: ErrorsErrors
79
-
80
- ___
81
- <a id="source"></a>
82
-
83
- ### `<Optional>` source
84
-
85
- **● source**: *[ErrorsSource](errorssource.md)*
86
-
87
- *Defined in [api.ts:494](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L494)*
88
-
89
- *__type__*: {ErrorsSource}
90
-
91
- *__memberof__*: ErrorsErrors
92
-
93
- ___
94
- <a id="status"></a>
95
-
96
- ### `<Optional>` status
97
-
98
- **● status**: *`string`*
99
-
100
- *Defined in [api.ts:470](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L470)*
101
-
102
- *__type__*: {string}
103
-
104
- *__memberof__*: ErrorsErrors
105
-
106
- ___
107
- <a id="title"></a>
108
-
109
- ### `<Optional>` title
110
-
111
- **● title**: *`string`*
112
-
113
- *Defined in [api.ts:482](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L482)*
114
-
115
- *__type__*: {string}
116
-
117
- *__memberof__*: ErrorsErrors
118
-
119
- ___
120
-
@@ -1,50 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [ErrorsSource](../interfaces/errorssource.md)
2
-
3
- # Interface: ErrorsSource
4
-
5
- *__export__*:
6
-
7
- *__interface__*: ErrorsSource
8
-
9
- ## Hierarchy
10
-
11
- **ErrorsSource**
12
-
13
- ## Index
14
-
15
- ### Properties
16
-
17
- * [parameter](errorssource.md#parameter)
18
- * [pointer](errorssource.md#pointer)
19
-
20
- ---
21
-
22
- ## Properties
23
-
24
- <a id="parameter"></a>
25
-
26
- ### `<Optional>` parameter
27
-
28
- **● parameter**: *`string`*
29
-
30
- *Defined in [api.ts:520](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L520)*
31
-
32
- *__type__*: {string}
33
-
34
- *__memberof__*: ErrorsSource
35
-
36
- ___
37
- <a id="pointer"></a>
38
-
39
- ### `<Optional>` pointer
40
-
41
- **● pointer**: *`string`*
42
-
43
- *Defined in [api.ts:514](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L514)*
44
-
45
- *__type__*: {string}
46
-
47
- *__memberof__*: ErrorsSource
48
-
49
- ___
50
-
@@ -1,54 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [EventTypeAttributes](../interfaces/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#name)
18
- * [title](eventtypeattributes.md#title)
19
-
20
- ---
21
-
22
- ## Properties
23
-
24
- <a id="name"></a>
25
-
26
- ### `<Optional>` name
27
-
28
- **● name**: *`string`*
29
-
30
- *Defined in [api.ts:580](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L580)*
31
-
32
- Identifier of the event type, used to identify the event type in messages
33
-
34
- *__type__*: {string}
35
-
36
- *__memberof__*: EventTypeAttributes
37
-
38
- ___
39
- <a id="title"></a>
40
-
41
- ### `<Optional>` title
42
-
43
- **● title**: *`string`*
44
-
45
- *Defined in [api.ts:586](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L586)*
46
-
47
- Human readable description of the event type, shown to the user when configuring filters
48
-
49
- *__type__*: {string}
50
-
51
- *__memberof__*: EventTypeAttributes
52
-
53
- ___
54
-
@@ -1,36 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [EventTypeRelationships](../interfaces/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#levels)
18
-
19
- ---
20
-
21
- ## Properties
22
-
23
- <a id="levels"></a>
24
-
25
- ### `<Optional>` levels
26
-
27
- **● levels**: *[Relationships](relationships.md)*
28
-
29
- *Defined in [api.ts:600](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L600)*
30
-
31
- *__type__*: {Relationships}
32
-
33
- *__memberof__*: EventTypeRelationships
34
-
35
- ___
36
-
@@ -1,50 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [InlineObject](../interfaces/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#application)
18
- * [eventTypes](inlineobject.md#eventtypes)
19
-
20
- ---
21
-
22
- ## Properties
23
-
24
- <a id="application"></a>
25
-
26
- ### `<Optional>` application
27
-
28
- **● application**: *[AppsRegisterApplication](appsregisterapplication.md)*
29
-
30
- *Defined in [api.ts:614](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L614)*
31
-
32
- *__type__*: {AppsRegisterApplication}
33
-
34
- *__memberof__*: InlineObject
35
-
36
- ___
37
- <a id="eventtypes"></a>
38
-
39
- ### `<Optional>` eventTypes
40
-
41
- **● eventTypes**: *[AppsRegisterEventTypes](appsregistereventtypes.md)*
42
-
43
- *Defined in [api.ts:620](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L620)*
44
-
45
- *__type__*: {AppsRegisterEventTypes}
46
-
47
- *__memberof__*: InlineObject
48
-
49
- ___
50
-
@@ -1,36 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [InlineObject1](../interfaces/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#endpoint)
18
-
19
- ---
20
-
21
- ## Properties
22
-
23
- <a id="endpoint"></a>
24
-
25
- ### `<Optional>` endpoint
26
-
27
- **● endpoint**: *[EndpointsEndpoint](endpointsendpoint.md)*
28
-
29
- *Defined in [api.ts:634](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L634)*
30
-
31
- *__type__*: {EndpointsEndpoint}
32
-
33
- *__memberof__*: InlineObject1
34
-
35
- ___
36
-
@@ -1,36 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [InlineObject2](../interfaces/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#endpoint)
18
-
19
- ---
20
-
21
- ## Properties
22
-
23
- <a id="endpoint"></a>
24
-
25
- ### `<Optional>` endpoint
26
-
27
- **● endpoint**: *[EndpointsIdEndpoint](endpointsidendpoint.md)*
28
-
29
- *Defined in [api.ts:648](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L648)*
30
-
31
- *__type__*: {EndpointsIdEndpoint}
32
-
33
- *__memberof__*: InlineObject2
34
-
35
- ___
36
-
@@ -1,50 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [InlineResponse200](../interfaces/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#data)
18
- * [included](inlineresponse200.md#included)
19
-
20
- ---
21
-
22
- ## Properties
23
-
24
- <a id="data"></a>
25
-
26
- ### `<Optional>` data
27
-
28
- **● data**: *`Array`<[App](../modules/app.md)>*
29
-
30
- *Defined in [api.ts:662](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L662)*
31
-
32
- *__type__*: {Array}
33
-
34
- *__memberof__*: InlineResponse200
35
-
36
- ___
37
- <a id="included"></a>
38
-
39
- ### `<Optional>` included
40
-
41
- **● included**: *`Array`<`Object`>*
42
-
43
- *Defined in [api.ts:668](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L668)*
44
-
45
- *__type__*: {Array}
46
-
47
- *__memberof__*: InlineResponse200
48
-
49
- ___
50
-
@@ -1,36 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [InlineResponse2001](../interfaces/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#data)
18
-
19
- ---
20
-
21
- ## Properties
22
-
23
- <a id="data"></a>
24
-
25
- ### `<Optional>` data
26
-
27
- **● data**: *[App](../modules/app.md)*
28
-
29
- *Defined in [api.ts:682](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L682)*
30
-
31
- *__type__*: {App}
32
-
33
- *__memberof__*: InlineResponse2001
34
-
35
- ___
36
-
@@ -1,50 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [InlineResponse2002](../interfaces/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#data)
18
- * [included](inlineresponse2002.md#included)
19
-
20
- ---
21
-
22
- ## Properties
23
-
24
- <a id="data"></a>
25
-
26
- ### `<Optional>` data
27
-
28
- **● data**: *[App](../modules/app.md)*
29
-
30
- *Defined in [api.ts:696](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L696)*
31
-
32
- *__type__*: {App}
33
-
34
- *__memberof__*: InlineResponse2002
35
-
36
- ___
37
- <a id="included"></a>
38
-
39
- ### `<Optional>` included
40
-
41
- **● included**: *`Array`<`Object`>*
42
-
43
- *Defined in [api.ts:702](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L702)*
44
-
45
- *__type__*: {Array}
46
-
47
- *__memberof__*: InlineResponse2002
48
-
49
- ___
50
-
@@ -1,64 +0,0 @@
1
- [@redhat-cloud-services/notifications-client](../README.md) > [InlineResponse2003](../interfaces/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#data)
18
- * [links](inlineresponse2003.md#links)
19
- * [meta](inlineresponse2003.md#meta)
20
-
21
- ---
22
-
23
- ## Properties
24
-
25
- <a id="data"></a>
26
-
27
- ### `<Optional>` data
28
-
29
- **● data**: *`Array`<[Endpoint](../modules/endpoint.md)>*
30
-
31
- *Defined in [api.ts:716](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L716)*
32
-
33
- *__type__*: {Array}
34
-
35
- *__memberof__*: InlineResponse2003
36
-
37
- ___
38
- <a id="links"></a>
39
-
40
- ### `<Optional>` links
41
-
42
- **● links**: *[Links](links.md)*
43
-
44
- *Defined in [api.ts:728](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L728)*
45
-
46
- *__type__*: {Links}
47
-
48
- *__memberof__*: InlineResponse2003
49
-
50
- ___
51
- <a id="meta"></a>
52
-
53
- ### `<Optional>` meta
54
-
55
- **● meta**: *[Metadata](metadata.md)*
56
-
57
- *Defined in [api.ts:722](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L722)*
58
-
59
- *__type__*: {Metadata}
60
-
61
- *__memberof__*: InlineResponse2003
62
-
63
- ___
64
-