@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,44 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / RequestDefaultBehaviorGroupPropertyList
|
|
2
|
+
|
|
3
|
+
# Interface: RequestDefaultBehaviorGroupPropertyList
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
RequestDefaultBehaviorGroupPropertyList
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [ignore\_preferences](RequestDefaultBehaviorGroupPropertyList.md#ignore_preferences)
|
|
16
|
+
- [only\_admins](RequestDefaultBehaviorGroupPropertyList.md#only_admins)
|
|
17
|
+
|
|
18
|
+
## Properties
|
|
19
|
+
|
|
20
|
+
### ignore\_preferences
|
|
21
|
+
|
|
22
|
+
• **ignore\_preferences**: `boolean`
|
|
23
|
+
|
|
24
|
+
**`Memberof`**
|
|
25
|
+
|
|
26
|
+
RequestDefaultBehaviorGroupPropertyList
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[packages/notifications/types/index.ts:1402](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1402)
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### only\_admins
|
|
35
|
+
|
|
36
|
+
• **only\_admins**: `boolean`
|
|
37
|
+
|
|
38
|
+
**`Memberof`**
|
|
39
|
+
|
|
40
|
+
RequestDefaultBehaviorGroupPropertyList
|
|
41
|
+
|
|
42
|
+
#### Defined in
|
|
43
|
+
|
|
44
|
+
[packages/notifications/types/index.ts:1396](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1396)
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / RequestSystemSubscriptionProperties
|
|
2
|
+
|
|
3
|
+
# Interface: RequestSystemSubscriptionProperties
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
RequestSystemSubscriptionProperties
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [group\_id](RequestSystemSubscriptionProperties.md#group_id)
|
|
16
|
+
- [only\_admins](RequestSystemSubscriptionProperties.md#only_admins)
|
|
17
|
+
|
|
18
|
+
## Properties
|
|
19
|
+
|
|
20
|
+
### group\_id
|
|
21
|
+
|
|
22
|
+
• `Optional` **group\_id**: `string`
|
|
23
|
+
|
|
24
|
+
**`Memberof`**
|
|
25
|
+
|
|
26
|
+
RequestSystemSubscriptionProperties
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[packages/notifications/types/index.ts:1421](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1421)
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### only\_admins
|
|
35
|
+
|
|
36
|
+
• **only\_admins**: `boolean`
|
|
37
|
+
|
|
38
|
+
**`Memberof`**
|
|
39
|
+
|
|
40
|
+
RequestSystemSubscriptionProperties
|
|
41
|
+
|
|
42
|
+
#### Defined in
|
|
43
|
+
|
|
44
|
+
[packages/notifications/types/index.ts:1415](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1415)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / ServerInfo
|
|
2
|
+
|
|
3
|
+
# Interface: ServerInfo
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
ServerInfo
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [environment](ServerInfo.md#environment)
|
|
16
|
+
|
|
17
|
+
## Properties
|
|
18
|
+
|
|
19
|
+
### environment
|
|
20
|
+
|
|
21
|
+
• `Optional` **environment**: [`Environment`](../enums/Environment.md)
|
|
22
|
+
|
|
23
|
+
**`Memberof`**
|
|
24
|
+
|
|
25
|
+
ServerInfo
|
|
26
|
+
|
|
27
|
+
#### Defined in
|
|
28
|
+
|
|
29
|
+
[packages/notifications/types/index.ts:1434](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1434)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / SettingsValues
|
|
2
|
+
|
|
3
|
+
# Interface: SettingsValues
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
SettingsValues
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [bundles](SettingsValues.md#bundles)
|
|
16
|
+
|
|
17
|
+
## Properties
|
|
18
|
+
|
|
19
|
+
### bundles
|
|
20
|
+
|
|
21
|
+
• `Optional` **bundles**: `Object`
|
|
22
|
+
|
|
23
|
+
**`Memberof`**
|
|
24
|
+
|
|
25
|
+
SettingsValues
|
|
26
|
+
|
|
27
|
+
#### Index signature
|
|
28
|
+
|
|
29
|
+
▪ [key: `string`]: [`BundleSettingsValue1`](BundleSettingsValue1.md)
|
|
30
|
+
|
|
31
|
+
#### Defined in
|
|
32
|
+
|
|
33
|
+
[packages/notifications/types/index.ts:1449](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1449)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / SettingsValuesByEventType
|
|
2
|
+
|
|
3
|
+
# Interface: SettingsValuesByEventType
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
SettingsValuesByEventType
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [bundles](SettingsValuesByEventType.md#bundles)
|
|
16
|
+
|
|
17
|
+
## Properties
|
|
18
|
+
|
|
19
|
+
### bundles
|
|
20
|
+
|
|
21
|
+
• `Optional` **bundles**: `Object`
|
|
22
|
+
|
|
23
|
+
**`Memberof`**
|
|
24
|
+
|
|
25
|
+
SettingsValuesByEventType
|
|
26
|
+
|
|
27
|
+
#### Index signature
|
|
28
|
+
|
|
29
|
+
▪ [key: `string`]: [`BundleSettingsValue`](BundleSettingsValue.md)
|
|
30
|
+
|
|
31
|
+
#### Defined in
|
|
32
|
+
|
|
33
|
+
[packages/notifications/types/index.ts:1462](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1462)
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / SystemSubscriptionProperties
|
|
2
|
+
|
|
3
|
+
# Interface: SystemSubscriptionProperties
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
SystemSubscriptionProperties
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [group\_id](SystemSubscriptionProperties.md#group_id)
|
|
16
|
+
- [ignore\_preferences](SystemSubscriptionProperties.md#ignore_preferences)
|
|
17
|
+
- [only\_admins](SystemSubscriptionProperties.md#only_admins)
|
|
18
|
+
|
|
19
|
+
## Properties
|
|
20
|
+
|
|
21
|
+
### group\_id
|
|
22
|
+
|
|
23
|
+
• `Optional` **group\_id**: `string`
|
|
24
|
+
|
|
25
|
+
**`Memberof`**
|
|
26
|
+
|
|
27
|
+
SystemSubscriptionProperties
|
|
28
|
+
|
|
29
|
+
#### Defined in
|
|
30
|
+
|
|
31
|
+
[packages/notifications/types/index.ts:1501](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1501)
|
|
32
|
+
|
|
33
|
+
___
|
|
34
|
+
|
|
35
|
+
### ignore\_preferences
|
|
36
|
+
|
|
37
|
+
• **ignore\_preferences**: `boolean`
|
|
38
|
+
|
|
39
|
+
**`Memberof`**
|
|
40
|
+
|
|
41
|
+
SystemSubscriptionProperties
|
|
42
|
+
|
|
43
|
+
#### Defined in
|
|
44
|
+
|
|
45
|
+
[packages/notifications/types/index.ts:1495](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1495)
|
|
46
|
+
|
|
47
|
+
___
|
|
48
|
+
|
|
49
|
+
### only\_admins
|
|
50
|
+
|
|
51
|
+
• **only\_admins**: `boolean`
|
|
52
|
+
|
|
53
|
+
**`Memberof`**
|
|
54
|
+
|
|
55
|
+
SystemSubscriptionProperties
|
|
56
|
+
|
|
57
|
+
#### Defined in
|
|
58
|
+
|
|
59
|
+
[packages/notifications/types/index.ts:1489](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1489)
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / Template
|
|
2
|
+
|
|
3
|
+
# Interface: Template
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
Template
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [created](Template.md#created)
|
|
16
|
+
- [data](Template.md#data)
|
|
17
|
+
- [description](Template.md#description)
|
|
18
|
+
- [id](Template.md#id)
|
|
19
|
+
- [name](Template.md#name)
|
|
20
|
+
- [updated](Template.md#updated)
|
|
21
|
+
|
|
22
|
+
## Properties
|
|
23
|
+
|
|
24
|
+
### created
|
|
25
|
+
|
|
26
|
+
• `Optional` **created**: `string`
|
|
27
|
+
|
|
28
|
+
**`Memberof`**
|
|
29
|
+
|
|
30
|
+
Template
|
|
31
|
+
|
|
32
|
+
#### Defined in
|
|
33
|
+
|
|
34
|
+
[packages/notifications/types/index.ts:1514](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1514)
|
|
35
|
+
|
|
36
|
+
___
|
|
37
|
+
|
|
38
|
+
### data
|
|
39
|
+
|
|
40
|
+
• **data**: `string`
|
|
41
|
+
|
|
42
|
+
**`Memberof`**
|
|
43
|
+
|
|
44
|
+
Template
|
|
45
|
+
|
|
46
|
+
#### Defined in
|
|
47
|
+
|
|
48
|
+
[packages/notifications/types/index.ts:1544](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1544)
|
|
49
|
+
|
|
50
|
+
___
|
|
51
|
+
|
|
52
|
+
### description
|
|
53
|
+
|
|
54
|
+
• **description**: `string`
|
|
55
|
+
|
|
56
|
+
**`Memberof`**
|
|
57
|
+
|
|
58
|
+
Template
|
|
59
|
+
|
|
60
|
+
#### Defined in
|
|
61
|
+
|
|
62
|
+
[packages/notifications/types/index.ts:1538](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1538)
|
|
63
|
+
|
|
64
|
+
___
|
|
65
|
+
|
|
66
|
+
### id
|
|
67
|
+
|
|
68
|
+
• `Optional` **id**: `string`
|
|
69
|
+
|
|
70
|
+
**`Memberof`**
|
|
71
|
+
|
|
72
|
+
Template
|
|
73
|
+
|
|
74
|
+
#### Defined in
|
|
75
|
+
|
|
76
|
+
[packages/notifications/types/index.ts:1526](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1526)
|
|
77
|
+
|
|
78
|
+
___
|
|
79
|
+
|
|
80
|
+
### name
|
|
81
|
+
|
|
82
|
+
• **name**: `string`
|
|
83
|
+
|
|
84
|
+
**`Memberof`**
|
|
85
|
+
|
|
86
|
+
Template
|
|
87
|
+
|
|
88
|
+
#### Defined in
|
|
89
|
+
|
|
90
|
+
[packages/notifications/types/index.ts:1532](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1532)
|
|
91
|
+
|
|
92
|
+
___
|
|
93
|
+
|
|
94
|
+
### updated
|
|
95
|
+
|
|
96
|
+
• `Optional` **updated**: `string`
|
|
97
|
+
|
|
98
|
+
**`Memberof`**
|
|
99
|
+
|
|
100
|
+
Template
|
|
101
|
+
|
|
102
|
+
#### Defined in
|
|
103
|
+
|
|
104
|
+
[packages/notifications/types/index.ts:1520](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1520)
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / TriggerDailyDigestRequest
|
|
2
|
+
|
|
3
|
+
# Interface: TriggerDailyDigestRequest
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
TriggerDailyDigestRequest
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [application\_name](TriggerDailyDigestRequest.md#application_name)
|
|
16
|
+
- [bundle\_name](TriggerDailyDigestRequest.md#bundle_name)
|
|
17
|
+
- [end](TriggerDailyDigestRequest.md#end)
|
|
18
|
+
- [org\_id](TriggerDailyDigestRequest.md#org_id)
|
|
19
|
+
- [start](TriggerDailyDigestRequest.md#start)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### application\_name
|
|
24
|
+
|
|
25
|
+
• **application\_name**: `string`
|
|
26
|
+
|
|
27
|
+
**`Memberof`**
|
|
28
|
+
|
|
29
|
+
TriggerDailyDigestRequest
|
|
30
|
+
|
|
31
|
+
#### Defined in
|
|
32
|
+
|
|
33
|
+
[packages/notifications/types/index.ts:1557](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1557)
|
|
34
|
+
|
|
35
|
+
___
|
|
36
|
+
|
|
37
|
+
### bundle\_name
|
|
38
|
+
|
|
39
|
+
• **bundle\_name**: `string`
|
|
40
|
+
|
|
41
|
+
**`Memberof`**
|
|
42
|
+
|
|
43
|
+
TriggerDailyDigestRequest
|
|
44
|
+
|
|
45
|
+
#### Defined in
|
|
46
|
+
|
|
47
|
+
[packages/notifications/types/index.ts:1563](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1563)
|
|
48
|
+
|
|
49
|
+
___
|
|
50
|
+
|
|
51
|
+
### end
|
|
52
|
+
|
|
53
|
+
• `Optional` **end**: `string`
|
|
54
|
+
|
|
55
|
+
**`Memberof`**
|
|
56
|
+
|
|
57
|
+
TriggerDailyDigestRequest
|
|
58
|
+
|
|
59
|
+
#### Defined in
|
|
60
|
+
|
|
61
|
+
[packages/notifications/types/index.ts:1569](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1569)
|
|
62
|
+
|
|
63
|
+
___
|
|
64
|
+
|
|
65
|
+
### org\_id
|
|
66
|
+
|
|
67
|
+
• **org\_id**: `string`
|
|
68
|
+
|
|
69
|
+
**`Memberof`**
|
|
70
|
+
|
|
71
|
+
TriggerDailyDigestRequest
|
|
72
|
+
|
|
73
|
+
#### Defined in
|
|
74
|
+
|
|
75
|
+
[packages/notifications/types/index.ts:1575](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1575)
|
|
76
|
+
|
|
77
|
+
___
|
|
78
|
+
|
|
79
|
+
### start
|
|
80
|
+
|
|
81
|
+
• `Optional` **start**: `string`
|
|
82
|
+
|
|
83
|
+
**`Memberof`**
|
|
84
|
+
|
|
85
|
+
TriggerDailyDigestRequest
|
|
86
|
+
|
|
87
|
+
#### Defined in
|
|
88
|
+
|
|
89
|
+
[packages/notifications/types/index.ts:1581](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1581)
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / UpdateBehaviorGroupRequest
|
|
2
|
+
|
|
3
|
+
# Interface: UpdateBehaviorGroupRequest
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
UpdateBehaviorGroupRequest
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [display\_name](UpdateBehaviorGroupRequest.md#display_name)
|
|
16
|
+
- [display\_name\_not\_null\_and\_blank](UpdateBehaviorGroupRequest.md#display_name_not_null_and_blank)
|
|
17
|
+
- [endpoint\_ids](UpdateBehaviorGroupRequest.md#endpoint_ids)
|
|
18
|
+
- [event\_type\_ids](UpdateBehaviorGroupRequest.md#event_type_ids)
|
|
19
|
+
|
|
20
|
+
## Properties
|
|
21
|
+
|
|
22
|
+
### display\_name
|
|
23
|
+
|
|
24
|
+
• `Optional` **display\_name**: `string`
|
|
25
|
+
|
|
26
|
+
**`Memberof`**
|
|
27
|
+
|
|
28
|
+
UpdateBehaviorGroupRequest
|
|
29
|
+
|
|
30
|
+
#### Defined in
|
|
31
|
+
|
|
32
|
+
[packages/notifications/types/index.ts:1594](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1594)
|
|
33
|
+
|
|
34
|
+
___
|
|
35
|
+
|
|
36
|
+
### display\_name\_not\_null\_and\_blank
|
|
37
|
+
|
|
38
|
+
• `Optional` **display\_name\_not\_null\_and\_blank**: `boolean`
|
|
39
|
+
|
|
40
|
+
**`Memberof`**
|
|
41
|
+
|
|
42
|
+
UpdateBehaviorGroupRequest
|
|
43
|
+
|
|
44
|
+
#### Defined in
|
|
45
|
+
|
|
46
|
+
[packages/notifications/types/index.ts:1612](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1612)
|
|
47
|
+
|
|
48
|
+
___
|
|
49
|
+
|
|
50
|
+
### endpoint\_ids
|
|
51
|
+
|
|
52
|
+
• `Optional` **endpoint\_ids**: `string`[]
|
|
53
|
+
|
|
54
|
+
**`Memberof`**
|
|
55
|
+
|
|
56
|
+
UpdateBehaviorGroupRequest
|
|
57
|
+
|
|
58
|
+
#### Defined in
|
|
59
|
+
|
|
60
|
+
[packages/notifications/types/index.ts:1600](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1600)
|
|
61
|
+
|
|
62
|
+
___
|
|
63
|
+
|
|
64
|
+
### event\_type\_ids
|
|
65
|
+
|
|
66
|
+
• `Optional` **event\_type\_ids**: `Set`<`string`\>
|
|
67
|
+
|
|
68
|
+
**`Memberof`**
|
|
69
|
+
|
|
70
|
+
UpdateBehaviorGroupRequest
|
|
71
|
+
|
|
72
|
+
#### Defined in
|
|
73
|
+
|
|
74
|
+
[packages/notifications/types/index.ts:1606](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1606)
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / UserConfigPreferences
|
|
2
|
+
|
|
3
|
+
# Interface: UserConfigPreferences
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
UserConfigPreferences
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [daily\_email](UserConfigPreferences.md#daily_email)
|
|
16
|
+
- [instant\_email](UserConfigPreferences.md#instant_email)
|
|
17
|
+
|
|
18
|
+
## Properties
|
|
19
|
+
|
|
20
|
+
### daily\_email
|
|
21
|
+
|
|
22
|
+
• `Optional` **daily\_email**: `boolean`
|
|
23
|
+
|
|
24
|
+
**`Memberof`**
|
|
25
|
+
|
|
26
|
+
UserConfigPreferences
|
|
27
|
+
|
|
28
|
+
#### Defined in
|
|
29
|
+
|
|
30
|
+
[packages/notifications/types/index.ts:1631](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1631)
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### instant\_email
|
|
35
|
+
|
|
36
|
+
• `Optional` **instant\_email**: `boolean`
|
|
37
|
+
|
|
38
|
+
**`Memberof`**
|
|
39
|
+
|
|
40
|
+
UserConfigPreferences
|
|
41
|
+
|
|
42
|
+
#### Defined in
|
|
43
|
+
|
|
44
|
+
[packages/notifications/types/index.ts:1625](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1625)
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
[@redhat-cloud-services/notifications-client](../README.md) / [Exports](../modules.md) / WebhookProperties
|
|
2
|
+
|
|
3
|
+
# Interface: WebhookProperties
|
|
4
|
+
|
|
5
|
+
**`Export`**
|
|
6
|
+
|
|
7
|
+
**`Interface`**
|
|
8
|
+
|
|
9
|
+
WebhookProperties
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Properties
|
|
14
|
+
|
|
15
|
+
- [basic\_authentication](WebhookProperties.md#basic_authentication)
|
|
16
|
+
- [disable\_ssl\_verification](WebhookProperties.md#disable_ssl_verification)
|
|
17
|
+
- [method](WebhookProperties.md#method)
|
|
18
|
+
- [secret\_token](WebhookProperties.md#secret_token)
|
|
19
|
+
- [url](WebhookProperties.md#url)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### basic\_authentication
|
|
24
|
+
|
|
25
|
+
• `Optional` **basic\_authentication**: [`BasicAuthentication`](BasicAuthentication.md)
|
|
26
|
+
|
|
27
|
+
**`Memberof`**
|
|
28
|
+
|
|
29
|
+
WebhookProperties
|
|
30
|
+
|
|
31
|
+
#### Defined in
|
|
32
|
+
|
|
33
|
+
[packages/notifications/types/index.ts:1668](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1668)
|
|
34
|
+
|
|
35
|
+
___
|
|
36
|
+
|
|
37
|
+
### disable\_ssl\_verification
|
|
38
|
+
|
|
39
|
+
• **disable\_ssl\_verification**: `boolean`
|
|
40
|
+
|
|
41
|
+
**`Memberof`**
|
|
42
|
+
|
|
43
|
+
WebhookProperties
|
|
44
|
+
|
|
45
|
+
#### Defined in
|
|
46
|
+
|
|
47
|
+
[packages/notifications/types/index.ts:1656](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1656)
|
|
48
|
+
|
|
49
|
+
___
|
|
50
|
+
|
|
51
|
+
### method
|
|
52
|
+
|
|
53
|
+
• **method**: [`HttpType`](../enums/HttpType.md)
|
|
54
|
+
|
|
55
|
+
**`Memberof`**
|
|
56
|
+
|
|
57
|
+
WebhookProperties
|
|
58
|
+
|
|
59
|
+
#### Defined in
|
|
60
|
+
|
|
61
|
+
[packages/notifications/types/index.ts:1650](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1650)
|
|
62
|
+
|
|
63
|
+
___
|
|
64
|
+
|
|
65
|
+
### secret\_token
|
|
66
|
+
|
|
67
|
+
• `Optional` **secret\_token**: `string`
|
|
68
|
+
|
|
69
|
+
**`Memberof`**
|
|
70
|
+
|
|
71
|
+
WebhookProperties
|
|
72
|
+
|
|
73
|
+
#### Defined in
|
|
74
|
+
|
|
75
|
+
[packages/notifications/types/index.ts:1662](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1662)
|
|
76
|
+
|
|
77
|
+
___
|
|
78
|
+
|
|
79
|
+
### url
|
|
80
|
+
|
|
81
|
+
• **url**: `string`
|
|
82
|
+
|
|
83
|
+
**`Memberof`**
|
|
84
|
+
|
|
85
|
+
WebhookProperties
|
|
86
|
+
|
|
87
|
+
#### Defined in
|
|
88
|
+
|
|
89
|
+
[packages/notifications/types/index.ts:1644](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/notifications/types/index.ts#L1644)
|