@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,118 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [EndpointAttributes](../modules/endpointattributes.md)
|
|
2
|
-
|
|
3
|
-
# Module: EndpointAttributes
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__namespace__*: EndpointAttributes
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Enumerations
|
|
12
|
-
|
|
13
|
-
* [LastDeliveryStatusEnum](../enums/endpointattributes.lastdeliverystatusenum.md)
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [active](endpointattributes.md#active)
|
|
18
|
-
* [lastDeliveryStatus](endpointattributes.md#lastdeliverystatus)
|
|
19
|
-
* [lastDeliveryTime](endpointattributes.md#lastdeliverytime)
|
|
20
|
-
* [lastFailureTime](endpointattributes.md#lastfailuretime)
|
|
21
|
-
* [name](endpointattributes.md#name)
|
|
22
|
-
* [url](endpointattributes.md#url)
|
|
23
|
-
|
|
24
|
-
---
|
|
25
|
-
|
|
26
|
-
## Properties
|
|
27
|
-
|
|
28
|
-
<a id="active"></a>
|
|
29
|
-
|
|
30
|
-
### `<Optional>` active
|
|
31
|
-
|
|
32
|
-
**● active**: *`boolean`*
|
|
33
|
-
|
|
34
|
-
*Defined in [api.ts:275](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L275)*
|
|
35
|
-
|
|
36
|
-
A flag determining whether this endpoint should be used
|
|
37
|
-
|
|
38
|
-
*__type__*: {boolean}
|
|
39
|
-
|
|
40
|
-
*__memberof__*: EndpointAttributes
|
|
41
|
-
|
|
42
|
-
___
|
|
43
|
-
<a id="lastdeliverystatus"></a>
|
|
44
|
-
|
|
45
|
-
### `<Optional>` lastDeliveryStatus
|
|
46
|
-
|
|
47
|
-
**● lastDeliveryStatus**: *[LastDeliveryStatusEnum](../enums/endpointattributes.lastdeliverystatusenum.md)*
|
|
48
|
-
|
|
49
|
-
*Defined in [api.ts:287](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L287)*
|
|
50
|
-
|
|
51
|
-
Status of the last delivery
|
|
52
|
-
|
|
53
|
-
*__type__*: {string}
|
|
54
|
-
|
|
55
|
-
*__memberof__*: EndpointAttributes
|
|
56
|
-
|
|
57
|
-
___
|
|
58
|
-
<a id="lastdeliverytime"></a>
|
|
59
|
-
|
|
60
|
-
### `<Optional>` lastDeliveryTime
|
|
61
|
-
|
|
62
|
-
**● lastDeliveryTime**: *`Date` \| `null`*
|
|
63
|
-
|
|
64
|
-
*Defined in [api.ts:293](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L293)*
|
|
65
|
-
|
|
66
|
-
Timestamp of last delivery attempt
|
|
67
|
-
|
|
68
|
-
*__type__*: {Date}
|
|
69
|
-
|
|
70
|
-
*__memberof__*: EndpointAttributes
|
|
71
|
-
|
|
72
|
-
___
|
|
73
|
-
<a id="lastfailuretime"></a>
|
|
74
|
-
|
|
75
|
-
### `<Optional>` lastFailureTime
|
|
76
|
-
|
|
77
|
-
**● lastFailureTime**: *`Date`*
|
|
78
|
-
|
|
79
|
-
*Defined in [api.ts:299](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L299)*
|
|
80
|
-
|
|
81
|
-
Timestamp of first failure. If the status is "failure", this marks when the endpoint "went down"
|
|
82
|
-
|
|
83
|
-
*__type__*: {Date}
|
|
84
|
-
|
|
85
|
-
*__memberof__*: EndpointAttributes
|
|
86
|
-
|
|
87
|
-
___
|
|
88
|
-
<a id="name"></a>
|
|
89
|
-
|
|
90
|
-
### `<Optional>` name
|
|
91
|
-
|
|
92
|
-
**● name**: *`string`*
|
|
93
|
-
|
|
94
|
-
*Defined in [api.ts:269](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L269)*
|
|
95
|
-
|
|
96
|
-
Human readable description of the endpoint
|
|
97
|
-
|
|
98
|
-
*__type__*: {string}
|
|
99
|
-
|
|
100
|
-
*__memberof__*: EndpointAttributes
|
|
101
|
-
|
|
102
|
-
___
|
|
103
|
-
<a id="url"></a>
|
|
104
|
-
|
|
105
|
-
### `<Optional>` url
|
|
106
|
-
|
|
107
|
-
**● url**: *`string`*
|
|
108
|
-
|
|
109
|
-
*Defined in [api.ts:281](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L281)*
|
|
110
|
-
|
|
111
|
-
URL to which messages should be POSTed
|
|
112
|
-
|
|
113
|
-
*__type__*: {string}
|
|
114
|
-
|
|
115
|
-
*__memberof__*: EndpointAttributes
|
|
116
|
-
|
|
117
|
-
___
|
|
118
|
-
|
package/doc/modules/eventtype.md
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [EventType](../modules/eventtype.md)
|
|
2
|
-
|
|
3
|
-
# Module: EventType
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__namespace__*: EventType
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Enumerations
|
|
12
|
-
|
|
13
|
-
* [TypeEnum](../enums/eventtype.typeenum.md)
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [attributes](eventtype.md#attributes)
|
|
18
|
-
* [id](eventtype.md#id)
|
|
19
|
-
* [relationships](eventtype.md#relationships)
|
|
20
|
-
* [type](eventtype.md#type)
|
|
21
|
-
|
|
22
|
-
---
|
|
23
|
-
|
|
24
|
-
## Properties
|
|
25
|
-
|
|
26
|
-
<a id="attributes"></a>
|
|
27
|
-
|
|
28
|
-
### `<Optional>` attributes
|
|
29
|
-
|
|
30
|
-
**● attributes**: *[EventTypeAttributes](../interfaces/eventtypeattributes.md)*
|
|
31
|
-
|
|
32
|
-
*Defined in [api.ts:546](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L546)*
|
|
33
|
-
|
|
34
|
-
*__type__*: {EventTypeAttributes}
|
|
35
|
-
|
|
36
|
-
*__memberof__*: EventType
|
|
37
|
-
|
|
38
|
-
___
|
|
39
|
-
<a id="id"></a>
|
|
40
|
-
|
|
41
|
-
### `<Optional>` id
|
|
42
|
-
|
|
43
|
-
**● id**: *`string`*
|
|
44
|
-
|
|
45
|
-
*Defined in [api.ts:534](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L534)*
|
|
46
|
-
|
|
47
|
-
Identifier of the event type
|
|
48
|
-
|
|
49
|
-
*__type__*: {string}
|
|
50
|
-
|
|
51
|
-
*__memberof__*: EventType
|
|
52
|
-
|
|
53
|
-
___
|
|
54
|
-
<a id="relationships"></a>
|
|
55
|
-
|
|
56
|
-
### `<Optional>` relationships
|
|
57
|
-
|
|
58
|
-
**● relationships**: *[EventTypeRelationships](../interfaces/eventtyperelationships.md)*
|
|
59
|
-
|
|
60
|
-
*Defined in [api.ts:552](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L552)*
|
|
61
|
-
|
|
62
|
-
*__type__*: {EventTypeRelationships}
|
|
63
|
-
|
|
64
|
-
*__memberof__*: EventType
|
|
65
|
-
|
|
66
|
-
___
|
|
67
|
-
<a id="type"></a>
|
|
68
|
-
|
|
69
|
-
### `<Optional>` type
|
|
70
|
-
|
|
71
|
-
**● type**: *[TypeEnum](../enums/eventtype.typeenum.md)*
|
|
72
|
-
|
|
73
|
-
*Defined in [api.ts:540](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L540)*
|
|
74
|
-
|
|
75
|
-
Type of the returned record
|
|
76
|
-
|
|
77
|
-
*__type__*: {string}
|
|
78
|
-
|
|
79
|
-
*__memberof__*: EventType
|
|
80
|
-
|
|
81
|
-
___
|
|
82
|
-
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [InlineResponse2004Data](../modules/inlineresponse2004data.md)
|
|
2
|
-
|
|
3
|
-
# Module: InlineResponse2004Data
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__namespace__*: InlineResponse2004Data
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Enumerations
|
|
12
|
-
|
|
13
|
-
* [TypeEnum](../enums/inlineresponse2004data.typeenum.md)
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [attributes](inlineresponse2004data.md#attributes)
|
|
18
|
-
* [id](inlineresponse2004data.md#id)
|
|
19
|
-
* [relationships](inlineresponse2004data.md#relationships)
|
|
20
|
-
* [type](inlineresponse2004data.md#type)
|
|
21
|
-
|
|
22
|
-
---
|
|
23
|
-
|
|
24
|
-
## Properties
|
|
25
|
-
|
|
26
|
-
<a id="attributes"></a>
|
|
27
|
-
|
|
28
|
-
### `<Optional>` attributes
|
|
29
|
-
|
|
30
|
-
**● attributes**: *[InlineResponse2004DataAttributes](../interfaces/inlineresponse2004dataattributes.md)*
|
|
31
|
-
|
|
32
|
-
*Defined in [api.ts:768](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L768)*
|
|
33
|
-
|
|
34
|
-
*__type__*: {InlineResponse2004DataAttributes}
|
|
35
|
-
|
|
36
|
-
*__memberof__*: InlineResponse2004Data
|
|
37
|
-
|
|
38
|
-
___
|
|
39
|
-
<a id="id"></a>
|
|
40
|
-
|
|
41
|
-
### `<Optional>` id
|
|
42
|
-
|
|
43
|
-
**● id**: *`string`*
|
|
44
|
-
|
|
45
|
-
*Defined in [api.ts:756](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L756)*
|
|
46
|
-
|
|
47
|
-
*__type__*: {string}
|
|
48
|
-
|
|
49
|
-
*__memberof__*: InlineResponse2004Data
|
|
50
|
-
|
|
51
|
-
___
|
|
52
|
-
<a id="relationships"></a>
|
|
53
|
-
|
|
54
|
-
### `<Optional>` relationships
|
|
55
|
-
|
|
56
|
-
**● relationships**: *[InlineResponse2004DataRelationships](../interfaces/inlineresponse2004datarelationships.md)*
|
|
57
|
-
|
|
58
|
-
*Defined in [api.ts:774](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L774)*
|
|
59
|
-
|
|
60
|
-
*__type__*: {InlineResponse2004DataRelationships}
|
|
61
|
-
|
|
62
|
-
*__memberof__*: InlineResponse2004Data
|
|
63
|
-
|
|
64
|
-
___
|
|
65
|
-
<a id="type"></a>
|
|
66
|
-
|
|
67
|
-
### `<Optional>` type
|
|
68
|
-
|
|
69
|
-
**● type**: *[TypeEnum](../enums/inlineresponse2004data.typeenum.md)*
|
|
70
|
-
|
|
71
|
-
*Defined in [api.ts:762](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L762)*
|
|
72
|
-
|
|
73
|
-
*__type__*: {string}
|
|
74
|
-
|
|
75
|
-
*__memberof__*: InlineResponse2004Data
|
|
76
|
-
|
|
77
|
-
___
|
|
78
|
-
|
package/doc/modules/level.md
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
[@redhat-cloud-services/notifications-client](../README.md) > [Level](../modules/level.md)
|
|
2
|
-
|
|
3
|
-
# Module: Level
|
|
4
|
-
|
|
5
|
-
*__export__*:
|
|
6
|
-
|
|
7
|
-
*__namespace__*: Level
|
|
8
|
-
|
|
9
|
-
## Index
|
|
10
|
-
|
|
11
|
-
### Enumerations
|
|
12
|
-
|
|
13
|
-
* [TypeEnum](../enums/level.typeenum.md)
|
|
14
|
-
|
|
15
|
-
### Properties
|
|
16
|
-
|
|
17
|
-
* [attributes](level.md#attributes)
|
|
18
|
-
* [id](level.md#id)
|
|
19
|
-
* [type](level.md#type)
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
## Properties
|
|
24
|
-
|
|
25
|
-
<a id="attributes"></a>
|
|
26
|
-
|
|
27
|
-
### `<Optional>` attributes
|
|
28
|
-
|
|
29
|
-
**● attributes**: *[LevelAttributes](../interfaces/levelattributes.md)*
|
|
30
|
-
|
|
31
|
-
*Defined in [api.ts:874](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L874)*
|
|
32
|
-
|
|
33
|
-
*__type__*: {LevelAttributes}
|
|
34
|
-
|
|
35
|
-
*__memberof__*: Level
|
|
36
|
-
|
|
37
|
-
___
|
|
38
|
-
<a id="id"></a>
|
|
39
|
-
|
|
40
|
-
### `<Optional>` id
|
|
41
|
-
|
|
42
|
-
**● id**: *`string`*
|
|
43
|
-
|
|
44
|
-
*Defined in [api.ts:862](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L862)*
|
|
45
|
-
|
|
46
|
-
Identifier of the level record
|
|
47
|
-
|
|
48
|
-
*__type__*: {string}
|
|
49
|
-
|
|
50
|
-
*__memberof__*: Level
|
|
51
|
-
|
|
52
|
-
___
|
|
53
|
-
<a id="type"></a>
|
|
54
|
-
|
|
55
|
-
### `<Optional>` type
|
|
56
|
-
|
|
57
|
-
**● type**: *[TypeEnum](../enums/level.typeenum.md)*
|
|
58
|
-
|
|
59
|
-
*Defined in [api.ts:868](https://github.com/RedHatInsights/javascript-clients/blob/master/packages/hooks/api.ts#L868)*
|
|
60
|
-
|
|
61
|
-
Type of the returned record
|
|
62
|
-
|
|
63
|
-
*__type__*: {string}
|
|
64
|
-
|
|
65
|
-
*__memberof__*: Level
|
|
66
|
-
|
|
67
|
-
___
|
|
68
|
-
|