|
1 | 1 | openapi: 3.0.2 |
2 | 2 | info: |
3 | 3 | title: Konnect Notification Hub |
4 | | - version: 1.0.0 |
| 4 | + version: 1.0.1 |
5 | 5 | description: Notification Hub API for Konnect. |
6 | 6 | contact: |
7 | 7 | name: Kong |
8 | 8 | url: 'https://konghq.com' |
9 | | - x-oas-source: kong/platform-api@35679ffe8077f0abfe92d4a31d3ec47933d65e4c |
10 | | - x-oas-source-link: 'https://github.com/Kong/platform-api/commit/35679ffe8077f0abfe92d4a31d3ec47933d65e4c' |
| 9 | + x-oas-source: kong/platform-api@db72b1ae548a532266c9ad412ed8a4c3a015488b |
| 10 | + x-oas-source-link: 'https://github.com/Kong/platform-api/commit/db72b1ae548a532266c9ad412ed8a4c3a015488b' |
11 | 11 | servers: |
12 | 12 | - url: 'https://global.api.konghq.com/v1' |
13 | 13 | description: Global Base URL |
@@ -279,6 +279,12 @@ components: |
279 | 279 | schema: |
280 | 280 | type: string |
281 | 281 | schemas: |
| 282 | + ListCursorMeta: |
| 283 | + anyOf: |
| 284 | + - $ref: '#/components/schemas/CursorMeta' |
| 285 | + - allOf: |
| 286 | + - $ref: '#/components/schemas/CursorMetaPage' |
| 287 | + deprecated: true |
282 | 288 | NotificationFilterParameters: |
283 | 289 | type: object |
284 | 290 | properties: |
@@ -404,6 +410,7 @@ components: |
404 | 410 | - dataplane-group |
405 | 411 | - dataplane |
406 | 412 | - kai-enablement |
| 413 | + - enterprise-trial |
407 | 414 | UserConfiguration: |
408 | 415 | description: Properties of an event. |
409 | 416 | type: object |
@@ -591,6 +598,14 @@ components: |
591 | 598 | - size |
592 | 599 | - next |
593 | 600 | - previous |
| 601 | + CursorMeta: |
| 602 | + description: Pagination metadata. |
| 603 | + type: object |
| 604 | + properties: |
| 605 | + page: |
| 606 | + $ref: '#/components/schemas/CursorMetaPage' |
| 607 | + required: |
| 608 | + - page |
594 | 609 | BaseError: |
595 | 610 | description: standard error |
596 | 611 | type: object |
@@ -933,9 +948,10 @@ components: |
933 | 948 | created_at: '2023-01-01T00:00:00.000Z' |
934 | 949 | updated_at: '2023-01-01T00:00:00.000Z' |
935 | 950 | meta: |
936 | | - next: '' |
937 | | - previous: '' |
938 | | - size: 10 |
| 951 | + page: |
| 952 | + next: '' |
| 953 | + previous: '' |
| 954 | + size: 10 |
939 | 955 | EventSubscriptionPayload: |
940 | 956 | value: |
941 | 957 | name: Control Plane Global |
@@ -1002,9 +1018,10 @@ components: |
1002 | 1018 | created_at: '2023-01-01T00:00:00.000Z' |
1003 | 1019 | updated_at: '2023-01-01T00:00:00.000Z' |
1004 | 1020 | meta: |
1005 | | - next: '' |
1006 | | - previous: '' |
1007 | | - size: 10 |
| 1021 | + page: |
| 1022 | + next: '' |
| 1023 | + previous: '' |
| 1024 | + size: 10 |
1008 | 1025 | EventSubscriptionResponse: |
1009 | 1026 | value: |
1010 | 1027 | id: 93f8380e-7798-4566-99e3-2edf2b57d292 |
@@ -1096,7 +1113,7 @@ components: |
1096 | 1113 | items: |
1097 | 1114 | $ref: '#/components/schemas/Notification' |
1098 | 1115 | meta: |
1099 | | - $ref: '#/components/schemas/CursorMetaPage' |
| 1116 | + $ref: '#/components/schemas/ListCursorMeta' |
1100 | 1117 | additionalProperties: false |
1101 | 1118 | required: |
1102 | 1119 | - data |
@@ -1133,7 +1150,7 @@ components: |
1133 | 1150 | items: |
1134 | 1151 | $ref: '#/components/schemas/EventSubscriptionResponse' |
1135 | 1152 | meta: |
1136 | | - $ref: '#/components/schemas/CursorMetaPage' |
| 1153 | + $ref: '#/components/schemas/ListCursorMeta' |
1137 | 1154 | additionalProperties: false |
1138 | 1155 | required: |
1139 | 1156 | - data |
|
0 commit comments