@alpic-ai/api 1.168.0 → 1.168.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.
Files changed (2) hide show
  1. package/dist/index.mjs +10 -0
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -256,6 +256,16 @@ z.object({
256
256
  clientSecret: z.string(),
257
257
  clientScopes: z.array(z.string())
258
258
  });
259
+ z.enum([
260
+ "opening_balance",
261
+ "free_seed",
262
+ "paid_conversion_floor",
263
+ "top_up",
264
+ "usage",
265
+ "refund",
266
+ "admin_adjustment"
267
+ ]);
268
+ z.enum(["playground"]);
259
269
  const deploymentStatusSchema$1 = z.enum([
260
270
  "ongoing",
261
271
  "deployed",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/api",
3
- "version": "1.168.0",
3
+ "version": "1.168.1",
4
4
  "description": "Contract for the Alpic API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",