@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,149 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / BehaviorGroup
2
+
3
+ # Interface: BehaviorGroup
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ BehaviorGroup
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [actions](BehaviorGroup.md#actions)
16
+ - [behaviors](BehaviorGroup.md#behaviors)
17
+ - [bundle](BehaviorGroup.md#bundle)
18
+ - [bundle\_id](BehaviorGroup.md#bundle_id)
19
+ - [created](BehaviorGroup.md#created)
20
+ - [default\_behavior](BehaviorGroup.md#default_behavior)
21
+ - [display\_name](BehaviorGroup.md#display_name)
22
+ - [id](BehaviorGroup.md#id)
23
+ - [updated](BehaviorGroup.md#updated)
24
+
25
+ ## Properties
26
+
27
+ ### actions
28
+
29
+ • `Optional` **actions**: [`BehaviorGroupAction`](BehaviorGroupAction.md)[]
30
+
31
+ **`Memberof`**
32
+
33
+ BehaviorGroup
34
+
35
+ #### Defined in
36
+
37
+ [packages/notifications/types/index.ts:280](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L280)
38
+
39
+ ___
40
+
41
+ ### behaviors
42
+
43
+ • `Optional` **behaviors**: `Set`<[`EventTypeBehavior`](EventTypeBehavior.md)\>
44
+
45
+ **`Memberof`**
46
+
47
+ BehaviorGroup
48
+
49
+ #### Defined in
50
+
51
+ [packages/notifications/types/index.ts:286](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L286)
52
+
53
+ ___
54
+
55
+ ### bundle
56
+
57
+ • `Optional` **bundle**: [`Bundle`](Bundle.md)
58
+
59
+ **`Memberof`**
60
+
61
+ BehaviorGroup
62
+
63
+ #### Defined in
64
+
65
+ [packages/notifications/types/index.ts:274](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L274)
66
+
67
+ ___
68
+
69
+ ### bundle\_id
70
+
71
+ • **bundle\_id**: `string`
72
+
73
+ **`Memberof`**
74
+
75
+ BehaviorGroup
76
+
77
+ #### Defined in
78
+
79
+ [packages/notifications/types/index.ts:268](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L268)
80
+
81
+ ___
82
+
83
+ ### created
84
+
85
+ • `Optional` **created**: `string`
86
+
87
+ **`Memberof`**
88
+
89
+ BehaviorGroup
90
+
91
+ #### Defined in
92
+
93
+ [packages/notifications/types/index.ts:244](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L244)
94
+
95
+ ___
96
+
97
+ ### default\_behavior
98
+
99
+ • `Optional` **default\_behavior**: `boolean`
100
+
101
+ **`Memberof`**
102
+
103
+ BehaviorGroup
104
+
105
+ #### Defined in
106
+
107
+ [packages/notifications/types/index.ts:292](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L292)
108
+
109
+ ___
110
+
111
+ ### display\_name
112
+
113
+ • **display\_name**: `string`
114
+
115
+ **`Memberof`**
116
+
117
+ BehaviorGroup
118
+
119
+ #### Defined in
120
+
121
+ [packages/notifications/types/index.ts:262](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L262)
122
+
123
+ ___
124
+
125
+ ### id
126
+
127
+ • `Optional` **id**: `string`
128
+
129
+ **`Memberof`**
130
+
131
+ BehaviorGroup
132
+
133
+ #### Defined in
134
+
135
+ [packages/notifications/types/index.ts:256](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L256)
136
+
137
+ ___
138
+
139
+ ### updated
140
+
141
+ • `Optional` **updated**: `string`
142
+
143
+ **`Memberof`**
144
+
145
+ BehaviorGroup
146
+
147
+ #### Defined in
148
+
149
+ [packages/notifications/types/index.ts:250](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L250)
@@ -0,0 +1,59 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / BehaviorGroupAction
2
+
3
+ # Interface: BehaviorGroupAction
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ BehaviorGroupAction
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [created](BehaviorGroupAction.md#created)
16
+ - [endpoint](BehaviorGroupAction.md#endpoint)
17
+ - [id](BehaviorGroupAction.md#id)
18
+
19
+ ## Properties
20
+
21
+ ### created
22
+
23
+ • `Optional` **created**: `string`
24
+
25
+ **`Memberof`**
26
+
27
+ BehaviorGroupAction
28
+
29
+ #### Defined in
30
+
31
+ [packages/notifications/types/index.ts:305](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L305)
32
+
33
+ ___
34
+
35
+ ### endpoint
36
+
37
+ • `Optional` **endpoint**: [`Endpoint`](Endpoint.md)
38
+
39
+ **`Memberof`**
40
+
41
+ BehaviorGroupAction
42
+
43
+ #### Defined in
44
+
45
+ [packages/notifications/types/index.ts:317](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L317)
46
+
47
+ ___
48
+
49
+ ### id
50
+
51
+ • `Optional` **id**: [`BehaviorGroupActionId`](BehaviorGroupActionId.md)
52
+
53
+ **`Memberof`**
54
+
55
+ BehaviorGroupAction
56
+
57
+ #### Defined in
58
+
59
+ [packages/notifications/types/index.ts:311](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L311)
@@ -0,0 +1,44 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / BehaviorGroupActionId
2
+
3
+ # Interface: BehaviorGroupActionId
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ BehaviorGroupActionId
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [behaviorGroupId](BehaviorGroupActionId.md#behaviorgroupid)
16
+ - [endpointId](BehaviorGroupActionId.md#endpointid)
17
+
18
+ ## Properties
19
+
20
+ ### behaviorGroupId
21
+
22
+ • **behaviorGroupId**: `string`
23
+
24
+ **`Memberof`**
25
+
26
+ BehaviorGroupActionId
27
+
28
+ #### Defined in
29
+
30
+ [packages/notifications/types/index.ts:330](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L330)
31
+
32
+ ___
33
+
34
+ ### endpointId
35
+
36
+ • **endpointId**: `string`
37
+
38
+ **`Memberof`**
39
+
40
+ BehaviorGroupActionId
41
+
42
+ #### Defined in
43
+
44
+ [packages/notifications/types/index.ts:336](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L336)
@@ -0,0 +1,89 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / Bundle
2
+
3
+ # Interface: Bundle
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ Bundle
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [created](Bundle.md#created)
16
+ - [display\_name](Bundle.md#display_name)
17
+ - [id](Bundle.md#id)
18
+ - [name](Bundle.md#name)
19
+ - [updated](Bundle.md#updated)
20
+
21
+ ## Properties
22
+
23
+ ### created
24
+
25
+ • `Optional` **created**: `string`
26
+
27
+ **`Memberof`**
28
+
29
+ Bundle
30
+
31
+ #### Defined in
32
+
33
+ [packages/notifications/types/index.ts:349](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L349)
34
+
35
+ ___
36
+
37
+ ### display\_name
38
+
39
+ • **display\_name**: `string`
40
+
41
+ **`Memberof`**
42
+
43
+ Bundle
44
+
45
+ #### Defined in
46
+
47
+ [packages/notifications/types/index.ts:373](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L373)
48
+
49
+ ___
50
+
51
+ ### id
52
+
53
+ • `Optional` **id**: `string`
54
+
55
+ **`Memberof`**
56
+
57
+ Bundle
58
+
59
+ #### Defined in
60
+
61
+ [packages/notifications/types/index.ts:361](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L361)
62
+
63
+ ___
64
+
65
+ ### name
66
+
67
+ • **name**: `string`
68
+
69
+ **`Memberof`**
70
+
71
+ Bundle
72
+
73
+ #### Defined in
74
+
75
+ [packages/notifications/types/index.ts:367](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L367)
76
+
77
+ ___
78
+
79
+ ### updated
80
+
81
+ • `Optional` **updated**: `string`
82
+
83
+ **`Memberof`**
84
+
85
+ Bundle
86
+
87
+ #### Defined in
88
+
89
+ [packages/notifications/types/index.ts:355](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L355)
@@ -0,0 +1,33 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / BundleSettingsValue
2
+
3
+ # Interface: BundleSettingsValue
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ BundleSettingsValue
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [applications](BundleSettingsValue.md#applications)
16
+
17
+ ## Properties
18
+
19
+ ### applications
20
+
21
+ • `Optional` **applications**: `Object`
22
+
23
+ **`Memberof`**
24
+
25
+ BundleSettingsValue
26
+
27
+ #### Index signature
28
+
29
+ ▪ [key: `string`]: [`ApplicationSettingsValue`](ApplicationSettingsValue.md)
30
+
31
+ #### Defined in
32
+
33
+ [packages/notifications/types/index.ts:386](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L386)
@@ -0,0 +1,33 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / BundleSettingsValue1
2
+
3
+ # Interface: BundleSettingsValue1
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ BundleSettingsValue1
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [applications](BundleSettingsValue1.md#applications)
16
+
17
+ ## Properties
18
+
19
+ ### applications
20
+
21
+ • `Optional` **applications**: `Object`
22
+
23
+ **`Memberof`**
24
+
25
+ BundleSettingsValue1
26
+
27
+ #### Index signature
28
+
29
+ ▪ [key: `string`]: [`ApplicationSettingsValue1`](ApplicationSettingsValue1.md)
30
+
31
+ #### Defined in
32
+
33
+ [packages/notifications/types/index.ts:399](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L399)
@@ -0,0 +1,93 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / CamelProperties
2
+
3
+ # Interface: CamelProperties
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ CamelProperties
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [basic\_authentication](CamelProperties.md#basic_authentication)
16
+ - [disable\_ssl\_verification](CamelProperties.md#disable_ssl_verification)
17
+ - [extras](CamelProperties.md#extras)
18
+ - [secret\_token](CamelProperties.md#secret_token)
19
+ - [url](CamelProperties.md#url)
20
+
21
+ ## Properties
22
+
23
+ ### basic\_authentication
24
+
25
+ • `Optional` **basic\_authentication**: [`BasicAuthentication`](BasicAuthentication.md)
26
+
27
+ **`Memberof`**
28
+
29
+ CamelProperties
30
+
31
+ #### Defined in
32
+
33
+ [packages/notifications/types/index.ts:430](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L430)
34
+
35
+ ___
36
+
37
+ ### disable\_ssl\_verification
38
+
39
+ • **disable\_ssl\_verification**: `boolean`
40
+
41
+ **`Memberof`**
42
+
43
+ CamelProperties
44
+
45
+ #### Defined in
46
+
47
+ [packages/notifications/types/index.ts:418](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L418)
48
+
49
+ ___
50
+
51
+ ### extras
52
+
53
+ • `Optional` **extras**: `Object`
54
+
55
+ **`Memberof`**
56
+
57
+ CamelProperties
58
+
59
+ #### Index signature
60
+
61
+ ▪ [key: `string`]: `string`
62
+
63
+ #### Defined in
64
+
65
+ [packages/notifications/types/index.ts:436](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L436)
66
+
67
+ ___
68
+
69
+ ### secret\_token
70
+
71
+ • `Optional` **secret\_token**: `string`
72
+
73
+ **`Memberof`**
74
+
75
+ CamelProperties
76
+
77
+ #### Defined in
78
+
79
+ [packages/notifications/types/index.ts:424](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L424)
80
+
81
+ ___
82
+
83
+ ### url
84
+
85
+ • **url**: `string`
86
+
87
+ **`Memberof`**
88
+
89
+ CamelProperties
90
+
91
+ #### Defined in
92
+
93
+ [packages/notifications/types/index.ts:412](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L412)
@@ -0,0 +1,89 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / ConfigurationParameters
2
+
3
+ # Interface: ConfigurationParameters
4
+
5
+ ## Table of contents
6
+
7
+ ### Properties
8
+
9
+ - [accessToken](ConfigurationParameters.md#accesstoken)
10
+ - [apiKey](ConfigurationParameters.md#apikey)
11
+ - [baseOptions](ConfigurationParameters.md#baseoptions)
12
+ - [basePath](ConfigurationParameters.md#basepath)
13
+ - [formDataCtor](ConfigurationParameters.md#formdatactor)
14
+ - [password](ConfigurationParameters.md#password)
15
+ - [username](ConfigurationParameters.md#username)
16
+
17
+ ## Properties
18
+
19
+ ### accessToken
20
+
21
+ • `Optional` **accessToken**: `string` \| `Promise`<`string`\> \| (`name?`: `string`, `scopes?`: `string`[]) => `string` \| (`name?`: `string`, `scopes?`: `string`[]) => `Promise`<`string`\>
22
+
23
+ #### Defined in
24
+
25
+ [packages/notifications/utils/configuration.ts:8](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/configuration.ts#L8)
26
+
27
+ ___
28
+
29
+ ### apiKey
30
+
31
+ • `Optional` **apiKey**: `string` \| `Promise`<`string`\> \| (`name`: `string`) => `string` \| (`name`: `string`) => `Promise`<`string`\>
32
+
33
+ #### Defined in
34
+
35
+ [packages/notifications/utils/configuration.ts:5](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/configuration.ts#L5)
36
+
37
+ ___
38
+
39
+ ### baseOptions
40
+
41
+ • `Optional` **baseOptions**: `any`
42
+
43
+ #### Defined in
44
+
45
+ [packages/notifications/utils/configuration.ts:10](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/configuration.ts#L10)
46
+
47
+ ___
48
+
49
+ ### basePath
50
+
51
+ • `Optional` **basePath**: `string`
52
+
53
+ #### Defined in
54
+
55
+ [packages/notifications/utils/configuration.ts:9](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/configuration.ts#L9)
56
+
57
+ ___
58
+
59
+ ### formDataCtor
60
+
61
+ • `Optional` **formDataCtor**: () => `any`
62
+
63
+ #### Type declaration
64
+
65
+ • **new ConfigurationParameters**()
66
+
67
+ #### Defined in
68
+
69
+ [packages/notifications/utils/configuration.ts:11](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/configuration.ts#L11)
70
+
71
+ ___
72
+
73
+ ### password
74
+
75
+ • `Optional` **password**: `string`
76
+
77
+ #### Defined in
78
+
79
+ [packages/notifications/utils/configuration.ts:7](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/configuration.ts#L7)
80
+
81
+ ___
82
+
83
+ ### username
84
+
85
+ • `Optional` **username**: `string`
86
+
87
+ #### Defined in
88
+
89
+ [packages/notifications/utils/configuration.ts:6](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/utils/configuration.ts#L6)
@@ -0,0 +1,104 @@
1
+ [@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / CreateBehaviorGroupRequest
2
+
3
+ # Interface: CreateBehaviorGroupRequest
4
+
5
+ **`Export`**
6
+
7
+ **`Interface`**
8
+
9
+ CreateBehaviorGroupRequest
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [bundle\_id](CreateBehaviorGroupRequest.md#bundle_id)
16
+ - [bundle\_name](CreateBehaviorGroupRequest.md#bundle_name)
17
+ - [bundle\_uuid\_or\_bundle\_name\_valid](CreateBehaviorGroupRequest.md#bundle_uuid_or_bundle_name_valid)
18
+ - [display\_name](CreateBehaviorGroupRequest.md#display_name)
19
+ - [endpoint\_ids](CreateBehaviorGroupRequest.md#endpoint_ids)
20
+ - [event\_type\_ids](CreateBehaviorGroupRequest.md#event_type_ids)
21
+
22
+ ## Properties
23
+
24
+ ### bundle\_id
25
+
26
+ • `Optional` **bundle\_id**: `string`
27
+
28
+ **`Memberof`**
29
+
30
+ CreateBehaviorGroupRequest
31
+
32
+ #### Defined in
33
+
34
+ [packages/notifications/types/index.ts:449](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L449)
35
+
36
+ ___
37
+
38
+ ### bundle\_name
39
+
40
+ • `Optional` **bundle\_name**: `string`
41
+
42
+ **`Memberof`**
43
+
44
+ CreateBehaviorGroupRequest
45
+
46
+ #### Defined in
47
+
48
+ [packages/notifications/types/index.ts:455](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L455)
49
+
50
+ ___
51
+
52
+ ### bundle\_uuid\_or\_bundle\_name\_valid
53
+
54
+ • `Optional` **bundle\_uuid\_or\_bundle\_name\_valid**: `boolean`
55
+
56
+ **`Memberof`**
57
+
58
+ CreateBehaviorGroupRequest
59
+
60
+ #### Defined in
61
+
62
+ [packages/notifications/types/index.ts:479](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L479)
63
+
64
+ ___
65
+
66
+ ### display\_name
67
+
68
+ • **display\_name**: `string`
69
+
70
+ **`Memberof`**
71
+
72
+ CreateBehaviorGroupRequest
73
+
74
+ #### Defined in
75
+
76
+ [packages/notifications/types/index.ts:461](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L461)
77
+
78
+ ___
79
+
80
+ ### endpoint\_ids
81
+
82
+ • `Optional` **endpoint\_ids**: `string`[]
83
+
84
+ **`Memberof`**
85
+
86
+ CreateBehaviorGroupRequest
87
+
88
+ #### Defined in
89
+
90
+ [packages/notifications/types/index.ts:467](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L467)
91
+
92
+ ___
93
+
94
+ ### event\_type\_ids
95
+
96
+ • `Optional` **event\_type\_ids**: `Set`<`string`\>
97
+
98
+ **`Memberof`**
99
+
100
+ CreateBehaviorGroupRequest
101
+
102
+ #### Defined in
103
+
104
+ [packages/notifications/types/index.ts:473](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L473)