File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
packages_generated/audit_trail/src/v1alpha1 Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {
1717 unmarshalListEventsResponse ,
1818 unmarshalListExportJobsResponse ,
1919 unmarshalListProductsResponse ,
20- } from './marshalling.gen'
20+ } from './marshalling.gen.js '
2121import 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
3737const 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 ,
You can’t perform that action at this time.
0 commit comments