@alpic-ai/api 1.146.1 → 1.147.0
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/index.mjs +6 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -522,6 +522,10 @@ const domainFailureReasonSchema = z.enum([
|
|
|
522
522
|
"invalid_domain",
|
|
523
523
|
"other"
|
|
524
524
|
]);
|
|
525
|
+
const projectDomainMappingSchema = z.object({
|
|
526
|
+
pathPrefix: z.string(),
|
|
527
|
+
environment: environmentSchema$1
|
|
528
|
+
});
|
|
525
529
|
z.object({
|
|
526
530
|
name: z.string(),
|
|
527
531
|
createdAt: z.coerce.date(),
|
|
@@ -531,7 +535,8 @@ z.object({
|
|
|
531
535
|
"failed"
|
|
532
536
|
]),
|
|
533
537
|
failureReason: domainFailureReasonSchema.nullable(),
|
|
534
|
-
environment: environmentSchema$1
|
|
538
|
+
environment: environmentSchema$1,
|
|
539
|
+
mappings: z.array(projectDomainMappingSchema)
|
|
535
540
|
});
|
|
536
541
|
const serverFieldsSchema$1 = z.object({
|
|
537
542
|
$schema: z.string(),
|