@isaacthoman/pulpo 0.103.5 → 0.105.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.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17337,6 +17337,9 @@ var createApiKeySchema = external_exports.object({
|
|
|
17337
17337
|
monthlyBudgetMicros: external_exports.number().int().positive().nullable().default(null),
|
|
17338
17338
|
lifetimeBudgetMicros: external_exports.number().int().positive().nullable().default(null)
|
|
17339
17339
|
});
|
|
17340
|
+
var updateApiKeySchema = external_exports.object({
|
|
17341
|
+
enabled: external_exports.boolean()
|
|
17342
|
+
});
|
|
17340
17343
|
var chatSummarySchema = external_exports.object({
|
|
17341
17344
|
id: idSchema,
|
|
17342
17345
|
title: external_exports.string(),
|
|
@@ -18089,7 +18092,7 @@ async function runModelTest(input) {
|
|
|
18089
18092
|
}
|
|
18090
18093
|
|
|
18091
18094
|
// src/index.ts
|
|
18092
|
-
var CLI_VERSION = true ? "0.
|
|
18095
|
+
var CLI_VERSION = true ? "0.105.0" : "0.1.0";
|
|
18093
18096
|
var CLI_BUNDLED = true;
|
|
18094
18097
|
var commandIo = /* @__PURE__ */ new WeakMap();
|
|
18095
18098
|
var commandClientFactory = /* @__PURE__ */ new WeakMap();
|