@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.
- package/README.md +8 -8
- package/dist/EventResourceV1GetEvents/index.d.ts +111 -0
- package/dist/EventResourceV1GetEvents/index.js +143 -0
- package/dist/NotificationResourceV1AppendBehaviorGroupToEventType/index.d.ts +26 -0
- package/dist/NotificationResourceV1AppendBehaviorGroupToEventType/index.js +93 -0
- package/dist/NotificationResourceV1CreateBehaviorGroup/index.d.ts +21 -0
- package/dist/NotificationResourceV1CreateBehaviorGroup/index.js +93 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroup/index.d.ts +20 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroup/index.js +92 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.d.ts +26 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.js +93 -0
- package/dist/NotificationResourceV1FindBehaviorGroupsByBundleId/index.d.ts +20 -0
- package/dist/NotificationResourceV1FindBehaviorGroupsByBundleId/index.js +92 -0
- package/dist/NotificationResourceV1GetApplicationByNameAndBundleName/index.d.ts +26 -0
- package/dist/NotificationResourceV1GetApplicationByNameAndBundleName/index.js +93 -0
- package/dist/NotificationResourceV1GetApplicationsFacets/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetApplicationsFacets/index.js +94 -0
- package/dist/NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint/index.js +92 -0
- package/dist/NotificationResourceV1GetBundleByName/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetBundleByName/index.js +92 -0
- package/dist/NotificationResourceV1GetBundleFacets/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetBundleFacets/index.js +94 -0
- package/dist/NotificationResourceV1GetEventTypes/index.d.ts +62 -0
- package/dist/NotificationResourceV1GetEventTypes/index.js +115 -0
- package/dist/NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup/index.js +92 -0
- package/dist/NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName/index.d.ts +32 -0
- package/dist/NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName/index.js +94 -0
- package/dist/NotificationResourceV1GetLinkedBehaviorGroups/index.d.ts +50 -0
- package/dist/NotificationResourceV1GetLinkedBehaviorGroups/index.js +116 -0
- package/dist/NotificationResourceV1UpdateBehaviorGroup/index.d.ts +27 -0
- package/dist/NotificationResourceV1UpdateBehaviorGroup/index.js +94 -0
- package/dist/NotificationResourceV1UpdateBehaviorGroupActions/index.d.ts +26 -0
- package/dist/NotificationResourceV1UpdateBehaviorGroupActions/index.js +94 -0
- package/dist/NotificationResourceV1UpdateEventTypeBehaviors/index.d.ts +26 -0
- package/dist/NotificationResourceV1UpdateEventTypeBehaviors/index.js +94 -0
- package/dist/OrgConfigResourceV1GetDailyDigestTimePreference/index.d.ts +13 -0
- package/dist/OrgConfigResourceV1GetDailyDigestTimePreference/index.js +90 -0
- package/dist/OrgConfigResourceV1SaveDailyDigestTimePreference/index.d.ts +20 -0
- package/dist/OrgConfigResourceV1SaveDailyDigestTimePreference/index.js +93 -0
- package/dist/UserConfigResourceV1GetPreferences/index.d.ts +25 -0
- package/dist/UserConfigResourceV1GetPreferences/index.js +92 -0
- package/dist/UserConfigResourceV1GetSettingsSchema/index.d.ts +19 -0
- package/dist/UserConfigResourceV1GetSettingsSchema/index.js +93 -0
- package/dist/UserConfigResourceV1SaveSettings/index.d.ts +20 -0
- package/dist/UserConfigResourceV1SaveSettings/index.js +92 -0
- package/dist/api.d.ts +2536 -759
- package/dist/api.js +2833 -778
- package/dist/base.d.ts +54 -0
- package/dist/base.js +80 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +252 -0
- package/dist/configuration.d.ts +24 -15
- package/dist/configuration.js +19 -12
- package/dist/index.d.ts +27 -13
- package/dist/index.js +89 -17
- package/dist/types/index.d.ts +1657 -0
- package/dist/types/index.js +90 -0
- package/dist/utils/base.d.ts +84 -0
- package/dist/utils/base.js +251 -0
- package/dist/utils/common.d.ts +54 -0
- package/dist/utils/common.js +241 -0
- package/dist/utils/configuration.d.ts +72 -0
- package/dist/utils/configuration.js +33 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +19 -0
- package/doc/.nojekyll +1 -0
- package/doc/README.md +11 -420
- package/doc/classes/BaseAPI.md +125 -0
- package/doc/classes/Configuration.md +194 -0
- package/doc/classes/RequiredError.md +179 -0
- package/doc/enums/EmailSubscriptionType.md +21 -0
- package/doc/enums/EndpointStatus.md +76 -0
- package/doc/enums/EndpointType.md +65 -0
- package/doc/enums/Environment.md +54 -0
- package/doc/enums/EventLogEntryActionStatus.md +65 -0
- package/doc/enums/HttpType.md +43 -0
- package/doc/enums/NotificationStatus.md +65 -0
- package/doc/enums/Status.md +32 -0
- package/doc/interfaces/AddAccessRequest.md +44 -0
- package/doc/interfaces/AddApplicationRequest.md +74 -0
- package/doc/interfaces/AggregationEmailTemplate.md +164 -0
- package/doc/interfaces/ApiConfig.md +30 -0
- package/doc/interfaces/Application.md +104 -0
- package/doc/interfaces/Application1.md +44 -0
- package/doc/interfaces/ApplicationSettingsValue.md +33 -0
- package/doc/interfaces/ApplicationSettingsValue1.md +48 -0
- package/doc/interfaces/BasicAuthentication.md +44 -0
- package/doc/interfaces/BehaviorGroup.md +149 -0
- package/doc/interfaces/BehaviorGroupAction.md +59 -0
- package/doc/interfaces/BehaviorGroupActionId.md +44 -0
- package/doc/interfaces/Bundle.md +89 -0
- package/doc/interfaces/BundleSettingsValue.md +33 -0
- package/doc/interfaces/BundleSettingsValue1.md +33 -0
- package/doc/interfaces/CamelProperties.md +93 -0
- package/doc/interfaces/ConfigurationParameters.md +89 -0
- package/doc/interfaces/CreateBehaviorGroupRequest.md +104 -0
- package/doc/interfaces/CreateBehaviorGroupResponse.md +104 -0
- package/doc/interfaces/CurrentStatus.md +59 -0
- package/doc/interfaces/DuplicateNameMigrationReport.md +44 -0
- package/doc/interfaces/Endpoint.md +179 -0
- package/doc/interfaces/EndpointPage.md +63 -0
- package/doc/interfaces/EndpointTestRequest.md +29 -0
- package/doc/interfaces/EventLogEntry.md +119 -0
- package/doc/interfaces/EventLogEntryAction.md +125 -0
- package/doc/interfaces/EventType.md +119 -0
- package/doc/interfaces/EventTypeBehavior.md +59 -0
- package/doc/interfaces/EventTypeBehaviorId.md +44 -0
- package/doc/interfaces/EventTypeSettingsValue.md +48 -0
- package/doc/interfaces/Facet.md +74 -0
- package/doc/interfaces/InstantEmailTemplate.md +149 -0
- package/doc/interfaces/InternalApplicationUserPermission.md +59 -0
- package/doc/interfaces/InternalRoleAccess.md +59 -0
- package/doc/interfaces/InternalUserPermissions.md +59 -0
- package/doc/interfaces/MessageValidationResponse.md +33 -0
- package/doc/interfaces/Meta.md +29 -0
- package/doc/interfaces/NotificationHistory.md +155 -0
- package/doc/interfaces/PageBehaviorGroup.md +63 -0
- package/doc/interfaces/PageEventLogEntry.md +63 -0
- package/doc/interfaces/PageEventType.md +63 -0
- package/doc/interfaces/PageNotificationHistory.md +63 -0
- package/doc/interfaces/RenderEmailTemplateRequest.md +44 -0
- package/doc/interfaces/RequestArgs.md +58 -0
- package/doc/interfaces/RequestDefaultBehaviorGroupPropertyList.md +44 -0
- package/doc/interfaces/RequestSystemSubscriptionProperties.md +44 -0
- package/doc/interfaces/ServerInfo.md +29 -0
- package/doc/interfaces/SettingsValues.md +33 -0
- package/doc/interfaces/SettingsValuesByEventType.md +33 -0
- package/doc/interfaces/SystemSubscriptionProperties.md +59 -0
- package/doc/interfaces/Template.md +104 -0
- package/doc/interfaces/TriggerDailyDigestRequest.md +89 -0
- package/doc/interfaces/UpdateBehaviorGroupRequest.md +74 -0
- package/doc/interfaces/UserConfigPreferences.md +44 -0
- package/doc/interfaces/WebhookProperties.md +89 -0
- package/doc/modules.md +1080 -0
- package/git_push.sh +57 -0
- package/openapitools.json +7 -0
- package/package.json +26 -31
- package/postProcess.sh +3 -11
- package/tsconfig-cjs.json +19 -0
- package/tsconfig-esm.json +21 -0
- package/tsconfig.json +18 -0
- package/doc/classes/appregistrationapi.md +0 -123
- package/doc/classes/appsapi.md +0 -149
- package/doc/classes/baseapi.md +0 -86
- package/doc/classes/configuration.md +0 -140
- package/doc/classes/endpointsapi.md +0 -255
- package/doc/classes/filtersapi.md +0 -124
- package/doc/classes/requirederror.md +0 -109
- package/doc/enums/app.typeenum.md +0 -28
- package/doc/enums/endpoint.typeenum.md +0 -28
- package/doc/enums/endpointattributes.lastdeliverystatusenum.md +0 -38
- package/doc/enums/eventtype.typeenum.md +0 -28
- package/doc/enums/inlineresponse2004data.typeenum.md +0 -28
- package/doc/enums/level.typeenum.md +0 -28
- package/doc/interfaces/appattributes.md +0 -54
- package/doc/interfaces/apprelationships.md +0 -36
- package/doc/interfaces/appsregisterapplication.md +0 -50
- package/doc/interfaces/appsregistereventtypes.md +0 -64
- package/doc/interfaces/appsregistereventtypeslevels.md +0 -50
- package/doc/interfaces/configurationparameters.md +0 -84
- package/doc/interfaces/endpointsendpoint.md +0 -78
- package/doc/interfaces/endpointsendpointfilter.md +0 -64
- package/doc/interfaces/endpointsidendpoint.md +0 -78
- package/doc/interfaces/endpointsidendpointfilter.md +0 -78
- package/doc/interfaces/errors.md +0 -36
- package/doc/interfaces/errorserrors.md +0 -120
- package/doc/interfaces/errorssource.md +0 -50
- package/doc/interfaces/eventtypeattributes.md +0 -54
- package/doc/interfaces/eventtyperelationships.md +0 -36
- package/doc/interfaces/inlineobject.md +0 -50
- package/doc/interfaces/inlineobject1.md +0 -36
- package/doc/interfaces/inlineobject2.md +0 -36
- package/doc/interfaces/inlineresponse200.md +0 -50
- package/doc/interfaces/inlineresponse2001.md +0 -36
- package/doc/interfaces/inlineresponse2002.md +0 -50
- package/doc/interfaces/inlineresponse2003.md +0 -64
- package/doc/interfaces/inlineresponse2004.md +0 -36
- package/doc/interfaces/inlineresponse2004dataattributes.md +0 -36
- package/doc/interfaces/inlineresponse2004datarelationships.md +0 -78
- package/doc/interfaces/inlineresponse201.md +0 -36
- package/doc/interfaces/levelattributes.md +0 -38
- package/doc/interfaces/links.md +0 -86
- package/doc/interfaces/metadata.md +0 -70
- package/doc/interfaces/relationship.md +0 -50
- package/doc/interfaces/relationships.md +0 -36
- package/doc/interfaces/requestargs.md +0 -42
- package/doc/modules/app.md +0 -82
- package/doc/modules/endpoint.md +0 -68
- package/doc/modules/endpointattributes.md +0 -118
- package/doc/modules/eventtype.md +0 -82
- package/doc/modules/inlineresponse2004data.md +0 -78
- package/doc/modules/level.md +0 -68
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / EventLogEntryAction
|
|
2
|
+
|
|
3
|
+
# Interface: EventLogEntryAction
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
EventLogEntryAction
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [details](EventLogEntryAction.md#details)
|
|
16
|
+
- [endpoint\_id](EventLogEntryAction.md#endpoint_id)
|
|
17
|
+
- [endpoint\_sub\_type](EventLogEntryAction.md#endpoint_sub_type)
|
|
18
|
+
- [endpoint\_type](EventLogEntryAction.md#endpoint_type)
|
|
19
|
+
- [id](EventLogEntryAction.md#id)
|
|
20
|
+
- [invocation\_result](EventLogEntryAction.md#invocation_result)
|
|
21
|
+
- [status](EventLogEntryAction.md#status)
|
|
22
|
+
|
|
23
|
+
## Properties
|
|
24
|
+
|
|
25
|
+
### details
|
|
26
|
+
|
|
27
|
+
• `Optional` **details**: `Object`
|
|
28
|
+
|
|
29
|
+
**`Memberof`**
|
|
30
|
+
|
|
31
|
+
EventLogEntryAction
|
|
32
|
+
|
|
33
|
+
#### Index signature
|
|
34
|
+
|
|
35
|
+
▪ [key: `string`]: `object`
|
|
36
|
+
|
|
37
|
+
#### Defined in
|
|
38
|
+
|
|
39
|
+
[packages/notifications/types/index.ts:844](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L844)
|
|
40
|
+
|
|
41
|
+
___
|
|
42
|
+
|
|
43
|
+
### endpoint\_id
|
|
44
|
+
|
|
45
|
+
• `Optional` **endpoint\_id**: `string`
|
|
46
|
+
|
|
47
|
+
**`Memberof`**
|
|
48
|
+
|
|
49
|
+
EventLogEntryAction
|
|
50
|
+
|
|
51
|
+
#### Defined in
|
|
52
|
+
|
|
53
|
+
[packages/notifications/types/index.ts:838](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L838)
|
|
54
|
+
|
|
55
|
+
___
|
|
56
|
+
|
|
57
|
+
### endpoint\_sub\_type
|
|
58
|
+
|
|
59
|
+
• `Optional` **endpoint\_sub\_type**: `string`
|
|
60
|
+
|
|
61
|
+
**`Memberof`**
|
|
62
|
+
|
|
63
|
+
EventLogEntryAction
|
|
64
|
+
|
|
65
|
+
#### Defined in
|
|
66
|
+
|
|
67
|
+
[packages/notifications/types/index.ts:819](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L819)
|
|
68
|
+
|
|
69
|
+
___
|
|
70
|
+
|
|
71
|
+
### endpoint\_type
|
|
72
|
+
|
|
73
|
+
• **endpoint\_type**: [`EndpointType`](../enums/EndpointType.md)
|
|
74
|
+
|
|
75
|
+
**`Memberof`**
|
|
76
|
+
|
|
77
|
+
EventLogEntryAction
|
|
78
|
+
|
|
79
|
+
#### Defined in
|
|
80
|
+
|
|
81
|
+
[packages/notifications/types/index.ts:813](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L813)
|
|
82
|
+
|
|
83
|
+
___
|
|
84
|
+
|
|
85
|
+
### id
|
|
86
|
+
|
|
87
|
+
• **id**: `string`
|
|
88
|
+
|
|
89
|
+
**`Memberof`**
|
|
90
|
+
|
|
91
|
+
EventLogEntryAction
|
|
92
|
+
|
|
93
|
+
#### Defined in
|
|
94
|
+
|
|
95
|
+
[packages/notifications/types/index.ts:807](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L807)
|
|
96
|
+
|
|
97
|
+
___
|
|
98
|
+
|
|
99
|
+
### invocation\_result
|
|
100
|
+
|
|
101
|
+
• **invocation\_result**: `boolean`
|
|
102
|
+
|
|
103
|
+
**`Memberof`**
|
|
104
|
+
|
|
105
|
+
EventLogEntryAction
|
|
106
|
+
|
|
107
|
+
**`Deprecated`**
|
|
108
|
+
|
|
109
|
+
#### Defined in
|
|
110
|
+
|
|
111
|
+
[packages/notifications/types/index.ts:826](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L826)
|
|
112
|
+
|
|
113
|
+
___
|
|
114
|
+
|
|
115
|
+
### status
|
|
116
|
+
|
|
117
|
+
• **status**: [`EventLogEntryActionStatus`](../enums/EventLogEntryActionStatus.md)
|
|
118
|
+
|
|
119
|
+
**`Memberof`**
|
|
120
|
+
|
|
121
|
+
EventLogEntryAction
|
|
122
|
+
|
|
123
|
+
#### Defined in
|
|
124
|
+
|
|
125
|
+
[packages/notifications/types/index.ts:832](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L832)
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / EventType
|
|
2
|
+
|
|
3
|
+
# Interface: EventType
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
EventType
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [application](EventType.md#application)
|
|
16
|
+
- [application\_id](EventType.md#application_id)
|
|
17
|
+
- [description](EventType.md#description)
|
|
18
|
+
- [display\_name](EventType.md#display_name)
|
|
19
|
+
- [fully\_qualified\_name](EventType.md#fully_qualified_name)
|
|
20
|
+
- [id](EventType.md#id)
|
|
21
|
+
- [name](EventType.md#name)
|
|
22
|
+
|
|
23
|
+
## Properties
|
|
24
|
+
|
|
25
|
+
### application
|
|
26
|
+
|
|
27
|
+
• `Optional` **application**: [`Application`](Application.md)
|
|
28
|
+
|
|
29
|
+
**`Memberof`**
|
|
30
|
+
|
|
31
|
+
EventType
|
|
32
|
+
|
|
33
|
+
#### Defined in
|
|
34
|
+
|
|
35
|
+
[packages/notifications/types/index.ts:912](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L912)
|
|
36
|
+
|
|
37
|
+
___
|
|
38
|
+
|
|
39
|
+
### application\_id
|
|
40
|
+
|
|
41
|
+
• **application\_id**: `string`
|
|
42
|
+
|
|
43
|
+
**`Memberof`**
|
|
44
|
+
|
|
45
|
+
EventType
|
|
46
|
+
|
|
47
|
+
#### Defined in
|
|
48
|
+
|
|
49
|
+
[packages/notifications/types/index.ts:906](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L906)
|
|
50
|
+
|
|
51
|
+
___
|
|
52
|
+
|
|
53
|
+
### description
|
|
54
|
+
|
|
55
|
+
• `Optional` **description**: `string`
|
|
56
|
+
|
|
57
|
+
**`Memberof`**
|
|
58
|
+
|
|
59
|
+
EventType
|
|
60
|
+
|
|
61
|
+
#### Defined in
|
|
62
|
+
|
|
63
|
+
[packages/notifications/types/index.ts:894](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L894)
|
|
64
|
+
|
|
65
|
+
___
|
|
66
|
+
|
|
67
|
+
### display\_name
|
|
68
|
+
|
|
69
|
+
• **display\_name**: `string`
|
|
70
|
+
|
|
71
|
+
**`Memberof`**
|
|
72
|
+
|
|
73
|
+
EventType
|
|
74
|
+
|
|
75
|
+
#### Defined in
|
|
76
|
+
|
|
77
|
+
[packages/notifications/types/index.ts:888](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L888)
|
|
78
|
+
|
|
79
|
+
___
|
|
80
|
+
|
|
81
|
+
### fully\_qualified\_name
|
|
82
|
+
|
|
83
|
+
• `Optional` **fully\_qualified\_name**: `string`
|
|
84
|
+
|
|
85
|
+
**`Memberof`**
|
|
86
|
+
|
|
87
|
+
EventType
|
|
88
|
+
|
|
89
|
+
#### Defined in
|
|
90
|
+
|
|
91
|
+
[packages/notifications/types/index.ts:900](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L900)
|
|
92
|
+
|
|
93
|
+
___
|
|
94
|
+
|
|
95
|
+
### id
|
|
96
|
+
|
|
97
|
+
• `Optional` **id**: `string`
|
|
98
|
+
|
|
99
|
+
**`Memberof`**
|
|
100
|
+
|
|
101
|
+
EventType
|
|
102
|
+
|
|
103
|
+
#### Defined in
|
|
104
|
+
|
|
105
|
+
[packages/notifications/types/index.ts:876](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L876)
|
|
106
|
+
|
|
107
|
+
___
|
|
108
|
+
|
|
109
|
+
### name
|
|
110
|
+
|
|
111
|
+
• **name**: `string`
|
|
112
|
+
|
|
113
|
+
**`Memberof`**
|
|
114
|
+
|
|
115
|
+
EventType
|
|
116
|
+
|
|
117
|
+
#### Defined in
|
|
118
|
+
|
|
119
|
+
[packages/notifications/types/index.ts:882](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L882)
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / EventTypeBehavior
|
|
2
|
+
|
|
3
|
+
# Interface: EventTypeBehavior
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
EventTypeBehavior
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [created](EventTypeBehavior.md#created)
|
|
16
|
+
- [event\_type](EventTypeBehavior.md#event_type)
|
|
17
|
+
- [id](EventTypeBehavior.md#id)
|
|
18
|
+
|
|
19
|
+
## Properties
|
|
20
|
+
|
|
21
|
+
### created
|
|
22
|
+
|
|
23
|
+
• `Optional` **created**: `string`
|
|
24
|
+
|
|
25
|
+
**`Memberof`**
|
|
26
|
+
|
|
27
|
+
EventTypeBehavior
|
|
28
|
+
|
|
29
|
+
#### Defined in
|
|
30
|
+
|
|
31
|
+
[packages/notifications/types/index.ts:925](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L925)
|
|
32
|
+
|
|
33
|
+
___
|
|
34
|
+
|
|
35
|
+
### event\_type
|
|
36
|
+
|
|
37
|
+
• `Optional` **event\_type**: [`EventType`](EventType.md)
|
|
38
|
+
|
|
39
|
+
**`Memberof`**
|
|
40
|
+
|
|
41
|
+
EventTypeBehavior
|
|
42
|
+
|
|
43
|
+
#### Defined in
|
|
44
|
+
|
|
45
|
+
[packages/notifications/types/index.ts:937](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L937)
|
|
46
|
+
|
|
47
|
+
___
|
|
48
|
+
|
|
49
|
+
### id
|
|
50
|
+
|
|
51
|
+
• `Optional` **id**: [`EventTypeBehaviorId`](EventTypeBehaviorId.md)
|
|
52
|
+
|
|
53
|
+
**`Memberof`**
|
|
54
|
+
|
|
55
|
+
EventTypeBehavior
|
|
56
|
+
|
|
57
|
+
#### Defined in
|
|
58
|
+
|
|
59
|
+
[packages/notifications/types/index.ts:931](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L931)
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / EventTypeBehaviorId
|
|
2
|
+
|
|
3
|
+
# Interface: EventTypeBehaviorId
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
EventTypeBehaviorId
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [behaviorGroupId](EventTypeBehaviorId.md#behaviorgroupid)
|
|
16
|
+
- [eventTypeId](EventTypeBehaviorId.md#eventtypeid)
|
|
17
|
+
|
|
18
|
+
## Properties
|
|
19
|
+
|
|
20
|
+
### behaviorGroupId
|
|
21
|
+
|
|
22
|
+
• **behaviorGroupId**: `string`
|
|
23
|
+
|
|
24
|
+
**`Memberof`**
|
|
25
|
+
|
|
26
|
+
EventTypeBehaviorId
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[packages/notifications/types/index.ts:956](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L956)
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### eventTypeId
|
|
35
|
+
|
|
36
|
+
• **eventTypeId**: `string`
|
|
37
|
+
|
|
38
|
+
**`Memberof`**
|
|
39
|
+
|
|
40
|
+
EventTypeBehaviorId
|
|
41
|
+
|
|
42
|
+
#### Defined in
|
|
43
|
+
|
|
44
|
+
[packages/notifications/types/index.ts:950](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L950)
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / EventTypeSettingsValue
|
|
2
|
+
|
|
3
|
+
# Interface: EventTypeSettingsValue
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
EventTypeSettingsValue
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [emailSubscriptionTypes](EventTypeSettingsValue.md#emailsubscriptiontypes)
|
|
16
|
+
- [hasForcedEmail](EventTypeSettingsValue.md#hasforcedemail)
|
|
17
|
+
|
|
18
|
+
## Properties
|
|
19
|
+
|
|
20
|
+
### emailSubscriptionTypes
|
|
21
|
+
|
|
22
|
+
• `Optional` **emailSubscriptionTypes**: `Object`
|
|
23
|
+
|
|
24
|
+
**`Memberof`**
|
|
25
|
+
|
|
26
|
+
EventTypeSettingsValue
|
|
27
|
+
|
|
28
|
+
#### Index signature
|
|
29
|
+
|
|
30
|
+
▪ [key: `string`]: `boolean`
|
|
31
|
+
|
|
32
|
+
#### Defined in
|
|
33
|
+
|
|
34
|
+
[packages/notifications/types/index.ts:969](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L969)
|
|
35
|
+
|
|
36
|
+
___
|
|
37
|
+
|
|
38
|
+
### hasForcedEmail
|
|
39
|
+
|
|
40
|
+
• `Optional` **hasForcedEmail**: `boolean`
|
|
41
|
+
|
|
42
|
+
**`Memberof`**
|
|
43
|
+
|
|
44
|
+
EventTypeSettingsValue
|
|
45
|
+
|
|
46
|
+
#### Defined in
|
|
47
|
+
|
|
48
|
+
[packages/notifications/types/index.ts:975](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L975)
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / Facet
|
|
2
|
+
|
|
3
|
+
# Interface: Facet
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
Facet
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [children](Facet.md#children)
|
|
16
|
+
- [displayName](Facet.md#displayname)
|
|
17
|
+
- [id](Facet.md#id)
|
|
18
|
+
- [name](Facet.md#name)
|
|
19
|
+
|
|
20
|
+
## Properties
|
|
21
|
+
|
|
22
|
+
### children
|
|
23
|
+
|
|
24
|
+
• `Optional` **children**: [`Facet`](Facet.md)[]
|
|
25
|
+
|
|
26
|
+
**`Memberof`**
|
|
27
|
+
|
|
28
|
+
Facet
|
|
29
|
+
|
|
30
|
+
#### Defined in
|
|
31
|
+
|
|
32
|
+
[packages/notifications/types/index.ts:1006](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1006)
|
|
33
|
+
|
|
34
|
+
___
|
|
35
|
+
|
|
36
|
+
### displayName
|
|
37
|
+
|
|
38
|
+
• **displayName**: `string`
|
|
39
|
+
|
|
40
|
+
**`Memberof`**
|
|
41
|
+
|
|
42
|
+
Facet
|
|
43
|
+
|
|
44
|
+
#### Defined in
|
|
45
|
+
|
|
46
|
+
[packages/notifications/types/index.ts:1000](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1000)
|
|
47
|
+
|
|
48
|
+
___
|
|
49
|
+
|
|
50
|
+
### id
|
|
51
|
+
|
|
52
|
+
• **id**: `string`
|
|
53
|
+
|
|
54
|
+
**`Memberof`**
|
|
55
|
+
|
|
56
|
+
Facet
|
|
57
|
+
|
|
58
|
+
#### Defined in
|
|
59
|
+
|
|
60
|
+
[packages/notifications/types/index.ts:988](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L988)
|
|
61
|
+
|
|
62
|
+
___
|
|
63
|
+
|
|
64
|
+
### name
|
|
65
|
+
|
|
66
|
+
• **name**: `string`
|
|
67
|
+
|
|
68
|
+
**`Memberof`**
|
|
69
|
+
|
|
70
|
+
Facet
|
|
71
|
+
|
|
72
|
+
#### Defined in
|
|
73
|
+
|
|
74
|
+
[packages/notifications/types/index.ts:994](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L994)
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / InstantEmailTemplate
|
|
2
|
+
|
|
3
|
+
# Interface: InstantEmailTemplate
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
InstantEmailTemplate
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [body\_template](InstantEmailTemplate.md#body_template)
|
|
16
|
+
- [body\_template\_id](InstantEmailTemplate.md#body_template_id)
|
|
17
|
+
- [created](InstantEmailTemplate.md#created)
|
|
18
|
+
- [event\_type](InstantEmailTemplate.md#event_type)
|
|
19
|
+
- [event\_type\_id](InstantEmailTemplate.md#event_type_id)
|
|
20
|
+
- [id](InstantEmailTemplate.md#id)
|
|
21
|
+
- [subject\_template](InstantEmailTemplate.md#subject_template)
|
|
22
|
+
- [subject\_template\_id](InstantEmailTemplate.md#subject_template_id)
|
|
23
|
+
- [updated](InstantEmailTemplate.md#updated)
|
|
24
|
+
|
|
25
|
+
## Properties
|
|
26
|
+
|
|
27
|
+
### body\_template
|
|
28
|
+
|
|
29
|
+
• `Optional` **body\_template**: [`Template`](Template.md)
|
|
30
|
+
|
|
31
|
+
**`Memberof`**
|
|
32
|
+
|
|
33
|
+
InstantEmailTemplate
|
|
34
|
+
|
|
35
|
+
#### Defined in
|
|
36
|
+
|
|
37
|
+
[packages/notifications/types/index.ts:1076](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1076)
|
|
38
|
+
|
|
39
|
+
___
|
|
40
|
+
|
|
41
|
+
### body\_template\_id
|
|
42
|
+
|
|
43
|
+
• **body\_template\_id**: `string`
|
|
44
|
+
|
|
45
|
+
**`Memberof`**
|
|
46
|
+
|
|
47
|
+
InstantEmailTemplate
|
|
48
|
+
|
|
49
|
+
#### Defined in
|
|
50
|
+
|
|
51
|
+
[packages/notifications/types/index.ts:1082](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1082)
|
|
52
|
+
|
|
53
|
+
___
|
|
54
|
+
|
|
55
|
+
### created
|
|
56
|
+
|
|
57
|
+
• `Optional` **created**: `string`
|
|
58
|
+
|
|
59
|
+
**`Memberof`**
|
|
60
|
+
|
|
61
|
+
InstantEmailTemplate
|
|
62
|
+
|
|
63
|
+
#### Defined in
|
|
64
|
+
|
|
65
|
+
[packages/notifications/types/index.ts:1034](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1034)
|
|
66
|
+
|
|
67
|
+
___
|
|
68
|
+
|
|
69
|
+
### event\_type
|
|
70
|
+
|
|
71
|
+
• `Optional` **event\_type**: [`EventType`](EventType.md)
|
|
72
|
+
|
|
73
|
+
**`Memberof`**
|
|
74
|
+
|
|
75
|
+
InstantEmailTemplate
|
|
76
|
+
|
|
77
|
+
#### Defined in
|
|
78
|
+
|
|
79
|
+
[packages/notifications/types/index.ts:1052](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1052)
|
|
80
|
+
|
|
81
|
+
___
|
|
82
|
+
|
|
83
|
+
### event\_type\_id
|
|
84
|
+
|
|
85
|
+
• `Optional` **event\_type\_id**: `string`
|
|
86
|
+
|
|
87
|
+
**`Memberof`**
|
|
88
|
+
|
|
89
|
+
InstantEmailTemplate
|
|
90
|
+
|
|
91
|
+
#### Defined in
|
|
92
|
+
|
|
93
|
+
[packages/notifications/types/index.ts:1058](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1058)
|
|
94
|
+
|
|
95
|
+
___
|
|
96
|
+
|
|
97
|
+
### id
|
|
98
|
+
|
|
99
|
+
• `Optional` **id**: `string`
|
|
100
|
+
|
|
101
|
+
**`Memberof`**
|
|
102
|
+
|
|
103
|
+
InstantEmailTemplate
|
|
104
|
+
|
|
105
|
+
#### Defined in
|
|
106
|
+
|
|
107
|
+
[packages/notifications/types/index.ts:1046](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1046)
|
|
108
|
+
|
|
109
|
+
___
|
|
110
|
+
|
|
111
|
+
### subject\_template
|
|
112
|
+
|
|
113
|
+
• `Optional` **subject\_template**: [`Template`](Template.md)
|
|
114
|
+
|
|
115
|
+
**`Memberof`**
|
|
116
|
+
|
|
117
|
+
InstantEmailTemplate
|
|
118
|
+
|
|
119
|
+
#### Defined in
|
|
120
|
+
|
|
121
|
+
[packages/notifications/types/index.ts:1064](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1064)
|
|
122
|
+
|
|
123
|
+
___
|
|
124
|
+
|
|
125
|
+
### subject\_template\_id
|
|
126
|
+
|
|
127
|
+
• **subject\_template\_id**: `string`
|
|
128
|
+
|
|
129
|
+
**`Memberof`**
|
|
130
|
+
|
|
131
|
+
InstantEmailTemplate
|
|
132
|
+
|
|
133
|
+
#### Defined in
|
|
134
|
+
|
|
135
|
+
[packages/notifications/types/index.ts:1070](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1070)
|
|
136
|
+
|
|
137
|
+
___
|
|
138
|
+
|
|
139
|
+
### updated
|
|
140
|
+
|
|
141
|
+
• `Optional` **updated**: `string`
|
|
142
|
+
|
|
143
|
+
**`Memberof`**
|
|
144
|
+
|
|
145
|
+
InstantEmailTemplate
|
|
146
|
+
|
|
147
|
+
#### Defined in
|
|
148
|
+
|
|
149
|
+
[packages/notifications/types/index.ts:1040](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1040)
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / InternalApplicationUserPermission
|
|
2
|
+
|
|
3
|
+
# Interface: InternalApplicationUserPermission
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
InternalApplicationUserPermission
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [application\_display\_name](InternalApplicationUserPermission.md#application_display_name)
|
|
16
|
+
- [application\_id](InternalApplicationUserPermission.md#application_id)
|
|
17
|
+
- [role](InternalApplicationUserPermission.md#role)
|
|
18
|
+
|
|
19
|
+
## Properties
|
|
20
|
+
|
|
21
|
+
### application\_display\_name
|
|
22
|
+
|
|
23
|
+
• **application\_display\_name**: `string`
|
|
24
|
+
|
|
25
|
+
**`Memberof`**
|
|
26
|
+
|
|
27
|
+
InternalApplicationUserPermission
|
|
28
|
+
|
|
29
|
+
#### Defined in
|
|
30
|
+
|
|
31
|
+
[packages/notifications/types/index.ts:1101](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1101)
|
|
32
|
+
|
|
33
|
+
___
|
|
34
|
+
|
|
35
|
+
### application\_id
|
|
36
|
+
|
|
37
|
+
• **application\_id**: `string`
|
|
38
|
+
|
|
39
|
+
**`Memberof`**
|
|
40
|
+
|
|
41
|
+
InternalApplicationUserPermission
|
|
42
|
+
|
|
43
|
+
#### Defined in
|
|
44
|
+
|
|
45
|
+
[packages/notifications/types/index.ts:1095](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1095)
|
|
46
|
+
|
|
47
|
+
___
|
|
48
|
+
|
|
49
|
+
### role
|
|
50
|
+
|
|
51
|
+
• **role**: `string`
|
|
52
|
+
|
|
53
|
+
**`Memberof`**
|
|
54
|
+
|
|
55
|
+
InternalApplicationUserPermission
|
|
56
|
+
|
|
57
|
+
#### Defined in
|
|
58
|
+
|
|
59
|
+
[packages/notifications/types/index.ts:1107](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1107)
|