Commit 386f489 1 parent bdb6073 commit 386f489 Copy full SHA for 386f489
File tree 5 files changed +38
-1
lines changed
gravitee-apim-portal-webui/projects/portal-webclient-sdk/src/lib
5 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export interface GetSubscriptionByIdRequestParams {
41
41
/** Id of a subscription. */
42
42
subscriptionId : string ;
43
43
/** Comma-separated list of related objects to include in the response. */
44
- include ?: Array < 'keys' > ;
44
+ include ?: Array < 'keys' | 'consumerConfiguration' > ;
45
45
}
46
46
47
47
export interface GetSubscriptionsRequestParams {
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ export * from './searchApplicationsLogsParams';
116
116
export * from './simpleApplicationSettings' ;
117
117
export * from './subscription' ;
118
118
export * from './subscriptionConfigurationInput' ;
119
+ export * from './subscriptionConsumerConfiguration' ;
119
120
export * from './subscriptionInput' ;
120
121
export * from './subscriptionsResponse' ;
121
122
export * from './themeLinks' ;
Original file line number Diff line number Diff line change @@ -56,5 +56,9 @@ export interface SearchApplicationsLogsParams {
56
56
* List of filters for response time ranges
57
57
*/
58
58
responseTimeRanges ?: Array < ResponseTimeRange > ;
59
+ /**
60
+ * Filter for text in either the request or response body
61
+ */
62
+ bodyText ?: string ;
59
63
}
60
64
Original file line number Diff line number Diff line change 8
8
* https://openapi-generator.tech
9
9
* Do not edit the class manually.
10
10
*/
11
+ import { SubscriptionConsumerConfiguration } from './subscriptionConsumerConfiguration' ;
11
12
import { Key } from './key' ;
12
13
13
14
@@ -88,6 +89,7 @@ export interface Subscription {
88
89
* Only returned with (*)/subscriptions/{subscriptionId}*. Need *include* query param to contain \'keys\'. List of APIKeys of the subscription.
89
90
*/
90
91
keys ?: Array < Key > ;
92
+ consumerConfiguration ?: SubscriptionConsumerConfiguration ;
91
93
}
92
94
export namespace Subscription {
93
95
export type StatusEnum = 'PENDING' | 'ACCEPTED' | 'CLOSED' | 'REJECTED' | 'PAUSED' ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Gravitee.io Portal Rest API
3
+ * API dedicated to the devportal part of Gravitee
4
+ *
5
+ * Contact: contact@graviteesource.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8
+ * https://openapi-generator.tech
9
+ * Do not edit the class manually.
10
+ */
11
+
12
+
13
+ /**
14
+ * Consumer configuration associated to the subscription in case it is attached to a push plan.
15
+ */
16
+ export interface SubscriptionConsumerConfiguration {
17
+ /**
18
+ * The id of the targeted entrypoint
19
+ */
20
+ entrypointId : string ;
21
+ /**
22
+ * The channel to consume
23
+ */
24
+ channel ?: string ;
25
+ /**
26
+ * The configuration to use at subscription time to push to the target service.
27
+ */
28
+ entrypointConfiguration ?: object ;
29
+ }
30
+
You can’t perform that action at this time.
0 commit comments