@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
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [EndpointAttributes](../modules/endpointattributes.md) > [LastDeliveryStatusEnum](../enums/endpointattributes.lastdeliverystatusenum.md)
|
|
2
|
-
|
|
3
|
-
# Enumeration: LastDeliveryStatusEnum
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__enum__*: {string}
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Enumeration members
|
|
12
|
-
|
|
13
|
-
* [Failure](endpointattributes.lastdeliverystatusenum.md#failure)
|
|
14
|
-
* [Success](endpointattributes.lastdeliverystatusenum.md#success)
|
|
15
|
-
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
## Enumeration members
|
|
19
|
-
|
|
20
|
-
<a id="failure"></a>
|
|
21
|
-
|
|
22
|
-
### Failure
|
|
23
|
-
|
|
24
|
-
**Failure**: = "failure"
|
|
25
|
-
|
|
26
|
-
*Defined in [api.ts:313](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L313)*
|
|
27
|
-
|
|
28
|
-
___
|
|
29
|
-
<a id="success"></a>
|
|
30
|
-
|
|
31
|
-
### Success
|
|
32
|
-
|
|
33
|
-
**Success**: = "success"
|
|
34
|
-
|
|
35
|
-
*Defined in [api.ts:312](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L312)*
|
|
36
|
-
|
|
37
|
-
___
|
|
38
|
-
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [EventType](../modules/eventtype.md) > [TypeEnum](../enums/eventtype.typeenum.md)
|
|
2
|
-
|
|
3
|
-
# Enumeration: TypeEnum
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__enum__*: {string}
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Enumeration members
|
|
12
|
-
|
|
13
|
-
* [EventType](eventtype.typeenum.md#eventtype)
|
|
14
|
-
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
## Enumeration members
|
|
18
|
-
|
|
19
|
-
<a id="eventtype"></a>
|
|
20
|
-
|
|
21
|
-
### EventType
|
|
22
|
-
|
|
23
|
-
**EventType**: = "event_type"
|
|
24
|
-
|
|
25
|
-
*Defined in [api.ts:565](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L565)*
|
|
26
|
-
|
|
27
|
-
___
|
|
28
|
-
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [InlineResponse2004Data](../modules/inlineresponse2004data.md) > [TypeEnum](../enums/inlineresponse2004data.typeenum.md)
|
|
2
|
-
|
|
3
|
-
# Enumeration: TypeEnum
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__enum__*: {string}
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Enumeration members
|
|
12
|
-
|
|
13
|
-
* [Filter](inlineresponse2004data.typeenum.md#filter)
|
|
14
|
-
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
## Enumeration members
|
|
18
|
-
|
|
19
|
-
<a id="filter"></a>
|
|
20
|
-
|
|
21
|
-
### Filter
|
|
22
|
-
|
|
23
|
-
**Filter**: = "filter"
|
|
24
|
-
|
|
25
|
-
*Defined in [api.ts:787](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L787)*
|
|
26
|
-
|
|
27
|
-
___
|
|
28
|
-
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [Level](../modules/level.md) > [TypeEnum](../enums/level.typeenum.md)
|
|
2
|
-
|
|
3
|
-
# Enumeration: TypeEnum
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__enum__*: {string}
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Enumeration members
|
|
12
|
-
|
|
13
|
-
* [Level](level.typeenum.md#level)
|
|
14
|
-
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
## Enumeration members
|
|
18
|
-
|
|
19
|
-
<a id="level"></a>
|
|
20
|
-
|
|
21
|
-
### Level
|
|
22
|
-
|
|
23
|
-
**Level**: = "level"
|
|
24
|
-
|
|
25
|
-
*Defined in [api.ts:887](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L887)*
|
|
26
|
-
|
|
27
|
-
___
|
|
28
|
-
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [AppAttributes](../interfaces/appattributes.md)
|
|
2
|
-
|
|
3
|
-
# Interface: AppAttributes
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__interface__*: AppAttributes
|
|
8
|
-
|
|
9
|
-
## Hierarchy
|
|
10
|
-
|
|
11
|
-
**AppAttributes**
|
|
12
|
-
|
|
13
|
-
## Index
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [name](appattributes.md#name)
|
|
18
|
-
* [title](appattributes.md#title)
|
|
19
|
-
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
## Properties
|
|
23
|
-
|
|
24
|
-
<a id="name"></a>
|
|
25
|
-
|
|
26
|
-
### `<Optional>` name
|
|
27
|
-
|
|
28
|
-
**● name**: *`string`*
|
|
29
|
-
|
|
30
|
-
*Defined in [api.ts:129](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L129)*
|
|
31
|
-
|
|
32
|
-
Name of the application, used to identify the sender in messages
|
|
33
|
-
|
|
34
|
-
*__type__*: {string}
|
|
35
|
-
|
|
36
|
-
*__memberof__*: AppAttributes
|
|
37
|
-
|
|
38
|
-
___
|
|
39
|
-
<a id="title"></a>
|
|
40
|
-
|
|
41
|
-
### `<Optional>` title
|
|
42
|
-
|
|
43
|
-
**● title**: *`string`*
|
|
44
|
-
|
|
45
|
-
*Defined in [api.ts:135](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L135)*
|
|
46
|
-
|
|
47
|
-
Title of the application, shown to the user when configuring filters
|
|
48
|
-
|
|
49
|
-
*__type__*: {string}
|
|
50
|
-
|
|
51
|
-
*__memberof__*: AppAttributes
|
|
52
|
-
|
|
53
|
-
___
|
|
54
|
-
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [AppRelationships](../interfaces/apprelationships.md)
|
|
2
|
-
|
|
3
|
-
# Interface: AppRelationships
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__interface__*: AppRelationships
|
|
8
|
-
|
|
9
|
-
## Hierarchy
|
|
10
|
-
|
|
11
|
-
**AppRelationships**
|
|
12
|
-
|
|
13
|
-
## Index
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [eventTypes](apprelationships.md#eventtypes)
|
|
18
|
-
|
|
19
|
-
---
|
|
20
|
-
|
|
21
|
-
## Properties
|
|
22
|
-
|
|
23
|
-
<a id="eventtypes"></a>
|
|
24
|
-
|
|
25
|
-
### `<Optional>` eventTypes
|
|
26
|
-
|
|
27
|
-
**● eventTypes**: *[Relationships](relationships.md)*
|
|
28
|
-
|
|
29
|
-
*Defined in [api.ts:149](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L149)*
|
|
30
|
-
|
|
31
|
-
*__type__*: {Relationships}
|
|
32
|
-
|
|
33
|
-
*__memberof__*: AppRelationships
|
|
34
|
-
|
|
35
|
-
___
|
|
36
|
-
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [AppsRegisterApplication](../interfaces/appsregisterapplication.md)
|
|
2
|
-
|
|
3
|
-
# Interface: AppsRegisterApplication
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__interface__*: AppsRegisterApplication
|
|
8
|
-
|
|
9
|
-
## Hierarchy
|
|
10
|
-
|
|
11
|
-
**AppsRegisterApplication**
|
|
12
|
-
|
|
13
|
-
## Index
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [name](appsregisterapplication.md#name)
|
|
18
|
-
* [title](appsregisterapplication.md#title)
|
|
19
|
-
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
## Properties
|
|
23
|
-
|
|
24
|
-
<a id="name"></a>
|
|
25
|
-
|
|
26
|
-
### `<Optional>` name
|
|
27
|
-
|
|
28
|
-
**● name**: *`string`*
|
|
29
|
-
|
|
30
|
-
*Defined in [api.ts:163](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L163)*
|
|
31
|
-
|
|
32
|
-
*__type__*: {string}
|
|
33
|
-
|
|
34
|
-
*__memberof__*: AppsRegisterApplication
|
|
35
|
-
|
|
36
|
-
___
|
|
37
|
-
<a id="title"></a>
|
|
38
|
-
|
|
39
|
-
### `<Optional>` title
|
|
40
|
-
|
|
41
|
-
**● title**: *`string`*
|
|
42
|
-
|
|
43
|
-
*Defined in [api.ts:169](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L169)*
|
|
44
|
-
|
|
45
|
-
*__type__*: {string}
|
|
46
|
-
|
|
47
|
-
*__memberof__*: AppsRegisterApplication
|
|
48
|
-
|
|
49
|
-
___
|
|
50
|
-
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [AppsRegisterEventTypes](../interfaces/appsregistereventtypes.md)
|
|
2
|
-
|
|
3
|
-
# Interface: AppsRegisterEventTypes
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__interface__*: AppsRegisterEventTypes
|
|
8
|
-
|
|
9
|
-
## Hierarchy
|
|
10
|
-
|
|
11
|
-
**AppsRegisterEventTypes**
|
|
12
|
-
|
|
13
|
-
## Index
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [id](appsregistereventtypes.md#id)
|
|
18
|
-
* [levels](appsregistereventtypes.md#levels)
|
|
19
|
-
* [title](appsregistereventtypes.md#title)
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
## Properties
|
|
24
|
-
|
|
25
|
-
<a id="id"></a>
|
|
26
|
-
|
|
27
|
-
### `<Optional>` id
|
|
28
|
-
|
|
29
|
-
**● id**: *`Object`*
|
|
30
|
-
|
|
31
|
-
*Defined in [api.ts:183](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L183)*
|
|
32
|
-
|
|
33
|
-
*__type__*: {Object}
|
|
34
|
-
|
|
35
|
-
*__memberof__*: AppsRegisterEventTypes
|
|
36
|
-
|
|
37
|
-
___
|
|
38
|
-
<a id="levels"></a>
|
|
39
|
-
|
|
40
|
-
### `<Optional>` levels
|
|
41
|
-
|
|
42
|
-
**● levels**: *[AppsRegisterEventTypesLevels](appsregistereventtypeslevels.md)*
|
|
43
|
-
|
|
44
|
-
*Defined in [api.ts:195](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L195)*
|
|
45
|
-
|
|
46
|
-
*__type__*: {AppsRegisterEventTypesLevels}
|
|
47
|
-
|
|
48
|
-
*__memberof__*: AppsRegisterEventTypes
|
|
49
|
-
|
|
50
|
-
___
|
|
51
|
-
<a id="title"></a>
|
|
52
|
-
|
|
53
|
-
### `<Optional>` title
|
|
54
|
-
|
|
55
|
-
**● title**: *`string`*
|
|
56
|
-
|
|
57
|
-
*Defined in [api.ts:189](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L189)*
|
|
58
|
-
|
|
59
|
-
*__type__*: {string}
|
|
60
|
-
|
|
61
|
-
*__memberof__*: AppsRegisterEventTypes
|
|
62
|
-
|
|
63
|
-
___
|
|
64
|
-
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [AppsRegisterEventTypesLevels](../interfaces/appsregistereventtypeslevels.md)
|
|
2
|
-
|
|
3
|
-
# Interface: AppsRegisterEventTypesLevels
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__interface__*: AppsRegisterEventTypesLevels
|
|
8
|
-
|
|
9
|
-
## Hierarchy
|
|
10
|
-
|
|
11
|
-
**AppsRegisterEventTypesLevels**
|
|
12
|
-
|
|
13
|
-
## Index
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [id](appsregistereventtypeslevels.md#id)
|
|
18
|
-
* [title](appsregistereventtypeslevels.md#title)
|
|
19
|
-
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
## Properties
|
|
23
|
-
|
|
24
|
-
<a id="id"></a>
|
|
25
|
-
|
|
26
|
-
### `<Optional>` id
|
|
27
|
-
|
|
28
|
-
**● id**: *`Object`*
|
|
29
|
-
|
|
30
|
-
*Defined in [api.ts:209](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L209)*
|
|
31
|
-
|
|
32
|
-
*__type__*: {Object}
|
|
33
|
-
|
|
34
|
-
*__memberof__*: AppsRegisterEventTypesLevels
|
|
35
|
-
|
|
36
|
-
___
|
|
37
|
-
<a id="title"></a>
|
|
38
|
-
|
|
39
|
-
### `<Optional>` title
|
|
40
|
-
|
|
41
|
-
**● title**: *`string`*
|
|
42
|
-
|
|
43
|
-
*Defined in [api.ts:215](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L215)*
|
|
44
|
-
|
|
45
|
-
*__type__*: {string}
|
|
46
|
-
|
|
47
|
-
*__memberof__*: AppsRegisterEventTypesLevels
|
|
48
|
-
|
|
49
|
-
___
|
|
50
|
-
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [ConfigurationParameters](../interfaces/configurationparameters.md)
|
|
2
|
-
|
|
3
|
-
# Interface: ConfigurationParameters
|
|
4
|
-
|
|
5
|
-
API V1 No description provided (generated by Openapi Generator [https://github.com/openapitools/openapi-generator](https://github.com/openapitools/openapi-generator))
|
|
6
|
-
|
|
7
|
-
OpenAPI spec version: 1.0.0
|
|
8
|
-
|
|
9
|
-
NOTE: This class is auto generated by OpenAPI Generator ([https://openapi-generator.tech](https://openapi-generator.tech)). [https://openapi-generator.tech](https://openapi-generator.tech) Do not edit the class manually.
|
|
10
|
-
|
|
11
|
-
## Hierarchy
|
|
12
|
-
|
|
13
|
-
**ConfigurationParameters**
|
|
14
|
-
|
|
15
|
-
## Index
|
|
16
|
-
|
|
17
|
-
### Properties
|
|
18
|
-
|
|
19
|
-
* [accessToken](configurationparameters.md#accesstoken)
|
|
20
|
-
* [apiKey](configurationparameters.md#apikey)
|
|
21
|
-
* [baseOptions](configurationparameters.md#baseoptions)
|
|
22
|
-
* [basePath](configurationparameters.md#basepath)
|
|
23
|
-
* [password](configurationparameters.md#password)
|
|
24
|
-
* [username](configurationparameters.md#username)
|
|
25
|
-
|
|
26
|
-
---
|
|
27
|
-
|
|
28
|
-
## Properties
|
|
29
|
-
|
|
30
|
-
<a id="accesstoken"></a>
|
|
31
|
-
|
|
32
|
-
### `<Optional>` accessToken
|
|
33
|
-
|
|
34
|
-
**● accessToken**: *`string` \| `function`*
|
|
35
|
-
|
|
36
|
-
*Defined in [configuration.ts:19](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/configuration.ts#L19)*
|
|
37
|
-
|
|
38
|
-
___
|
|
39
|
-
<a id="apikey"></a>
|
|
40
|
-
|
|
41
|
-
### `<Optional>` apiKey
|
|
42
|
-
|
|
43
|
-
**● apiKey**: *`string` \| `function`*
|
|
44
|
-
|
|
45
|
-
*Defined in [configuration.ts:16](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/configuration.ts#L16)*
|
|
46
|
-
|
|
47
|
-
___
|
|
48
|
-
<a id="baseoptions"></a>
|
|
49
|
-
|
|
50
|
-
### `<Optional>` baseOptions
|
|
51
|
-
|
|
52
|
-
**● baseOptions**: *`any`*
|
|
53
|
-
|
|
54
|
-
*Defined in [configuration.ts:21](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/configuration.ts#L21)*
|
|
55
|
-
|
|
56
|
-
___
|
|
57
|
-
<a id="basepath"></a>
|
|
58
|
-
|
|
59
|
-
### `<Optional>` basePath
|
|
60
|
-
|
|
61
|
-
**● basePath**: *`string`*
|
|
62
|
-
|
|
63
|
-
*Defined in [configuration.ts:20](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/configuration.ts#L20)*
|
|
64
|
-
|
|
65
|
-
___
|
|
66
|
-
<a id="password"></a>
|
|
67
|
-
|
|
68
|
-
### `<Optional>` password
|
|
69
|
-
|
|
70
|
-
**● password**: *`string`*
|
|
71
|
-
|
|
72
|
-
*Defined in [configuration.ts:18](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/configuration.ts#L18)*
|
|
73
|
-
|
|
74
|
-
___
|
|
75
|
-
<a id="username"></a>
|
|
76
|
-
|
|
77
|
-
### `<Optional>` username
|
|
78
|
-
|
|
79
|
-
**● username**: *`string`*
|
|
80
|
-
|
|
81
|
-
*Defined in [configuration.ts:17](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/configuration.ts#L17)*
|
|
82
|
-
|
|
83
|
-
___
|
|
84
|
-
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [EndpointsEndpoint](../interfaces/endpointsendpoint.md)
|
|
2
|
-
|
|
3
|
-
# Interface: EndpointsEndpoint
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__interface__*: EndpointsEndpoint
|
|
8
|
-
|
|
9
|
-
## Hierarchy
|
|
10
|
-
|
|
11
|
-
**EndpointsEndpoint**
|
|
12
|
-
|
|
13
|
-
## Index
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [filter](endpointsendpoint.md#filter)
|
|
18
|
-
* [name](endpointsendpoint.md#name)
|
|
19
|
-
* [type](endpointsendpoint.md#type)
|
|
20
|
-
* [url](endpointsendpoint.md#url)
|
|
21
|
-
|
|
22
|
-
---
|
|
23
|
-
|
|
24
|
-
## Properties
|
|
25
|
-
|
|
26
|
-
<a id="filter"></a>
|
|
27
|
-
|
|
28
|
-
### `<Optional>` filter
|
|
29
|
-
|
|
30
|
-
**● filter**: *[EndpointsEndpointFilter](endpointsendpointfilter.md)*
|
|
31
|
-
|
|
32
|
-
*Defined in [api.ts:346](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L346)*
|
|
33
|
-
|
|
34
|
-
*__type__*: {EndpointsEndpointFilter}
|
|
35
|
-
|
|
36
|
-
*__memberof__*: EndpointsEndpoint
|
|
37
|
-
|
|
38
|
-
___
|
|
39
|
-
<a id="name"></a>
|
|
40
|
-
|
|
41
|
-
### `<Optional>` name
|
|
42
|
-
|
|
43
|
-
**● name**: *`string`*
|
|
44
|
-
|
|
45
|
-
*Defined in [api.ts:334](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L334)*
|
|
46
|
-
|
|
47
|
-
*__type__*: {string}
|
|
48
|
-
|
|
49
|
-
*__memberof__*: EndpointsEndpoint
|
|
50
|
-
|
|
51
|
-
___
|
|
52
|
-
<a id="type"></a>
|
|
53
|
-
|
|
54
|
-
### `<Optional>` type
|
|
55
|
-
|
|
56
|
-
**● type**: *`string`*
|
|
57
|
-
|
|
58
|
-
*Defined in [api.ts:340](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L340)*
|
|
59
|
-
|
|
60
|
-
*__type__*: {string}
|
|
61
|
-
|
|
62
|
-
*__memberof__*: EndpointsEndpoint
|
|
63
|
-
|
|
64
|
-
___
|
|
65
|
-
<a id="url"></a>
|
|
66
|
-
|
|
67
|
-
### `<Optional>` url
|
|
68
|
-
|
|
69
|
-
**● url**: *`string`*
|
|
70
|
-
|
|
71
|
-
*Defined in [api.ts:328](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L328)*
|
|
72
|
-
|
|
73
|
-
*__type__*: {string}
|
|
74
|
-
|
|
75
|
-
*__memberof__*: EndpointsEndpoint
|
|
76
|
-
|
|
77
|
-
___
|
|
78
|
-
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [EndpointsEndpointFilter](../interfaces/endpointsendpointfilter.md)
|
|
2
|
-
|
|
3
|
-
# Interface: EndpointsEndpointFilter
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__interface__*: EndpointsEndpointFilter
|
|
8
|
-
|
|
9
|
-
## Hierarchy
|
|
10
|
-
|
|
11
|
-
**EndpointsEndpointFilter**
|
|
12
|
-
|
|
13
|
-
## Index
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [appIds](endpointsendpointfilter.md#appids)
|
|
18
|
-
* [eventTypeIds](endpointsendpointfilter.md#eventtypeids)
|
|
19
|
-
* [levelIds](endpointsendpointfilter.md#levelids)
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
## Properties
|
|
24
|
-
|
|
25
|
-
<a id="appids"></a>
|
|
26
|
-
|
|
27
|
-
### `<Optional>` appIds
|
|
28
|
-
|
|
29
|
-
**● appIds**: *`Array`<`string`>*
|
|
30
|
-
|
|
31
|
-
*Defined in [api.ts:360](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L360)*
|
|
32
|
-
|
|
33
|
-
*__type__*: {Array}
|
|
34
|
-
|
|
35
|
-
*__memberof__*: EndpointsEndpointFilter
|
|
36
|
-
|
|
37
|
-
___
|
|
38
|
-
<a id="eventtypeids"></a>
|
|
39
|
-
|
|
40
|
-
### `<Optional>` eventTypeIds
|
|
41
|
-
|
|
42
|
-
**● eventTypeIds**: *`Array`<`string`>*
|
|
43
|
-
|
|
44
|
-
*Defined in [api.ts:366](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L366)*
|
|
45
|
-
|
|
46
|
-
*__type__*: {Array}
|
|
47
|
-
|
|
48
|
-
*__memberof__*: EndpointsEndpointFilter
|
|
49
|
-
|
|
50
|
-
___
|
|
51
|
-
<a id="levelids"></a>
|
|
52
|
-
|
|
53
|
-
### `<Optional>` levelIds
|
|
54
|
-
|
|
55
|
-
**● levelIds**: *`Array`<`string`>*
|
|
56
|
-
|
|
57
|
-
*Defined in [api.ts:372](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L372)*
|
|
58
|
-
|
|
59
|
-
*__type__*: {Array}
|
|
60
|
-
|
|
61
|
-
*__memberof__*: EndpointsEndpointFilter
|
|
62
|
-
|
|
63
|
-
___
|
|
64
|
-
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [EndpointsIdEndpoint](../interfaces/endpointsidendpoint.md)
|
|
2
|
-
|
|
3
|
-
# Interface: EndpointsIdEndpoint
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__interface__*: EndpointsIdEndpoint
|
|
8
|
-
|
|
9
|
-
## Hierarchy
|
|
10
|
-
|
|
11
|
-
**EndpointsIdEndpoint**
|
|
12
|
-
|
|
13
|
-
## Index
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [filter](endpointsidendpoint.md#filter)
|
|
18
|
-
* [name](endpointsidendpoint.md#name)
|
|
19
|
-
* [type](endpointsidendpoint.md#type)
|
|
20
|
-
* [url](endpointsidendpoint.md#url)
|
|
21
|
-
|
|
22
|
-
---
|
|
23
|
-
|
|
24
|
-
## Properties
|
|
25
|
-
|
|
26
|
-
<a id="filter"></a>
|
|
27
|
-
|
|
28
|
-
### `<Optional>` filter
|
|
29
|
-
|
|
30
|
-
**● filter**: *[EndpointsIdEndpointFilter](endpointsidendpointfilter.md)*
|
|
31
|
-
|
|
32
|
-
*Defined in [api.ts:404](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L404)*
|
|
33
|
-
|
|
34
|
-
*__type__*: {EndpointsIdEndpointFilter}
|
|
35
|
-
|
|
36
|
-
*__memberof__*: EndpointsIdEndpoint
|
|
37
|
-
|
|
38
|
-
___
|
|
39
|
-
<a id="name"></a>
|
|
40
|
-
|
|
41
|
-
### `<Optional>` name
|
|
42
|
-
|
|
43
|
-
**● name**: *`string`*
|
|
44
|
-
|
|
45
|
-
*Defined in [api.ts:392](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L392)*
|
|
46
|
-
|
|
47
|
-
*__type__*: {string}
|
|
48
|
-
|
|
49
|
-
*__memberof__*: EndpointsIdEndpoint
|
|
50
|
-
|
|
51
|
-
___
|
|
52
|
-
<a id="type"></a>
|
|
53
|
-
|
|
54
|
-
### `<Optional>` type
|
|
55
|
-
|
|
56
|
-
**● type**: *`string`*
|
|
57
|
-
|
|
58
|
-
*Defined in [api.ts:398](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L398)*
|
|
59
|
-
|
|
60
|
-
*__type__*: {string}
|
|
61
|
-
|
|
62
|
-
*__memberof__*: EndpointsIdEndpoint
|
|
63
|
-
|
|
64
|
-
___
|
|
65
|
-
<a id="url"></a>
|
|
66
|
-
|
|
67
|
-
### `<Optional>` url
|
|
68
|
-
|
|
69
|
-
**● url**: *`string`*
|
|
70
|
-
|
|
71
|
-
*Defined in [api.ts:386](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L386)*
|
|
72
|
-
|
|
73
|
-
*__type__*: {string}
|
|
74
|
-
|
|
75
|
-
*__memberof__*: EndpointsIdEndpoint
|
|
76
|
-
|
|
77
|
-
___
|
|
78
|
-
|