Update Deps

This commit is contained in:
ingalls
2025-12-16 13:52:48 -07:00
parent 98ab5cc747
commit dea4d051a8
4 changed files with 35 additions and 13 deletions

View File

@@ -474,7 +474,7 @@
</div>
<div class='col-12 col-md-6'>
<TablerToggle
v-model='shared'
v-model='editLease.shared'
description='By default only the user that created a Lease can manage it. If you are operating as part of an agency, turn on Lease Sharing to allow all users in your Channel to manage the lease'
:disabled='disabled'
label='Shared Lease'
@@ -549,7 +549,7 @@
import { std } from '../../../../std.ts';
import { validateURL } from '../../../../base/validators.ts';
import CopyField from '../../util/CopyField.vue';
import { ref, watch, onMounted } from 'vue';
import { ref, onMounted } from 'vue';
import type { VideoLease, VideoLeaseResponse, VideoLeaseProtocols, VideoLeaseMetadata } from '../../../../types.ts';
import VideoLeaseSourceType from '../../util/VideoLeaseSourceType.vue'
import GroupSelect from '../../../util/GroupSelect.vue';

View File

@@ -1,7 +1,7 @@
<template>
<svg
ref='icons'
id='icons'
ref='icons'
class='d-none'
>
<symbol

View File

@@ -49,7 +49,10 @@
/>
</div>
<div class='flex-grow-1 d-flex flex-column gap-1 py-2' style='min-width: 0;'>
<div
class='flex-grow-1 d-flex flex-column gap-1 py-2'
style='min-width: 0;'
>
<div class='d-flex align-items-center gap-2'>
<span
class='fw-semibold text-truncate'

View File

@@ -10468,7 +10468,7 @@ export interface paths {
/** @description Order in which results are returned based on the "sort" query param */
order: "asc" | "desc";
/** @description No Description */
sort: "id" | "name" | "created" | "updated" | "username" | "connection" | "layer" | "source_id" | "source_type" | "source_model" | "publish" | "recording" | "ephemeral" | "channel" | "expiration" | "path" | "stream_user" | "stream_pass" | "read_user" | "read_pass" | "proxy" | "enableRLS";
sort: "id" | "name" | "created" | "updated" | "username" | "connection" | "layer" | "source_id" | "source_type" | "source_model" | "publish" | "recording" | "share" | "ephemeral" | "channel" | "expiration" | "path" | "stream_user" | "stream_pass" | "read_user" | "read_pass" | "proxy" | "enableRLS";
/** @description Filter results by a human readable name field */
filter: string;
};
@@ -10502,6 +10502,7 @@ export interface paths {
source_model: string;
publish: boolean;
recording: boolean;
share: boolean;
ephemeral: boolean;
channel: null | string;
expiration: null | string;
@@ -10614,6 +10615,11 @@ export interface paths {
* @default false
*/
publish: boolean;
/**
* @description Allow other users to manage lease if they are also members of the channel
* @default false
*/
share: boolean;
/**
* @description Increase stream security by enforcing a seperate read and write username/password
* @default false
@@ -10648,6 +10654,7 @@ export interface paths {
source_model: string;
publish: boolean;
recording: boolean;
share: boolean;
ephemeral: boolean;
channel: null | string;
expiration: null | string;
@@ -10879,6 +10886,7 @@ export interface paths {
source_model: string;
publish: boolean;
recording: boolean;
share: boolean;
ephemeral: boolean;
channel: null | string;
expiration: null | string;
@@ -11093,6 +11101,8 @@ export interface paths {
source_model?: string;
channel?: string | null;
secure?: boolean;
/** @description Allow other users to manage lease if they are also members of the channel */
share?: boolean;
/**
* @description Rotate Read-User Credentials if using seperate read/write user - infers secure: true
* @default false
@@ -11129,6 +11139,7 @@ export interface paths {
source_model: string;
publish: boolean;
recording: boolean;
share: boolean;
ephemeral: boolean;
channel: null | string;
expiration: null | string;
@@ -32705,7 +32716,7 @@ export interface paths {
/** @description Order in which results are returned based on the "sort" query param */
order: "asc" | "desc";
/** @description No Description */
sort: "id" | "name" | "created" | "updated" | "username" | "connection" | "layer" | "source_id" | "source_type" | "source_model" | "publish" | "recording" | "ephemeral" | "channel" | "expiration" | "path" | "stream_user" | "stream_pass" | "read_user" | "read_pass" | "proxy" | "enableRLS";
sort: "id" | "name" | "created" | "updated" | "username" | "connection" | "layer" | "source_id" | "source_type" | "source_model" | "publish" | "recording" | "share" | "ephemeral" | "channel" | "expiration" | "path" | "stream_user" | "stream_pass" | "read_user" | "read_pass" | "proxy" | "enableRLS";
/** @description No Description */
expired: "true" | "false" | "all";
/** @description No Description */
@@ -32740,6 +32751,7 @@ export interface paths {
source_model: string;
publish: boolean;
recording: boolean;
share: boolean;
ephemeral: boolean;
channel: null | string;
expiration: null | string;
@@ -32854,6 +32866,11 @@ export interface paths {
* @default false
*/
publish: boolean;
/**
* @description Allow other users to manage lease if they are also members of the channel
* @default false
*/
share: boolean;
/**
* @description Increase stream security by enforcing a seperate read and write username/password
* @default false
@@ -32887,6 +32904,7 @@ export interface paths {
source_model: string;
publish: boolean;
recording: boolean;
share: boolean;
ephemeral: boolean;
channel: null | string;
expiration: null | string;
@@ -33006,6 +33024,7 @@ export interface paths {
source_model: string;
publish: boolean;
recording: boolean;
share: boolean;
ephemeral: boolean;
channel: null | string;
expiration: null | string;
@@ -33197,14 +33216,13 @@ export interface paths {
channel?: string | null;
secure?: boolean;
/** @description Record streams to disk */
recording: boolean;
recording?: boolean;
/** @description Publish stream URL to TAK Server Video Manager */
publish: boolean;
/**
* @description System Admins can create non-expiring leases
* @default false
*/
permanent: boolean;
publish?: boolean;
/** @description Allow other users to manage lease if they are also members of the channel */
share?: boolean;
/** @description System Admins can create non-expiring leases */
permanent?: boolean;
proxy?: string;
};
};
@@ -33229,6 +33247,7 @@ export interface paths {
source_model: string;
publish: boolean;
recording: boolean;
share: boolean;
ephemeral: boolean;
channel: null | string;
expiration: null | string;