@yoooclaw/phone-notifications 1.12.1 → 1.12.3
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/bin/ntf.cjs +2 -5
- package/dist/bin/ntf.cjs.map +3 -3
- package/dist/env.d.ts +8 -1
- package/dist/env.d.ts.map +1 -1
- package/dist/index.cjs +507 -1292
- package/dist/index.cjs.map +13 -16
- package/dist/index.d.ts.map +1 -1
- package/dist/plugin/recordings.d.ts +0 -2
- package/dist/plugin/recordings.d.ts.map +1 -1
- package/dist/recording/downloader.d.ts +0 -7
- package/dist/recording/downloader.d.ts.map +1 -1
- package/dist/recording/index.d.ts +2 -4
- package/dist/recording/index.d.ts.map +1 -1
- package/dist/recording/result-writer.d.ts +1 -2
- package/dist/recording/result-writer.d.ts.map +1 -1
- package/dist/recording/storage.d.ts +1 -1
- package/dist/tunnel/frame-slimmer.d.ts +15 -1
- package/dist/tunnel/frame-slimmer.d.ts.map +1 -1
- package/dist/tunnel/relay-client.d.ts.map +1 -1
- package/dist/types.d.ts +12 -67
- package/dist/types.d.ts.map +1 -1
- package/dist/update/checker.d.ts +2 -1
- package/dist/update/checker.d.ts.map +1 -1
- package/dist/update/index.d.ts +10 -0
- package/dist/update/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/recording/asr.d.ts +0 -119
- package/dist/recording/asr.d.ts.map +0 -1
- package/dist/recording/handler.d.ts +0 -38
- package/dist/recording/handler.d.ts.map +0 -1
- package/dist/recording/whisper-local.d.ts +0 -81
- package/dist/recording/whisper-local.d.ts.map +0 -1
package/dist/bin/ntf.cjs
CHANGED
|
@@ -4784,9 +4784,6 @@ function readPersistedEnvName() {
|
|
|
4784
4784
|
return;
|
|
4785
4785
|
}
|
|
4786
4786
|
function loadEnvName() {
|
|
4787
|
-
const fromEnvVar = process.env.PHONE_NOTIFICATIONS_ENV?.trim();
|
|
4788
|
-
if (fromEnvVar && VALID_ENVS.has(fromEnvVar))
|
|
4789
|
-
return fromEnvVar;
|
|
4790
4787
|
const fromDotEnv = readPersistedEnvName();
|
|
4791
4788
|
if (fromDotEnv)
|
|
4792
4789
|
return fromDotEnv;
|
|
@@ -5792,7 +5789,7 @@ function pickNewestVersion(versions) {
|
|
|
5792
5789
|
var import_node_fs15 = require("node:fs");
|
|
5793
5790
|
function readBuildInjectedVersion() {
|
|
5794
5791
|
if (false) {}
|
|
5795
|
-
const version = "1.12.
|
|
5792
|
+
const version = "1.12.3".trim();
|
|
5796
5793
|
return version || undefined;
|
|
5797
5794
|
}
|
|
5798
5795
|
function readPluginVersionFromPackageJson() {
|
|
@@ -6456,5 +6453,5 @@ program2.parseAsync(process.argv).catch((err) => {
|
|
|
6456
6453
|
process.exit(1);
|
|
6457
6454
|
});
|
|
6458
6455
|
|
|
6459
|
-
//# debugId=
|
|
6456
|
+
//# debugId=DA16E2C81C86F13C64756E2164756E21
|
|
6460
6457
|
//# sourceMappingURL=ntf.cjs.map
|