@alpic-ai/api 1.146.0 → 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.
Files changed (2) hide show
  1. package/dist/index.mjs +6 -1
  2. 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(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "1.146.0",
3
+ "version": "1.147.0",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",