chore(next-utils): fix generic propagation in createMintelDirectusClient and publish v1.7.12
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 1s
Monorepo Pipeline / 🧹 Lint (push) Successful in 45s
Monorepo Pipeline / 🧪 Test (push) Successful in 54s
Monorepo Pipeline / 🏗️ Build (push) Failing after 1m46s
Monorepo Pipeline / 🚀 Release (push) Has been skipped
Monorepo Pipeline / 🐳 Build Directus (Base) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Build-Base (push) Has been skipped
Monorepo Pipeline / 🐳 Build Production Runtime (push) Has been skipped
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 1s
Monorepo Pipeline / 🧹 Lint (push) Successful in 45s
Monorepo Pipeline / 🧪 Test (push) Successful in 54s
Monorepo Pipeline / 🏗️ Build (push) Failing after 1m46s
Monorepo Pipeline / 🚀 Release (push) Has been skipped
Monorepo Pipeline / 🐳 Build Directus (Base) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Build-Base (push) Has been skipped
Monorepo Pipeline / 🐳 Build Production Runtime (push) Has been skipped
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@mintel/next-utils",
|
"name": "@mintel/next-utils",
|
||||||
"version": "1.7.11",
|
"version": "1.7.12",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public",
|
"access": "public",
|
||||||
"registry": "https://npm.infra.mintel.me"
|
"registry": "https://npm.infra.mintel.me"
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ export function createMintelDirectusClient<Schema extends object = any>(
|
|||||||
|
|
||||||
// 1. If an explicit URL is provided, use it.
|
// 1. If an explicit URL is provided, use it.
|
||||||
if (url) {
|
if (url) {
|
||||||
return createDirectus(url).with(rest()).with(authentication());
|
return createDirectus<Schema>(url).with(rest()).with(authentication());
|
||||||
}
|
}
|
||||||
|
|
||||||
// 2. On server: Prioritize INTERNAL_DIRECTUS_URL, fallback to DIRECTUS_URL
|
// 2. On server: Prioritize INTERNAL_DIRECTUS_URL, fallback to DIRECTUS_URL
|
||||||
@@ -30,7 +30,9 @@ export function createMintelDirectusClient<Schema extends object = any>(
|
|||||||
process.env.INTERNAL_DIRECTUS_URL ||
|
process.env.INTERNAL_DIRECTUS_URL ||
|
||||||
process.env.DIRECTUS_URL ||
|
process.env.DIRECTUS_URL ||
|
||||||
"http://localhost:8055";
|
"http://localhost:8055";
|
||||||
return createDirectus(directusUrl).with(rest()).with(authentication());
|
return createDirectus<Schema>(directusUrl)
|
||||||
|
.with(rest())
|
||||||
|
.with(authentication());
|
||||||
}
|
}
|
||||||
|
|
||||||
// 3. In browser: Use a proxy path if we are on a different origin,
|
// 3. In browser: Use a proxy path if we are on a different origin,
|
||||||
@@ -41,7 +43,7 @@ export function createMintelDirectusClient<Schema extends object = any>(
|
|||||||
? `${window.location.origin}${proxyPath}`
|
? `${window.location.origin}${proxyPath}`
|
||||||
: proxyPath;
|
: proxyPath;
|
||||||
|
|
||||||
return createDirectus(browserUrl).with(rest()).with(authentication());
|
return createDirectus<Schema>(browserUrl).with(rest()).with(authentication());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user