@kohost/api-client 3.2.12 → 3.2.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.
@@ -164,6 +164,7 @@ export interface Camera {
164
164
  id?: string;
165
165
  driver?: "cloudflare-stream" | "aws-kinesis" | "digital-watchdog";
166
166
  allowedOrigins?: string[];
167
+ authRequired?: boolean;
167
168
  iframe?: string | null;
168
169
  hls?: string | null;
169
170
  webRTC?: string | null;
@@ -815,6 +815,7 @@ export interface Camera {
815
815
  id?: string;
816
816
  driver?: "cloudflare-stream" | "aws-kinesis" | "digital-watchdog";
817
817
  allowedOrigins?: string[];
818
+ authRequired?: boolean;
818
819
  iframe?: string | null;
819
820
  hls?: string | null;
820
821
  webRTC?: string | null;
@@ -63,6 +63,9 @@
63
63
  "type": "string"
64
64
  }
65
65
  },
66
+ "authRequired": {
67
+ "type": "boolean"
68
+ },
66
69
  "iframe": {
67
70
  "type": ["string", "null"]
68
71
  },
@@ -10172,6 +10172,9 @@ var require_camera = __commonJS({
10172
10172
  type: "string"
10173
10173
  }
10174
10174
  },
10175
+ authRequired: {
10176
+ type: "boolean"
10177
+ },
10175
10178
  iframe: {
10176
10179
  type: ["string", "null"]
10177
10180
  },