Skip to content

Commit

Permalink
feat: webhooks management for alerts and schedules
Browse files Browse the repository at this point in the history
Implement webhooks api in tiger functions

JIRA: F1-349
  • Loading branch information
hackerstanislav committed May 23, 2024
1 parent 785ecee commit 395dbd1
Show file tree
Hide file tree
Showing 33 changed files with 9,995 additions and 5,556 deletions.
10 changes: 10 additions & 0 deletions common/changes/@gooddata/sdk-ui-all/master_2024-05-20-12-14.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "F1-349 Implement webhooks api in tiger functions",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
881 changes: 623 additions & 258 deletions libs/api-client-tiger/api/api-client-tiger.api.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions libs/api-client-tiger/src/generated/afm-rest-api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -778,13 +778,13 @@ export interface ClusteringResult {
* @type {Array<number>}
* @memberof ClusteringResult
*/
xcoord: Array<number>;
ycoord: Array<number>;
/**
*
* @type {Array<number>}
* @memberof ClusteringResult
*/
ycoord: Array<number>;
xcoord: Array<number>;
}
/**
* Filter the result by comparing specified metric to given constant value, using given comparison operator.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2672,13 +2672,13 @@
"nullable": true
}
},
"xcoord": {
"ycoord": {
"type": "array",
"items": {
"type": "number"
}
},
"ycoord": {
"xcoord": {
"type": "array",
"items": {
"type": "number"
Expand Down
Loading

0 comments on commit 395dbd1

Please sign in to comment.