@prisma/cli 3.0.0-dev.105.1 → 3.0.0-dev.107.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/controllers/app.js
CHANGED
|
@@ -1088,7 +1088,7 @@ function toAppDomainSummary(domain) {
|
|
|
1088
1088
|
type: domain.type,
|
|
1089
1089
|
url: domain.url,
|
|
1090
1090
|
hostname: domain.hostname,
|
|
1091
|
-
|
|
1091
|
+
appId: domain.appId,
|
|
1092
1092
|
status: domain.status,
|
|
1093
1093
|
foundryStatus: domain.foundryStatus,
|
|
1094
1094
|
failureReason: domain.failureReason,
|
|
@@ -404,9 +404,9 @@ async function listComputeServices(client, options) {
|
|
|
404
404
|
liveUrl: toAbsoluteUrl(service.appEndpointDomain ?? null)
|
|
405
405
|
}));
|
|
406
406
|
}
|
|
407
|
-
async function listComputeServiceDomains(client,
|
|
407
|
+
async function listComputeServiceDomains(client, appId, signal) {
|
|
408
408
|
const result = await client.GET("/v1/apps/{appId}/domains", {
|
|
409
|
-
params: { path: { appId
|
|
409
|
+
params: { path: { appId } },
|
|
410
410
|
signal
|
|
411
411
|
});
|
|
412
412
|
if (result.error || !result.data) throw domainApiCallError("Failed to list custom domains", result.response, result.error);
|
|
@@ -418,7 +418,7 @@ function normalizeDomainRecord(domain) {
|
|
|
418
418
|
type: domain.type,
|
|
419
419
|
url: domain.url,
|
|
420
420
|
hostname: domain.hostname,
|
|
421
|
-
|
|
421
|
+
appId: domain.appId,
|
|
422
422
|
status: domain.status,
|
|
423
423
|
foundryStatus: domain.foundryStatus,
|
|
424
424
|
failureReason: domain.failureReason,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/cli",
|
|
3
|
-
"version": "3.0.0-dev.
|
|
3
|
+
"version": "3.0.0-dev.107.1",
|
|
4
4
|
"description": "Command-line interface for the Prisma Developer Platform.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@clack/prompts": "^1.5.0",
|
|
47
47
|
"@prisma/compute-sdk": "0.31.0",
|
|
48
48
|
"@prisma/credentials-store": "^7.8.0",
|
|
49
|
-
"@prisma/management-api-sdk": "^1.
|
|
49
|
+
"@prisma/management-api-sdk": "^1.46.0",
|
|
50
50
|
"better-result": "^2.9.2",
|
|
51
51
|
"colorette": "^2.0.20",
|
|
52
52
|
"commander": "^14.0.3",
|