Skip to content

Commit 0d02cd5

Browse files
committed
fix(audit_trail): apply tags parameter fix from #2468
1 parent f64a252 commit 0d02cd5

File tree

1 file changed

+10
-3
lines changed
  • packages_generated/audit_trail/src/v1alpha1

1 file changed

+10
-3
lines changed

packages_generated/audit_trail/src/v1alpha1/api.gen.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
unmarshalListEventsResponse,
1818
unmarshalListExportJobsResponse,
1919
unmarshalListProductsResponse,
20-
} from './marshalling.gen'
20+
} from './marshalling.gen.js'
2121
import type {
2222
CreateExportJobRequest,
2323
DeleteExportJobRequest,
@@ -32,7 +32,7 @@ import type {
3232
ListExportJobsResponse,
3333
ListProductsRequest,
3434
ListProductsResponse,
35-
} from './types.gen'
35+
} from './types.gen.js'
3636

3737
const jsonContentHeaders = {
3838
'Content-Type': 'application/json; charset=utf-8',
@@ -218,7 +218,14 @@ export class API extends ParentAPI {
218218
'page_size',
219219
request.pageSize ?? this.client.settings.defaultPageSize,
220220
],
221-
['tags', request.tags],
221+
[
222+
'tags',
223+
request.tags
224+
? Object.entries(request.tags).map(
225+
([key, value]) => `${key}:${value}`,
226+
)
227+
: undefined,
228+
],
222229
),
223230
},
224231
unmarshalListExportJobsResponse,

0 commit comments

Comments
 (0)