@alpic-ai/api 1.169.0 → 1.169.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/index.mjs +0 -6
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1444,15 +1444,9 @@ const customerCreditsSchema = z.object({
|
|
|
1444
1444
|
expiresAt: z.number().nullable(),
|
|
1445
1445
|
currency: z.string()
|
|
1446
1446
|
});
|
|
1447
|
-
const customerUsageSchema = z.object({
|
|
1448
|
-
amountInCents: z.number(),
|
|
1449
|
-
currency: z.string(),
|
|
1450
|
-
periodEnd: z.number()
|
|
1451
|
-
});
|
|
1452
1447
|
const partnerDiscountSchema = z.object({ endsAt: z.number() });
|
|
1453
1448
|
z.object({
|
|
1454
1449
|
customerCredits: customerCreditsSchema.nullable(),
|
|
1455
|
-
customerUsage: customerUsageSchema.nullable(),
|
|
1456
1450
|
partnerDiscount: partnerDiscountSchema.nullable()
|
|
1457
1451
|
});
|
|
1458
1452
|
const telemetrySignalSchema = z.enum([
|