@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
@@ -0,0 +1,65 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / NotificationStatus
2
+
3
+ # Enumeration: NotificationStatus
4
+
5
+ **`Export`**
6
+
7
+ ## Table of contents
8
+
9
+ ### Enumeration Members
10
+
11
+ - [FailedExternal](NotificationStatus.md#failedexternal)
12
+ - [FailedInternal](NotificationStatus.md#failedinternal)
13
+ - [Processing](NotificationStatus.md#processing)
14
+ - [Sent](NotificationStatus.md#sent)
15
+ - [Success](NotificationStatus.md#success)
16
+
17
+ ## Enumeration Members
18
+
19
+ ### FailedExternal
20
+
21
+ • **FailedExternal** = ``"FAILED_EXTERNAL"``
22
+
23
+ #### Defined in
24
+
25
+ [packages/notifications/types/index.ts:1257](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1257)
26
+
27
+ ___
28
+
29
+ ### FailedInternal
30
+
31
+ • **FailedInternal** = ``"FAILED_INTERNAL"``
32
+
33
+ #### Defined in
34
+
35
+ [packages/notifications/types/index.ts:1256](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1256)
36
+
37
+ ___
38
+
39
+ ### Processing
40
+
41
+ • **Processing** = ``"PROCESSING"``
42
+
43
+ #### Defined in
44
+
45
+ [packages/notifications/types/index.ts:1258](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1258)
46
+
47
+ ___
48
+
49
+ ### Sent
50
+
51
+ • **Sent** = ``"SENT"``
52
+
53
+ #### Defined in
54
+
55
+ [packages/notifications/types/index.ts:1259](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1259)
56
+
57
+ ___
58
+
59
+ ### Success
60
+
61
+ • **Success** = ``"SUCCESS"``
62
+
63
+ #### Defined in
64
+
65
+ [packages/notifications/types/index.ts:1260](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1260)
@@ -0,0 +1,32 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / Status
2
+
3
+ # Enumeration: Status
4
+
5
+ **`Export`**
6
+
7
+ ## Table of contents
8
+
9
+ ### Enumeration Members
10
+
11
+ - [Maintenance](Status.md#maintenance)
12
+ - [Up](Status.md#up)
13
+
14
+ ## Enumeration Members
15
+
16
+ ### Maintenance
17
+
18
+ • **Maintenance** = ``"MAINTENANCE"``
19
+
20
+ #### Defined in
21
+
22
+ [packages/notifications/types/index.ts:1472](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1472)
23
+
24
+ ___
25
+
26
+ ### Up
27
+
28
+ • **Up** = ``"UP"``
29
+
30
+ #### Defined in
31
+
32
+ [packages/notifications/types/index.ts:1471](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1471)
@@ -0,0 +1,44 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / AddAccessRequest
2
+
3
+ # Interface: AddAccessRequest
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ AddAccessRequest
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [application\_id](AddAccessRequest.md#application_id)
16
+ - [role](AddAccessRequest.md#role)
17
+
18
+ ## Properties
19
+
20
+ ### application\_id
21
+
22
+ • `Optional` **application\_id**: `string`
23
+
24
+ **`Memberof`**
25
+
26
+ AddAccessRequest
27
+
28
+ #### Defined in
29
+
30
+ [packages/notifications/types/index.ts:18](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L18)
31
+
32
+ ___
33
+
34
+ ### role
35
+
36
+ • `Optional` **role**: `string`
37
+
38
+ **`Memberof`**
39
+
40
+ AddAccessRequest
41
+
42
+ #### Defined in
43
+
44
+ [packages/notifications/types/index.ts:12](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L12)
@@ -0,0 +1,74 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / AddApplicationRequest
2
+
3
+ # Interface: AddApplicationRequest
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ AddApplicationRequest
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [bundle\_id](AddApplicationRequest.md#bundle_id)
16
+ - [display\_name](AddApplicationRequest.md#display_name)
17
+ - [name](AddApplicationRequest.md#name)
18
+ - [owner\_role](AddApplicationRequest.md#owner_role)
19
+
20
+ ## Properties
21
+
22
+ ### bundle\_id
23
+
24
+ • **bundle\_id**: `string`
25
+
26
+ **`Memberof`**
27
+
28
+ AddApplicationRequest
29
+
30
+ #### Defined in
31
+
32
+ [packages/notifications/types/index.ts:43](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L43)
33
+
34
+ ___
35
+
36
+ ### display\_name
37
+
38
+ • **display\_name**: `string`
39
+
40
+ **`Memberof`**
41
+
42
+ AddApplicationRequest
43
+
44
+ #### Defined in
45
+
46
+ [packages/notifications/types/index.ts:37](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L37)
47
+
48
+ ___
49
+
50
+ ### name
51
+
52
+ • **name**: `string`
53
+
54
+ **`Memberof`**
55
+
56
+ AddApplicationRequest
57
+
58
+ #### Defined in
59
+
60
+ [packages/notifications/types/index.ts:31](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L31)
61
+
62
+ ___
63
+
64
+ ### owner\_role
65
+
66
+ • `Optional` **owner\_role**: `string`
67
+
68
+ **`Memberof`**
69
+
70
+ AddApplicationRequest
71
+
72
+ #### Defined in
73
+
74
+ [packages/notifications/types/index.ts:49](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L49)
@@ -0,0 +1,164 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / AggregationEmailTemplate
2
+
3
+ # Interface: AggregationEmailTemplate
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ AggregationEmailTemplate
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [application](AggregationEmailTemplate.md#application)
16
+ - [application\_id](AggregationEmailTemplate.md#application_id)
17
+ - [body\_template](AggregationEmailTemplate.md#body_template)
18
+ - [body\_template\_id](AggregationEmailTemplate.md#body_template_id)
19
+ - [created](AggregationEmailTemplate.md#created)
20
+ - [id](AggregationEmailTemplate.md#id)
21
+ - [subject\_template](AggregationEmailTemplate.md#subject_template)
22
+ - [subject\_template\_id](AggregationEmailTemplate.md#subject_template_id)
23
+ - [subscription\_type](AggregationEmailTemplate.md#subscription_type)
24
+ - [updated](AggregationEmailTemplate.md#updated)
25
+
26
+ ## Properties
27
+
28
+ ### application
29
+
30
+ • `Optional` **application**: [`Application`](Application.md)
31
+
32
+ **`Memberof`**
33
+
34
+ AggregationEmailTemplate
35
+
36
+ #### Defined in
37
+
38
+ [packages/notifications/types/index.ts:80](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L80)
39
+
40
+ ___
41
+
42
+ ### application\_id
43
+
44
+ • `Optional` **application\_id**: `string`
45
+
46
+ **`Memberof`**
47
+
48
+ AggregationEmailTemplate
49
+
50
+ #### Defined in
51
+
52
+ [packages/notifications/types/index.ts:86](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L86)
53
+
54
+ ___
55
+
56
+ ### body\_template
57
+
58
+ • `Optional` **body\_template**: [`Template`](Template.md)
59
+
60
+ **`Memberof`**
61
+
62
+ AggregationEmailTemplate
63
+
64
+ #### Defined in
65
+
66
+ [packages/notifications/types/index.ts:110](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L110)
67
+
68
+ ___
69
+
70
+ ### body\_template\_id
71
+
72
+ • **body\_template\_id**: `string`
73
+
74
+ **`Memberof`**
75
+
76
+ AggregationEmailTemplate
77
+
78
+ #### Defined in
79
+
80
+ [packages/notifications/types/index.ts:116](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L116)
81
+
82
+ ___
83
+
84
+ ### created
85
+
86
+ • `Optional` **created**: `string`
87
+
88
+ **`Memberof`**
89
+
90
+ AggregationEmailTemplate
91
+
92
+ #### Defined in
93
+
94
+ [packages/notifications/types/index.ts:62](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L62)
95
+
96
+ ___
97
+
98
+ ### id
99
+
100
+ • `Optional` **id**: `string`
101
+
102
+ **`Memberof`**
103
+
104
+ AggregationEmailTemplate
105
+
106
+ #### Defined in
107
+
108
+ [packages/notifications/types/index.ts:74](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L74)
109
+
110
+ ___
111
+
112
+ ### subject\_template
113
+
114
+ • `Optional` **subject\_template**: [`Template`](Template.md)
115
+
116
+ **`Memberof`**
117
+
118
+ AggregationEmailTemplate
119
+
120
+ #### Defined in
121
+
122
+ [packages/notifications/types/index.ts:98](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L98)
123
+
124
+ ___
125
+
126
+ ### subject\_template\_id
127
+
128
+ • **subject\_template\_id**: `string`
129
+
130
+ **`Memberof`**
131
+
132
+ AggregationEmailTemplate
133
+
134
+ #### Defined in
135
+
136
+ [packages/notifications/types/index.ts:104](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L104)
137
+
138
+ ___
139
+
140
+ ### subscription\_type
141
+
142
+ • **subscription\_type**: ``"DAILY"``
143
+
144
+ **`Memberof`**
145
+
146
+ AggregationEmailTemplate
147
+
148
+ #### Defined in
149
+
150
+ [packages/notifications/types/index.ts:92](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L92)
151
+
152
+ ___
153
+
154
+ ### updated
155
+
156
+ • `Optional` **updated**: `string`
157
+
158
+ **`Memberof`**
159
+
160
+ AggregationEmailTemplate
161
+
162
+ #### Defined in
163
+
164
+ [packages/notifications/types/index.ts:68](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L68)
@@ -0,0 +1,30 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / ApiConfig
2
+
3
+ # Interface: ApiConfig
4
+
5
+ ## Table of contents
6
+
7
+ ### Properties
8
+
9
+ - [axios](ApiConfig.md#axios)
10
+ - [configuration](ApiConfig.md#configuration)
11
+
12
+ ## Properties
13
+
14
+ ### axios
15
+
16
+ • **axios**: `AxiosInstance`
17
+
18
+ #### Defined in
19
+
20
+ [packages/notifications/utils/base.ts:41](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/base.ts#L41)
21
+
22
+ ___
23
+
24
+ ### configuration
25
+
26
+ • `Optional` **configuration**: [`Configuration`](../classes/Configuration.md)
27
+
28
+ #### Defined in
29
+
30
+ [packages/notifications/utils/base.ts:42](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/base.ts#L42)
@@ -0,0 +1,104 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / Application
2
+
3
+ # Interface: Application
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ Application
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [bundle\_id](Application.md#bundle_id)
16
+ - [created](Application.md#created)
17
+ - [display\_name](Application.md#display_name)
18
+ - [id](Application.md#id)
19
+ - [name](Application.md#name)
20
+ - [updated](Application.md#updated)
21
+
22
+ ## Properties
23
+
24
+ ### bundle\_id
25
+
26
+ • **bundle\_id**: `string`
27
+
28
+ **`Memberof`**
29
+
30
+ Application
31
+
32
+ #### Defined in
33
+
34
+ [packages/notifications/types/index.ts:161](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L161)
35
+
36
+ ___
37
+
38
+ ### created
39
+
40
+ • `Optional` **created**: `string`
41
+
42
+ **`Memberof`**
43
+
44
+ Application
45
+
46
+ #### Defined in
47
+
48
+ [packages/notifications/types/index.ts:131](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L131)
49
+
50
+ ___
51
+
52
+ ### display\_name
53
+
54
+ • **display\_name**: `string`
55
+
56
+ **`Memberof`**
57
+
58
+ Application
59
+
60
+ #### Defined in
61
+
62
+ [packages/notifications/types/index.ts:155](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L155)
63
+
64
+ ___
65
+
66
+ ### id
67
+
68
+ • `Optional` **id**: `string`
69
+
70
+ **`Memberof`**
71
+
72
+ Application
73
+
74
+ #### Defined in
75
+
76
+ [packages/notifications/types/index.ts:143](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L143)
77
+
78
+ ___
79
+
80
+ ### name
81
+
82
+ • **name**: `string`
83
+
84
+ **`Memberof`**
85
+
86
+ Application
87
+
88
+ #### Defined in
89
+
90
+ [packages/notifications/types/index.ts:149](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L149)
91
+
92
+ ___
93
+
94
+ ### updated
95
+
96
+ • `Optional` **updated**: `string`
97
+
98
+ **`Memberof`**
99
+
100
+ Application
101
+
102
+ #### Defined in
103
+
104
+ [packages/notifications/types/index.ts:137](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L137)
@@ -0,0 +1,44 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / Application1
2
+
3
+ # Interface: Application1
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ Application1
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [display\_name](Application1.md#display_name)
16
+ - [id](Application1.md#id)
17
+
18
+ ## Properties
19
+
20
+ ### display\_name
21
+
22
+ • **display\_name**: `string`
23
+
24
+ **`Memberof`**
25
+
26
+ Application1
27
+
28
+ #### Defined in
29
+
30
+ [packages/notifications/types/index.ts:180](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L180)
31
+
32
+ ___
33
+
34
+ ### id
35
+
36
+ • **id**: `string`
37
+
38
+ **`Memberof`**
39
+
40
+ Application1
41
+
42
+ #### Defined in
43
+
44
+ [packages/notifications/types/index.ts:174](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L174)
@@ -0,0 +1,33 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / ApplicationSettingsValue
2
+
3
+ # Interface: ApplicationSettingsValue
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ ApplicationSettingsValue
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [eventTypes](ApplicationSettingsValue.md#eventtypes)
16
+
17
+ ## Properties
18
+
19
+ ### eventTypes
20
+
21
+ • `Optional` **eventTypes**: `Object`
22
+
23
+ **`Memberof`**
24
+
25
+ ApplicationSettingsValue
26
+
27
+ #### Index signature
28
+
29
+ ▪ [key: `string`]: [`EventTypeSettingsValue`](EventTypeSettingsValue.md)
30
+
31
+ #### Defined in
32
+
33
+ [packages/notifications/types/index.ts:193](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L193)
@@ -0,0 +1,48 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / ApplicationSettingsValue1
2
+
3
+ # Interface: ApplicationSettingsValue1
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ ApplicationSettingsValue1
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [hasForcedEmail](ApplicationSettingsValue1.md#hasforcedemail)
16
+ - [notifications](ApplicationSettingsValue1.md#notifications)
17
+
18
+ ## Properties
19
+
20
+ ### hasForcedEmail
21
+
22
+ • `Optional` **hasForcedEmail**: `boolean`
23
+
24
+ **`Memberof`**
25
+
26
+ ApplicationSettingsValue1
27
+
28
+ #### Defined in
29
+
30
+ [packages/notifications/types/index.ts:212](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L212)
31
+
32
+ ___
33
+
34
+ ### notifications
35
+
36
+ • `Optional` **notifications**: `Object`
37
+
38
+ **`Memberof`**
39
+
40
+ ApplicationSettingsValue1
41
+
42
+ #### Index signature
43
+
44
+ ▪ [key: `string`]: `boolean`
45
+
46
+ #### Defined in
47
+
48
+ [packages/notifications/types/index.ts:206](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L206)
@@ -0,0 +1,44 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / BasicAuthentication
2
+
3
+ # Interface: BasicAuthentication
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ BasicAuthentication
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [password](BasicAuthentication.md#password)
16
+ - [username](BasicAuthentication.md#username)
17
+
18
+ ## Properties
19
+
20
+ ### password
21
+
22
+ • `Optional` **password**: `string`
23
+
24
+ **`Memberof`**
25
+
26
+ BasicAuthentication
27
+
28
+ #### Defined in
29
+
30
+ [packages/notifications/types/index.ts:231](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L231)
31
+
32
+ ___
33
+
34
+ ### username
35
+
36
+ • `Optional` **username**: `string`
37
+
38
+ **`Memberof`**
39
+
40
+ BasicAuthentication
41
+
42
+ #### Defined in
43
+
44
+ [packages/notifications/types/index.ts:225](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L225)