Skip to content

Commit d5f1b4a

Browse files
fix: bump contentful-sdk-core to ensure httpsAgent isn't copied [EXT-5676] (#2471)
1 parent 08ddb7b commit d5f1b4a

File tree

5 files changed

+3500
-4317
lines changed

5 files changed

+3500
-4317
lines changed

lib/entities/bulk-action.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export enum BulkActionStatus {
3333
}
3434

3535
const STATUSES = Object.values(BulkActionStatus)
36-
type BulkActionStatuses = typeof STATUSES[number]
36+
type BulkActionStatuses = (typeof STATUSES)[number]
3737

3838
interface BulkActionFailedError {
3939
sys: { type: 'Error'; id: 'BulkActionFailed' }

lib/entities/resource-type.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type OptionalSysFields =
5454

5555
export type SpaceEnvResourceTypeProps = Pick<
5656
ResourceTypeProps,
57-
typeof publicResourceTypeFields[number]
57+
(typeof publicResourceTypeFields)[number]
5858
> & {
5959
// we mark timestamps and users as optional to include system types like `Contentful:Entry` into the public response
6060
sys: Partial<Pick<ResourceTypeProps['sys'], OptionalSysFields>> &

0 commit comments

Comments
 (0)