@camstack/addon-tailscale 1.1.12 → 1.1.13
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/client/tailscale.addon.js +1 -1
- package/dist/client/tailscale.addon.mjs +1 -1
- package/dist/{dist-DEJ-eXxc.mjs → dist-CfULNCIt.mjs} +19 -1
- package/dist/{dist-CWHKWdKw.js → dist-eH91demF.js} +19 -1
- package/dist/ingress/tailscale-ingress.addon.js +1 -1
- package/dist/ingress/tailscale-ingress.addon.mjs +1 -1
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
24
24
|
enumerable: true
|
|
25
25
|
}) : target, mod));
|
|
26
26
|
//#endregion
|
|
27
|
-
const require_dist = require("../dist-
|
|
27
|
+
const require_dist = require("../dist-eH91demF.js");
|
|
28
28
|
let node_child_process = require("node:child_process");
|
|
29
29
|
let node_util = require("node:util");
|
|
30
30
|
let node_fs = require("node:fs");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as EventCategory, n as networkAccessCapability, r as BaseAddon, t as meshNetworkCapability } from "../dist-
|
|
1
|
+
import { i as EventCategory, n as networkAccessCapability, r as BaseAddon, t as meshNetworkCapability } from "../dist-CfULNCIt.mjs";
|
|
2
2
|
import { execFile, spawn } from "node:child_process";
|
|
3
3
|
import { promisify } from "node:util";
|
|
4
4
|
import * as fs from "node:fs";
|
|
@@ -7032,7 +7032,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7032
7032
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7033
7033
|
* configure the primary location.
|
|
7034
7034
|
*/
|
|
7035
|
-
defaultsTo: string().optional()
|
|
7035
|
+
defaultsTo: string().optional(),
|
|
7036
|
+
/**
|
|
7037
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7038
|
+
* FRESH install:
|
|
7039
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7040
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7041
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7042
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7043
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7044
|
+
*
|
|
7045
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7046
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7047
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7048
|
+
*/
|
|
7049
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7036
7050
|
});
|
|
7037
7051
|
var DecoderStatsSchema = object({
|
|
7038
7052
|
inputFps: number(),
|
|
@@ -7879,6 +7893,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
7879
7893
|
var BrokerRtspClientSchema = object({
|
|
7880
7894
|
sessionId: string(),
|
|
7881
7895
|
remoteAddr: string(),
|
|
7896
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
7897
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
7898
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
7899
|
+
userAgent: string().nullish(),
|
|
7882
7900
|
playing: boolean(),
|
|
7883
7901
|
muted: boolean(),
|
|
7884
7902
|
connectedAt: number(),
|
|
@@ -7032,7 +7032,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7032
7032
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7033
7033
|
* configure the primary location.
|
|
7034
7034
|
*/
|
|
7035
|
-
defaultsTo: string().optional()
|
|
7035
|
+
defaultsTo: string().optional(),
|
|
7036
|
+
/**
|
|
7037
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7038
|
+
* FRESH install:
|
|
7039
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7040
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7041
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7042
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7043
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7044
|
+
*
|
|
7045
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7046
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7047
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7048
|
+
*/
|
|
7049
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7036
7050
|
});
|
|
7037
7051
|
var DecoderStatsSchema = object({
|
|
7038
7052
|
inputFps: number(),
|
|
@@ -7879,6 +7893,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
7879
7893
|
var BrokerRtspClientSchema = object({
|
|
7880
7894
|
sessionId: string(),
|
|
7881
7895
|
remoteAddr: string(),
|
|
7896
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
7897
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
7898
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
7899
|
+
userAgent: string().nullish(),
|
|
7882
7900
|
playing: boolean(),
|
|
7883
7901
|
muted: boolean(),
|
|
7884
7902
|
connectedAt: number(),
|
|
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
|
|
|
2
2
|
__esModule: { value: true },
|
|
3
3
|
[Symbol.toStringTag]: { value: "Module" }
|
|
4
4
|
});
|
|
5
|
-
const require_dist = require("../dist-
|
|
5
|
+
const require_dist = require("../dist-eH91demF.js");
|
|
6
6
|
let node_child_process = require("node:child_process");
|
|
7
7
|
let node_util = require("node:util");
|
|
8
8
|
let node_crypto = require("node:crypto");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as EventCategory, n as networkAccessCapability, r as BaseAddon } from "../dist-
|
|
1
|
+
import { i as EventCategory, n as networkAccessCapability, r as BaseAddon } from "../dist-CfULNCIt.mjs";
|
|
2
2
|
import { execFile } from "node:child_process";
|
|
3
3
|
import { promisify } from "node:util";
|
|
4
4
|
import { randomUUID } from "node:crypto";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-tailscale",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.13",
|
|
4
4
|
"description": "Tailscale bundle for CamStack — joins the host to a tailnet (client) and exposes the hub via Serve/Funnel (ingress). Multi-entry npm package shipping 2 addons under a single bundle.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|