Skip to content

Commit 189090b

Browse files
refactor: make content.gen a .js file (#2491)
Co-authored-by: Laure-di <[email protected]>
1 parent 518cecd commit 189090b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {
2727
unmarshalPublicKey,
2828
unmarshalSignResponse,
2929
unmarshalVerifyResponse,
30-
} from './marshalling.gen'
30+
} from './marshalling.gen.js'
3131
import type {
3232
CreateKeyRequest,
3333
DataKey,
@@ -58,7 +58,7 @@ import type {
5858
UpdateKeyRequest,
5959
VerifyRequest,
6060
VerifyResponse,
61-
} from './types.gen'
61+
} from './types.gen.js'
6262

6363
const jsonContentHeaders = {
6464
'Content-Type': 'application/json; charset=utf-8',

packages_generated/key_manager/src/v1alpha1/marshalling.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import type {
2929
UpdateKeyRequest,
3030
VerifyRequest,
3131
VerifyResponse,
32-
} from './types.gen'
32+
} from './types.gen.js'
3333

3434
const unmarshalKeyRotationPolicy = (data: unknown): KeyRotationPolicy => {
3535
if (!isJSONObject(data)) {

packages_generated/secret/src/v1beta1/api.gen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
unmarshalListTagsResponse,
2424
unmarshalSecret,
2525
unmarshalSecretVersion,
26-
} from './marshalling.gen'
26+
} from './marshalling.gen.js'
2727
import type {
2828
AccessSecretVersionByPathRequest,
2929
AccessSecretVersionRequest,
@@ -55,7 +55,7 @@ import type {
5555
UnprotectSecretRequest,
5656
UpdateSecretRequest,
5757
UpdateSecretVersionRequest,
58-
} from './types.gen'
58+
} from './types.gen.js'
5959

6060
const jsonContentHeaders = {
6161
'Content-Type': 'application/json; charset=utf-8',

packages_generated/secret/src/v1beta1/marshalling.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import type {
2626
SecretVersion,
2727
UpdateSecretRequest,
2828
UpdateSecretVersionRequest,
29-
} from './types.gen'
29+
} from './types.gen.js'
3030

3131
const unmarshalEphemeralProperties = (data: unknown): EphemeralProperties => {
3232
if (!isJSONObject(data)) {

0 commit comments

Comments
 (0)