Skip to content

Commit ea20db9

Browse files
authored
Merge branch 'develop' into e2e/DPS-34825-add-cypress-tests-for-stream-create-edit
2 parents 7e3b59b + 02d7050 commit ea20db9

File tree

103 files changed

+2797
-716
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+2797
-716
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/api-v4": Upcoming Features
3+
---
4+
5+
Add endpoints for `/v4/images/sharegroups/members` and `/v4/images/sharegroups/tokens` ([#12984](https://github.com/linode/manager/pull/12984))
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/api-v4": Upcoming Features
3+
---
4+
5+
Add endpoints for `/v4/images/sharegroups` and `/v4/images/sharegroups/images` ([#12985](https://github.com/linode/manager/pull/12985))
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/api-v4": Upcoming Features
3+
---
4+
5+
Add new `filters` prop in AclpWidget type and update `Filters` type to use `DimensionFilterOperatorType` for operator ([#13006](https://github.com/linode/manager/pull/13006))

packages/api-v4/src/cloudpulse/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export interface Widgets {
8989

9090
export interface Filters {
9191
dimension_label: string;
92-
operator: string;
92+
operator: DimensionFilterOperatorType;
9393
value: string;
9494
}
9595

@@ -111,6 +111,7 @@ export interface AclpConfig {
111111

112112
export interface AclpWidget {
113113
aggregateFunction: string;
114+
filters: Filters[];
114115
groupBy?: string[];
115116
label: string;
116117
size: number;

packages/api-v4/src/delivery/types.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,16 @@ export type DestinationDetails =
6060

6161
export interface AkamaiObjectStorageDetails {
6262
access_key_id: string;
63-
access_key_secret: string;
6463
bucket_name: string;
6564
host: string;
6665
path: string;
6766
}
6867

68+
export interface AkamaiObjectStorageDetailsExtended
69+
extends AkamaiObjectStorageDetails {
70+
access_key_secret: string;
71+
}
72+
6973
type ContentType = 'application/json' | 'application/json; charset=utf-8';
7074
type DataCompressionType = 'gzip' | 'None';
7175

@@ -122,7 +126,7 @@ export interface UpdateStreamPayloadWithId extends UpdateStreamPayload {
122126
}
123127

124128
export interface AkamaiObjectStorageDetailsPayload
125-
extends Omit<AkamaiObjectStorageDetails, 'path'> {
129+
extends Omit<AkamaiObjectStorageDetailsExtended, 'path'> {
126130
path?: string;
127131
}
128132

0 commit comments

Comments
 (0)