@isaacthoman/pulpo 0.87.0 → 0.88.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 +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -17074,6 +17074,11 @@ var webToolsSettingsSchema = external_exports.object({
|
|
|
17074
17074
|
maxAgeSeconds: 0
|
|
17075
17075
|
})
|
|
17076
17076
|
});
|
|
17077
|
+
var dictationSettingsSchema = external_exports.object({
|
|
17078
|
+
enabled: external_exports.boolean().default(false),
|
|
17079
|
+
billUsers: external_exports.boolean().default(false),
|
|
17080
|
+
pricePerMinuteMicros: external_exports.number().int().min(0).max(1e9).default(1e4)
|
|
17081
|
+
});
|
|
17077
17082
|
var managementScopeSchema = external_exports.enum([
|
|
17078
17083
|
"account:read",
|
|
17079
17084
|
"account:write",
|
|
@@ -18077,7 +18082,7 @@ async function runModelTest(input) {
|
|
|
18077
18082
|
}
|
|
18078
18083
|
|
|
18079
18084
|
// src/index.ts
|
|
18080
|
-
var CLI_VERSION = true ? "0.
|
|
18085
|
+
var CLI_VERSION = true ? "0.88.0" : "0.1.0";
|
|
18081
18086
|
var CLI_BUNDLED = true;
|
|
18082
18087
|
var commandIo = /* @__PURE__ */ new WeakMap();
|
|
18083
18088
|
var commandClientFactory = /* @__PURE__ */ new WeakMap();
|