@elizaos/capacitor-camera 1.0.0 → 2.0.3-beta.2

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/plugin.js CHANGED
@@ -13,6 +13,37 @@ var capacitorElizaCamera = (function (exports, core) {
13
13
  "video/mp4",
14
14
  ];
15
15
  const getSupportedMimeType = () => VIDEO_MIME_TYPES.find((m) => MediaRecorder.isTypeSupported(m)) ?? null;
16
+ const getMediaDevices = () => {
17
+ if (!navigator.mediaDevices?.getUserMedia) {
18
+ throw new Error("Camera media devices API is not available");
19
+ }
20
+ return navigator.mediaDevices;
21
+ };
22
+ const assertPositiveFinite = (value, name) => {
23
+ if (!Number.isFinite(value) || value <= 0) {
24
+ throw new Error(`${name} must be a positive finite number`);
25
+ }
26
+ };
27
+ const assertRecordingOptions = (options) => {
28
+ if (!options)
29
+ return;
30
+ if (options.quality !== undefined &&
31
+ !["low", "medium", "high", "highest"].includes(options.quality)) {
32
+ throw new Error("quality must be one of low, medium, high, or highest");
33
+ }
34
+ if (options.maxDuration !== undefined) {
35
+ assertPositiveFinite(options.maxDuration, "maxDuration");
36
+ }
37
+ if (options.maxFileSize !== undefined) {
38
+ assertPositiveFinite(options.maxFileSize, "maxFileSize");
39
+ }
40
+ if (options.bitrate !== undefined) {
41
+ assertPositiveFinite(options.bitrate, "bitrate");
42
+ }
43
+ if (options.frameRate !== undefined) {
44
+ assertPositiveFinite(options.frameRate, "frameRate");
45
+ }
46
+ };
16
47
  class CameraWeb extends core.WebPlugin {
17
48
  constructor() {
18
49
  super(...arguments);
@@ -36,27 +67,29 @@ var capacitorElizaCamera = (function (exports, core) {
36
67
  this.pluginListeners = [];
37
68
  }
38
69
  async getDevices() {
39
- // enumerateDevices() returns device stubs without labels unless the user
40
- // has already granted camera permission via a prior getUserMedia() call.
70
+ // enumerateDevices() returns unlabeled device records unless the user has
71
+ // already granted camera permission via a prior getUserMedia() call.
41
72
  // We intentionally do NOT call getUserMedia() here because it requires a
42
73
  // user gesture and would throw NotAllowedError if called programmatically.
43
- const allDevices = await navigator.mediaDevices.enumerateDevices();
74
+ const mediaDevices = getMediaDevices();
75
+ if (!mediaDevices.enumerateDevices) {
76
+ throw new Error("Camera device enumeration is not available");
77
+ }
78
+ const allDevices = await mediaDevices.enumerateDevices();
44
79
  const videoDevices = allDevices.filter((d) => d.kind === "videoinput");
45
- const devices = await Promise.all(videoDevices.map(async (device, index) => {
46
- const capabilities = await this.getDeviceCapabilities(device.deviceId);
47
- return {
48
- deviceId: device.deviceId,
49
- label: device.label || `Camera ${index + 1}`,
50
- direction: this.inferDirection(device.label),
51
- // Flash detection not available via MediaDevices API on web
52
- hasFlash: capabilities?.hasFlash ?? false,
53
- hasZoom: !!capabilities?.zoom,
54
- maxZoom: capabilities?.zoom?.max ?? 1,
55
- // Return actual capabilities or empty array to indicate unknown
56
- supportedResolutions: capabilities?.resolutions ?? [],
57
- supportedFrameRates: capabilities?.frameRates ?? [],
58
- };
59
- }));
80
+ const devices = await Promise.all(videoDevices.map(async (device, index) => ({
81
+ deviceId: device.deviceId,
82
+ label: device.label || `Camera ${index + 1}`,
83
+ direction: this.inferDirection(device.label),
84
+ // Capability probing requires getUserMedia(), which can prompt for
85
+ // camera permission. Enumeration stays prompt-free and reports
86
+ // unknown capabilities until preview/capture has explicit access.
87
+ hasFlash: false,
88
+ hasZoom: false,
89
+ maxZoom: 1,
90
+ supportedResolutions: [],
91
+ supportedFrameRates: [],
92
+ })));
60
93
  return { devices };
61
94
  }
62
95
  inferDirection(label) {
@@ -73,60 +106,17 @@ var capacitorElizaCamera = (function (exports, core) {
73
106
  }
74
107
  return "external";
75
108
  }
76
- async getDeviceCapabilities(deviceId) {
77
- let stream;
78
- try {
79
- stream = await navigator.mediaDevices.getUserMedia({
80
- video: { deviceId: { exact: deviceId } },
81
- });
109
+ async startPreview(options) {
110
+ if (!options?.element?.appendChild) {
111
+ throw new Error("Preview element is required");
82
112
  }
83
- catch {
84
- return null; // Device not accessible
113
+ if (options.resolution) {
114
+ assertPositiveFinite(options.resolution.width, "resolution.width");
115
+ assertPositiveFinite(options.resolution.height, "resolution.height");
85
116
  }
86
- const track = stream.getVideoTracks()[0];
87
- if (!track) {
88
- stream.getTracks().forEach((t) => {
89
- t.stop();
90
- });
91
- return null;
117
+ if (options.frameRate !== undefined) {
118
+ assertPositiveFinite(options.frameRate, "frameRate");
92
119
  }
93
- const capabilities = track.getCapabilities ? track.getCapabilities() : {};
94
- stream.getTracks().forEach((t) => {
95
- t.stop();
96
- });
97
- const caps = capabilities;
98
- // Build resolutions from actual device capabilities only
99
- const resolutions = [];
100
- if (caps.width?.max && caps.height?.max) {
101
- resolutions.push({ width: caps.width.max, height: caps.height.max });
102
- // Add common lower resolutions only if device supports them
103
- if (caps.width.max >= 1280 && caps.height.max >= 720) {
104
- resolutions.push({ width: 1280, height: 720 });
105
- }
106
- if (caps.width.max >= 640 && caps.height.max >= 480) {
107
- resolutions.push({ width: 640, height: 480 });
108
- }
109
- }
110
- // Build frameRates from actual device capabilities only
111
- const frameRates = [];
112
- if (caps.frameRate?.max) {
113
- if (caps.frameRate.max >= 60)
114
- frameRates.push(60);
115
- if (caps.frameRate.max >= 30)
116
- frameRates.push(30);
117
- if (caps.frameRate.max >= 24)
118
- frameRates.push(24);
119
- if (caps.frameRate.max >= 15)
120
- frameRates.push(15);
121
- }
122
- return {
123
- zoom: caps.zoom,
124
- resolutions: resolutions.length > 0 ? resolutions : undefined,
125
- frameRates: frameRates.length > 0 ? frameRates : undefined,
126
- hasFlash: caps.torch === true, // Torch capability indicates flash support
127
- };
128
- }
129
- async startPreview(options) {
130
120
  await this.stopPreview();
131
121
  const constraints = {
132
122
  video: {
@@ -148,7 +138,9 @@ var capacitorElizaCamera = (function (exports, core) {
148
138
  },
149
139
  audio: false,
150
140
  };
151
- this.mediaStream = await navigator.mediaDevices.getUserMedia(constraints);
141
+ // Browser camera permission is requested by opening the stream. Native
142
+ // permission probing is handled outside this Capacitor web fallback.
143
+ this.mediaStream = await getMediaDevices().getUserMedia(constraints);
152
144
  this.previewElement = options.element;
153
145
  this.videoElement = document.createElement("video");
154
146
  this.videoElement.srcObject = this.mediaStream;
@@ -182,8 +174,10 @@ var capacitorElizaCamera = (function (exports, core) {
182
174
  });
183
175
  this.mediaStream = null;
184
176
  }
185
- if (this.videoElement && this.previewElement) {
186
- this.previewElement.removeChild(this.videoElement);
177
+ if (this.videoElement) {
178
+ if (this.previewElement?.contains(this.videoElement)) {
179
+ this.previewElement.removeChild(this.videoElement);
180
+ }
187
181
  this.videoElement = null;
188
182
  }
189
183
  this.previewElement = null;
@@ -209,8 +203,18 @@ var capacitorElizaCamera = (function (exports, core) {
209
203
  const settings = track.getSettings();
210
204
  const videoWidth = settings.width || this.videoElement.videoWidth;
211
205
  const videoHeight = settings.height || this.videoElement.videoHeight;
206
+ assertPositiveFinite(videoWidth, "videoWidth");
207
+ assertPositiveFinite(videoHeight, "videoHeight");
212
208
  const targetWidth = options?.width || videoWidth;
213
209
  const targetHeight = options?.height || videoHeight;
210
+ assertPositiveFinite(targetWidth, "width");
211
+ assertPositiveFinite(targetHeight, "height");
212
+ if (options?.quality !== undefined &&
213
+ (!Number.isFinite(options.quality) ||
214
+ options.quality < 0 ||
215
+ options.quality > 100)) {
216
+ throw new Error("quality must be a finite number between 0 and 100");
217
+ }
214
218
  const canvas = document.createElement("canvas");
215
219
  canvas.width = targetWidth;
216
220
  canvas.height = targetHeight;
@@ -233,7 +237,11 @@ var capacitorElizaCamera = (function (exports, core) {
233
237
  : format === "webp"
234
238
  ? "image/webp"
235
239
  : "image/jpeg";
236
- const base64 = canvas.toDataURL(mimeType, quality).split(",")[1];
240
+ const dataUrl = canvas.toDataURL(mimeType, quality);
241
+ const base64 = dataUrl.split(",")[1];
242
+ if (!base64) {
243
+ throw new Error("Failed to encode captured photo");
244
+ }
237
245
  return {
238
246
  base64,
239
247
  format,
@@ -248,9 +256,10 @@ var capacitorElizaCamera = (function (exports, core) {
248
256
  if (this.isRecording) {
249
257
  throw new Error("Recording already in progress");
250
258
  }
259
+ assertRecordingOptions(options);
251
260
  let streamToRecord = this.mediaStream;
252
261
  if (options?.audio !== false) {
253
- const audioStream = await navigator.mediaDevices.getUserMedia({
262
+ const audioStream = await getMediaDevices().getUserMedia({
254
263
  audio: true,
255
264
  });
256
265
  streamToRecord = new MediaStream([
@@ -372,17 +381,28 @@ var capacitorElizaCamera = (function (exports, core) {
372
381
  return { settings: { ...this.currentSettings } };
373
382
  }
374
383
  async setSettings(options) {
384
+ if (!options?.settings || typeof options.settings !== "object") {
385
+ throw new Error("settings object is required");
386
+ }
387
+ if (options.settings.zoom !== undefined) {
388
+ const zoom = options.settings.zoom;
389
+ this.assertValidZoom(zoom);
390
+ }
375
391
  this.currentSettings = { ...this.currentSettings, ...options.settings };
376
392
  if (this.mediaStream && options.settings.zoom !== undefined) {
377
393
  await this.applyZoom(options.settings.zoom);
378
394
  }
379
395
  }
380
396
  async setZoom(options) {
381
- if (!Number.isFinite(options.zoom) || options.zoom < 0) {
382
- throw new Error(`Invalid zoom value: ${options.zoom}. Must be a non-negative finite number.`);
397
+ const zoom = options?.zoom;
398
+ this.assertValidZoom(zoom);
399
+ await this.applyZoom(zoom);
400
+ this.currentSettings.zoom = zoom;
401
+ }
402
+ assertValidZoom(zoom) {
403
+ if (typeof zoom !== "number" || !Number.isFinite(zoom) || zoom < 0) {
404
+ throw new Error(`Invalid zoom value: ${zoom}. Must be a non-negative finite number.`);
383
405
  }
384
- await this.applyZoom(options.zoom);
385
- this.currentSettings.zoom = options.zoom;
386
406
  }
387
407
  async applyZoom(zoom) {
388
408
  if (!this.mediaStream)
@@ -402,6 +422,7 @@ var capacitorElizaCamera = (function (exports, core) {
402
422
  async setFocusPoint(options) {
403
423
  if (!this.mediaStream)
404
424
  throw new Error("Preview not started");
425
+ this.assertNormalizedPoint(options, "focus point");
405
426
  const track = this.mediaStream.getVideoTracks()[0];
406
427
  if (!track)
407
428
  throw new Error("No video track available");
@@ -427,6 +448,7 @@ var capacitorElizaCamera = (function (exports, core) {
427
448
  async setExposurePoint(options) {
428
449
  if (!this.mediaStream)
429
450
  throw new Error("Preview not started");
451
+ this.assertNormalizedPoint(options, "exposure point");
430
452
  const track = this.mediaStream.getVideoTracks()[0];
431
453
  if (!track)
432
454
  throw new Error("No video track available");
@@ -449,6 +471,16 @@ var capacitorElizaCamera = (function (exports, core) {
449
471
  throw new Error(`Failed to set exposure point: ${e instanceof Error ? e.message : "unknown error"}`);
450
472
  }
451
473
  }
474
+ assertNormalizedPoint(options, name) {
475
+ if (!Number.isFinite(options?.x) ||
476
+ !Number.isFinite(options?.y) ||
477
+ options.x < 0 ||
478
+ options.x > 1 ||
479
+ options.y < 0 ||
480
+ options.y > 1) {
481
+ throw new Error(`${name} must use finite x/y values between 0 and 1`);
482
+ }
483
+ }
452
484
  async checkPermissions() {
453
485
  let cameraStatus = "prompt";
454
486
  let microphoneStatus = "prompt";
@@ -482,7 +514,7 @@ var capacitorElizaCamera = (function (exports, core) {
482
514
  let cameraStatus = "denied";
483
515
  let microphoneStatus = "denied";
484
516
  try {
485
- const stream = await navigator.mediaDevices.getUserMedia({
517
+ const stream = await getMediaDevices().getUserMedia({
486
518
  video: true,
487
519
  audio: true,
488
520
  });
@@ -494,7 +526,7 @@ var capacitorElizaCamera = (function (exports, core) {
494
526
  }
495
527
  catch {
496
528
  try {
497
- const videoStream = await navigator.mediaDevices.getUserMedia({
529
+ const videoStream = await getMediaDevices().getUserMedia({
498
530
  video: true,
499
531
  });
500
532
  videoStream.getTracks().forEach((track) => {
@@ -506,7 +538,7 @@ var capacitorElizaCamera = (function (exports, core) {
506
538
  cameraStatus = "denied";
507
539
  }
508
540
  try {
509
- const audioStream = await navigator.mediaDevices.getUserMedia({
541
+ const audioStream = await getMediaDevices().getUserMedia({
510
542
  audio: true,
511
543
  });
512
544
  audioStream.getTracks().forEach((track) => {
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from \"@capacitor/core\";\nexport * from \"./definitions\";\nconst loadWeb = () => import(\"./web\").then((m) => new m.CameraWeb());\nexport const Camera = registerPlugin(\"ElizaCamera\", {\n web: loadWeb,\n});\n","import { WebPlugin } from \"@capacitor/core\";\nconst VIDEO_MIME_TYPES = [\n \"video/webm;codecs=vp9,opus\",\n \"video/webm;codecs=vp8,opus\",\n \"video/webm\",\n \"video/mp4\",\n];\nconst getSupportedMimeType = () => VIDEO_MIME_TYPES.find((m) => MediaRecorder.isTypeSupported(m)) ?? null;\nexport class CameraWeb extends WebPlugin {\n constructor() {\n super(...arguments);\n this.mediaStream = null;\n this.videoElement = null;\n this.previewElement = null;\n this.currentDeviceId = null;\n this.mediaRecorder = null;\n this.recordedChunks = [];\n this.recordingStartTime = 0;\n this.recordingStateInterval = null;\n this.isRecording = false;\n this.currentSettings = {\n flash: \"off\",\n zoom: 1,\n focusMode: \"continuous\",\n exposureMode: \"continuous\",\n exposureCompensation: 0,\n whiteBalance: \"auto\",\n };\n this.pluginListeners = [];\n }\n async getDevices() {\n // enumerateDevices() returns device stubs without labels unless the user\n // has already granted camera permission via a prior getUserMedia() call.\n // We intentionally do NOT call getUserMedia() here because it requires a\n // user gesture and would throw NotAllowedError if called programmatically.\n const allDevices = await navigator.mediaDevices.enumerateDevices();\n const videoDevices = allDevices.filter((d) => d.kind === \"videoinput\");\n const devices = await Promise.all(videoDevices.map(async (device, index) => {\n const capabilities = await this.getDeviceCapabilities(device.deviceId);\n return {\n deviceId: device.deviceId,\n label: device.label || `Camera ${index + 1}`,\n direction: this.inferDirection(device.label),\n // Flash detection not available via MediaDevices API on web\n hasFlash: capabilities?.hasFlash ?? false,\n hasZoom: !!capabilities?.zoom,\n maxZoom: capabilities?.zoom?.max ?? 1,\n // Return actual capabilities or empty array to indicate unknown\n supportedResolutions: capabilities?.resolutions ?? [],\n supportedFrameRates: capabilities?.frameRates ?? [],\n };\n }));\n return { devices };\n }\n inferDirection(label) {\n const lowerLabel = label.toLowerCase();\n if (lowerLabel.includes(\"front\") ||\n lowerLabel.includes(\"facetime\") ||\n lowerLabel.includes(\"user\")) {\n return \"front\";\n }\n if (lowerLabel.includes(\"back\") ||\n lowerLabel.includes(\"rear\") ||\n lowerLabel.includes(\"environment\")) {\n return \"back\";\n }\n return \"external\";\n }\n async getDeviceCapabilities(deviceId) {\n let stream;\n try {\n stream = await navigator.mediaDevices.getUserMedia({\n video: { deviceId: { exact: deviceId } },\n });\n }\n catch {\n return null; // Device not accessible\n }\n const track = stream.getVideoTracks()[0];\n if (!track) {\n stream.getTracks().forEach((t) => {\n t.stop();\n });\n return null;\n }\n const capabilities = track.getCapabilities ? track.getCapabilities() : {};\n stream.getTracks().forEach((t) => {\n t.stop();\n });\n const caps = capabilities;\n // Build resolutions from actual device capabilities only\n const resolutions = [];\n if (caps.width?.max && caps.height?.max) {\n resolutions.push({ width: caps.width.max, height: caps.height.max });\n // Add common lower resolutions only if device supports them\n if (caps.width.max >= 1280 && caps.height.max >= 720) {\n resolutions.push({ width: 1280, height: 720 });\n }\n if (caps.width.max >= 640 && caps.height.max >= 480) {\n resolutions.push({ width: 640, height: 480 });\n }\n }\n // Build frameRates from actual device capabilities only\n const frameRates = [];\n if (caps.frameRate?.max) {\n if (caps.frameRate.max >= 60)\n frameRates.push(60);\n if (caps.frameRate.max >= 30)\n frameRates.push(30);\n if (caps.frameRate.max >= 24)\n frameRates.push(24);\n if (caps.frameRate.max >= 15)\n frameRates.push(15);\n }\n return {\n zoom: caps.zoom,\n resolutions: resolutions.length > 0 ? resolutions : undefined,\n frameRates: frameRates.length > 0 ? frameRates : undefined,\n hasFlash: caps.torch === true, // Torch capability indicates flash support\n };\n }\n async startPreview(options) {\n await this.stopPreview();\n const constraints = {\n video: {\n deviceId: options.deviceId ? { exact: options.deviceId } : undefined,\n facingMode: options.direction === \"front\"\n ? \"user\"\n : options.direction === \"back\"\n ? \"environment\"\n : undefined,\n width: options.resolution?.width\n ? { ideal: options.resolution.width }\n : { ideal: 1920 },\n height: options.resolution?.height\n ? { ideal: options.resolution.height }\n : { ideal: 1080 },\n frameRate: options.frameRate\n ? { ideal: options.frameRate }\n : { ideal: 30 },\n },\n audio: false,\n };\n this.mediaStream = await navigator.mediaDevices.getUserMedia(constraints);\n this.previewElement = options.element;\n this.videoElement = document.createElement(\"video\");\n this.videoElement.srcObject = this.mediaStream;\n this.videoElement.autoplay = true;\n this.videoElement.playsInline = true;\n this.videoElement.muted = true;\n this.videoElement.style.width = \"100%\";\n this.videoElement.style.height = \"100%\";\n this.videoElement.style.objectFit = \"cover\";\n if (options.mirror) {\n this.videoElement.style.transform = \"scaleX(-1)\";\n }\n this.previewElement.appendChild(this.videoElement);\n await this.videoElement.play();\n const track = this.mediaStream.getVideoTracks()[0];\n const settings = track.getSettings();\n this.currentDeviceId = settings.deviceId || options.deviceId || \"\";\n return {\n width: settings.width || options.resolution?.width || 1920,\n height: settings.height || options.resolution?.height || 1080,\n deviceId: this.currentDeviceId,\n };\n }\n async stopPreview() {\n if (this.isRecording) {\n await this.stopRecording();\n }\n if (this.mediaStream) {\n this.mediaStream.getTracks().forEach((track) => {\n track.stop();\n });\n this.mediaStream = null;\n }\n if (this.videoElement && this.previewElement) {\n this.previewElement.removeChild(this.videoElement);\n this.videoElement = null;\n }\n this.previewElement = null;\n this.currentDeviceId = null;\n }\n async switchCamera(options) {\n if (!this.previewElement) {\n throw new Error(\"Preview not started\");\n }\n const mirror = options.direction === \"front\";\n return this.startPreview({\n element: this.previewElement,\n deviceId: options.deviceId,\n direction: options.direction,\n mirror,\n });\n }\n async capturePhoto(options) {\n if (!this.videoElement || !this.mediaStream) {\n throw new Error(\"Preview not started\");\n }\n const track = this.mediaStream.getVideoTracks()[0];\n const settings = track.getSettings();\n const videoWidth = settings.width || this.videoElement.videoWidth;\n const videoHeight = settings.height || this.videoElement.videoHeight;\n const targetWidth = options?.width || videoWidth;\n const targetHeight = options?.height || videoHeight;\n const canvas = document.createElement(\"canvas\");\n canvas.width = targetWidth;\n canvas.height = targetHeight;\n const ctx = canvas.getContext(\"2d\");\n if (!ctx) {\n throw new Error(\"Failed to get canvas context\");\n }\n const scaleX = targetWidth / videoWidth;\n const scaleY = targetHeight / videoHeight;\n const scale = Math.max(scaleX, scaleY);\n const drawWidth = videoWidth * scale;\n const drawHeight = videoHeight * scale;\n const drawX = (targetWidth - drawWidth) / 2;\n const drawY = (targetHeight - drawHeight) / 2;\n ctx.drawImage(this.videoElement, drawX, drawY, drawWidth, drawHeight);\n const quality = (options?.quality ?? 90) / 100;\n const format = options?.format || \"jpeg\";\n const mimeType = format === \"png\"\n ? \"image/png\"\n : format === \"webp\"\n ? \"image/webp\"\n : \"image/jpeg\";\n const base64 = canvas.toDataURL(mimeType, quality).split(\",\")[1];\n return {\n base64,\n format,\n width: targetWidth,\n height: targetHeight,\n };\n }\n async startRecording(options) {\n if (!this.mediaStream) {\n throw new Error(\"Preview not started\");\n }\n if (this.isRecording) {\n throw new Error(\"Recording already in progress\");\n }\n let streamToRecord = this.mediaStream;\n if (options?.audio !== false) {\n const audioStream = await navigator.mediaDevices.getUserMedia({\n audio: true,\n });\n streamToRecord = new MediaStream([\n ...this.mediaStream.getVideoTracks(),\n ...audioStream.getAudioTracks(),\n ]);\n }\n const mimeType = getSupportedMimeType();\n if (!mimeType)\n throw new Error(\"No supported video mime type found\");\n const recorderOptions = { mimeType };\n if (options?.bitrate)\n recorderOptions.videoBitsPerSecond = options.bitrate;\n this.recordedChunks = [];\n this.mediaRecorder = new MediaRecorder(streamToRecord, recorderOptions);\n this.mediaRecorder.ondataavailable = (event) => {\n if (event.data.size > 0) {\n this.recordedChunks.push(event.data);\n }\n };\n this.mediaRecorder.onerror = (event) => {\n this.notifyListeners(\"error\", {\n code: \"RECORDING_ERROR\",\n message: `Recording error: ${event.message || \"Unknown error\"}`,\n });\n };\n this.recordingStartTime = Date.now();\n this.isRecording = true;\n this.mediaRecorder.start(1000);\n this.notifyListeners(\"recordingState\", {\n isRecording: true,\n duration: 0,\n fileSize: 0,\n });\n let autoStopping = false;\n this.recordingStateInterval = setInterval(() => {\n if (!this.isRecording || autoStopping)\n return;\n const duration = (Date.now() - this.recordingStartTime) / 1000;\n const fileSize = this.recordedChunks.reduce((acc, chunk) => acc + chunk.size, 0);\n this.notifyListeners(\"recordingState\", {\n isRecording: true,\n duration,\n fileSize,\n });\n const overLimit = (options?.maxDuration && duration >= options.maxDuration) ||\n (options?.maxFileSize && fileSize >= options.maxFileSize);\n if (overLimit) {\n autoStopping = true;\n this.stopRecording().catch((err) => {\n console.error(\"[Camera] Auto-stop recording failed:\", err);\n });\n }\n }, 500);\n }\n async stopRecording() {\n if (!this.isRecording || !this.mediaRecorder) {\n throw new Error(\"Not recording\");\n }\n return new Promise((resolve, reject) => {\n if (!this.mediaRecorder) {\n reject(new Error(\"MediaRecorder not initialized\"));\n return;\n }\n const duration = (Date.now() - this.recordingStartTime) / 1000;\n this.mediaRecorder.onstop = () => {\n if (this.recordingStateInterval) {\n clearInterval(this.recordingStateInterval);\n this.recordingStateInterval = null;\n }\n this.isRecording = false;\n const blob = new Blob(this.recordedChunks, {\n type: this.mediaRecorder?.mimeType || \"video/webm\",\n });\n const url = URL.createObjectURL(blob);\n const video = document.createElement(\"video\");\n video.src = url;\n video.onloadedmetadata = () => {\n resolve({\n path: url,\n duration,\n width: video.videoWidth,\n height: video.videoHeight,\n fileSize: blob.size,\n mimeType: this.mediaRecorder?.mimeType || \"video/webm\",\n });\n };\n video.onerror = () => {\n resolve({\n path: url,\n duration,\n width: 0,\n height: 0,\n fileSize: blob.size,\n mimeType: this.mediaRecorder?.mimeType || \"video/webm\",\n });\n };\n this.notifyListeners(\"recordingState\", {\n isRecording: false,\n duration,\n fileSize: blob.size,\n });\n };\n this.mediaRecorder.stop();\n });\n }\n async getRecordingState() {\n const duration = this.isRecording\n ? (Date.now() - this.recordingStartTime) / 1000\n : 0;\n const fileSize = this.recordedChunks.reduce((acc, chunk) => acc + chunk.size, 0);\n return {\n isRecording: this.isRecording,\n duration,\n fileSize,\n };\n }\n async getSettings() {\n return { settings: { ...this.currentSettings } };\n }\n async setSettings(options) {\n this.currentSettings = { ...this.currentSettings, ...options.settings };\n if (this.mediaStream && options.settings.zoom !== undefined) {\n await this.applyZoom(options.settings.zoom);\n }\n }\n async setZoom(options) {\n if (!Number.isFinite(options.zoom) || options.zoom < 0) {\n throw new Error(`Invalid zoom value: ${options.zoom}. Must be a non-negative finite number.`);\n }\n await this.applyZoom(options.zoom);\n this.currentSettings.zoom = options.zoom;\n }\n async applyZoom(zoom) {\n if (!this.mediaStream)\n return;\n const track = this.mediaStream.getVideoTracks()[0];\n if (!track)\n return;\n const capabilities = track.getCapabilities ? track.getCapabilities() : {};\n const caps = capabilities;\n if (caps.zoom) {\n const clampedZoom = Math.max(caps.zoom.min, Math.min(caps.zoom.max, zoom));\n await track.applyConstraints({\n advanced: [{ zoom: clampedZoom }],\n });\n }\n }\n async setFocusPoint(options) {\n if (!this.mediaStream)\n throw new Error(\"Preview not started\");\n const track = this.mediaStream.getVideoTracks()[0];\n if (!track)\n throw new Error(\"No video track available\");\n // Check if focus control is supported\n const caps = track.getCapabilities ? track.getCapabilities() : {};\n if (!caps.focusMode?.includes(\"manual\")) {\n throw new Error(\"Manual focus not supported by this camera\");\n }\n try {\n await track.applyConstraints({\n advanced: [\n {\n focusMode: \"manual\",\n pointsOfInterest: [{ x: options.x, y: options.y }],\n },\n ],\n });\n }\n catch (e) {\n throw new Error(`Failed to set focus point: ${e instanceof Error ? e.message : \"unknown error\"}`);\n }\n }\n async setExposurePoint(options) {\n if (!this.mediaStream)\n throw new Error(\"Preview not started\");\n const track = this.mediaStream.getVideoTracks()[0];\n if (!track)\n throw new Error(\"No video track available\");\n // Check if exposure control is supported\n const caps = track.getCapabilities ? track.getCapabilities() : {};\n if (!caps.exposureMode?.includes(\"manual\")) {\n throw new Error(\"Manual exposure not supported by this camera\");\n }\n try {\n await track.applyConstraints({\n advanced: [\n {\n exposureMode: \"manual\",\n pointsOfInterest: [{ x: options.x, y: options.y }],\n },\n ],\n });\n }\n catch (e) {\n throw new Error(`Failed to set exposure point: ${e instanceof Error ? e.message : \"unknown error\"}`);\n }\n }\n async checkPermissions() {\n let cameraStatus = \"prompt\";\n let microphoneStatus = \"prompt\";\n try {\n const cameraResult = await navigator.permissions.query({\n name: \"camera\",\n });\n cameraStatus = cameraResult.state;\n }\n catch (err) {\n console.debug(\"[Camera] permissions.query('camera') not supported:\", err);\n }\n try {\n const micResult = await navigator.permissions.query({\n name: \"microphone\",\n });\n microphoneStatus = micResult.state;\n }\n catch (err) {\n console.debug(\"[Camera] permissions.query('microphone') not supported:\", err);\n }\n // Note: Web platform doesn't have a \"photos\" permission concept.\n // Photos are captured from camera stream, so camera permission covers this.\n return {\n camera: cameraStatus,\n microphone: microphoneStatus,\n photos: cameraStatus, // Photos access follows camera permission on web\n };\n }\n async requestPermissions() {\n let cameraStatus = \"denied\";\n let microphoneStatus = \"denied\";\n try {\n const stream = await navigator.mediaDevices.getUserMedia({\n video: true,\n audio: true,\n });\n stream.getTracks().forEach((track) => {\n track.stop();\n });\n cameraStatus = \"granted\";\n microphoneStatus = \"granted\";\n }\n catch {\n try {\n const videoStream = await navigator.mediaDevices.getUserMedia({\n video: true,\n });\n videoStream.getTracks().forEach((track) => {\n track.stop();\n });\n cameraStatus = \"granted\";\n }\n catch {\n cameraStatus = \"denied\";\n }\n try {\n const audioStream = await navigator.mediaDevices.getUserMedia({\n audio: true,\n });\n audioStream.getTracks().forEach((track) => {\n track.stop();\n });\n microphoneStatus = \"granted\";\n }\n catch {\n microphoneStatus = \"denied\";\n }\n }\n return {\n camera: cameraStatus,\n microphone: microphoneStatus,\n photos: cameraStatus, // Photos access follows camera permission on web\n };\n }\n async addListener(eventName, listenerFunc) {\n const entry = { eventName, callback: listenerFunc };\n this.pluginListeners.push(entry);\n return {\n remove: async () => {\n const i = this.pluginListeners.indexOf(entry);\n if (i >= 0)\n this.pluginListeners.splice(i, 1);\n },\n };\n }\n async removeAllListeners() {\n this.pluginListeners = [];\n }\n notifyListeners(eventName, data) {\n this.pluginListeners\n .filter((l) => l.eventName === eventName)\n .forEach((l) => {\n l.callback(data);\n });\n }\n}\n"],"names":["registerPlugin","WebPlugin"],"mappings":"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"}
1
+ {"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from \"@capacitor/core\";\nexport * from \"./definitions\";\nconst loadWeb = () => import(\"./web\").then((m) => new m.CameraWeb());\nexport const Camera = registerPlugin(\"ElizaCamera\", {\n web: loadWeb,\n});\n","import { WebPlugin } from \"@capacitor/core\";\nconst VIDEO_MIME_TYPES = [\n \"video/webm;codecs=vp9,opus\",\n \"video/webm;codecs=vp8,opus\",\n \"video/webm\",\n \"video/mp4\",\n];\nconst getSupportedMimeType = () => VIDEO_MIME_TYPES.find((m) => MediaRecorder.isTypeSupported(m)) ?? null;\nconst getMediaDevices = () => {\n if (!navigator.mediaDevices?.getUserMedia) {\n throw new Error(\"Camera media devices API is not available\");\n }\n return navigator.mediaDevices;\n};\nconst assertPositiveFinite = (value, name) => {\n if (!Number.isFinite(value) || value <= 0) {\n throw new Error(`${name} must be a positive finite number`);\n }\n};\nconst assertRecordingOptions = (options) => {\n if (!options)\n return;\n if (options.quality !== undefined &&\n ![\"low\", \"medium\", \"high\", \"highest\"].includes(options.quality)) {\n throw new Error(\"quality must be one of low, medium, high, or highest\");\n }\n if (options.maxDuration !== undefined) {\n assertPositiveFinite(options.maxDuration, \"maxDuration\");\n }\n if (options.maxFileSize !== undefined) {\n assertPositiveFinite(options.maxFileSize, \"maxFileSize\");\n }\n if (options.bitrate !== undefined) {\n assertPositiveFinite(options.bitrate, \"bitrate\");\n }\n if (options.frameRate !== undefined) {\n assertPositiveFinite(options.frameRate, \"frameRate\");\n }\n};\nexport class CameraWeb extends WebPlugin {\n constructor() {\n super(...arguments);\n this.mediaStream = null;\n this.videoElement = null;\n this.previewElement = null;\n this.currentDeviceId = null;\n this.mediaRecorder = null;\n this.recordedChunks = [];\n this.recordingStartTime = 0;\n this.recordingStateInterval = null;\n this.isRecording = false;\n this.currentSettings = {\n flash: \"off\",\n zoom: 1,\n focusMode: \"continuous\",\n exposureMode: \"continuous\",\n exposureCompensation: 0,\n whiteBalance: \"auto\",\n };\n this.pluginListeners = [];\n }\n async getDevices() {\n // enumerateDevices() returns unlabeled device records unless the user has\n // already granted camera permission via a prior getUserMedia() call.\n // We intentionally do NOT call getUserMedia() here because it requires a\n // user gesture and would throw NotAllowedError if called programmatically.\n const mediaDevices = getMediaDevices();\n if (!mediaDevices.enumerateDevices) {\n throw new Error(\"Camera device enumeration is not available\");\n }\n const allDevices = await mediaDevices.enumerateDevices();\n const videoDevices = allDevices.filter((d) => d.kind === \"videoinput\");\n const devices = await Promise.all(videoDevices.map(async (device, index) => ({\n deviceId: device.deviceId,\n label: device.label || `Camera ${index + 1}`,\n direction: this.inferDirection(device.label),\n // Capability probing requires getUserMedia(), which can prompt for\n // camera permission. Enumeration stays prompt-free and reports\n // unknown capabilities until preview/capture has explicit access.\n hasFlash: false,\n hasZoom: false,\n maxZoom: 1,\n supportedResolutions: [],\n supportedFrameRates: [],\n })));\n return { devices };\n }\n inferDirection(label) {\n const lowerLabel = label.toLowerCase();\n if (lowerLabel.includes(\"front\") ||\n lowerLabel.includes(\"facetime\") ||\n lowerLabel.includes(\"user\")) {\n return \"front\";\n }\n if (lowerLabel.includes(\"back\") ||\n lowerLabel.includes(\"rear\") ||\n lowerLabel.includes(\"environment\")) {\n return \"back\";\n }\n return \"external\";\n }\n async startPreview(options) {\n if (!options?.element?.appendChild) {\n throw new Error(\"Preview element is required\");\n }\n if (options.resolution) {\n assertPositiveFinite(options.resolution.width, \"resolution.width\");\n assertPositiveFinite(options.resolution.height, \"resolution.height\");\n }\n if (options.frameRate !== undefined) {\n assertPositiveFinite(options.frameRate, \"frameRate\");\n }\n await this.stopPreview();\n const constraints = {\n video: {\n deviceId: options.deviceId ? { exact: options.deviceId } : undefined,\n facingMode: options.direction === \"front\"\n ? \"user\"\n : options.direction === \"back\"\n ? \"environment\"\n : undefined,\n width: options.resolution?.width\n ? { ideal: options.resolution.width }\n : { ideal: 1920 },\n height: options.resolution?.height\n ? { ideal: options.resolution.height }\n : { ideal: 1080 },\n frameRate: options.frameRate\n ? { ideal: options.frameRate }\n : { ideal: 30 },\n },\n audio: false,\n };\n // Browser camera permission is requested by opening the stream. Native\n // permission probing is handled outside this Capacitor web fallback.\n this.mediaStream = await getMediaDevices().getUserMedia(constraints);\n this.previewElement = options.element;\n this.videoElement = document.createElement(\"video\");\n this.videoElement.srcObject = this.mediaStream;\n this.videoElement.autoplay = true;\n this.videoElement.playsInline = true;\n this.videoElement.muted = true;\n this.videoElement.style.width = \"100%\";\n this.videoElement.style.height = \"100%\";\n this.videoElement.style.objectFit = \"cover\";\n if (options.mirror) {\n this.videoElement.style.transform = \"scaleX(-1)\";\n }\n this.previewElement.appendChild(this.videoElement);\n await this.videoElement.play();\n const track = this.mediaStream.getVideoTracks()[0];\n const settings = track.getSettings();\n this.currentDeviceId = settings.deviceId || options.deviceId || \"\";\n return {\n width: settings.width || options.resolution?.width || 1920,\n height: settings.height || options.resolution?.height || 1080,\n deviceId: this.currentDeviceId,\n };\n }\n async stopPreview() {\n if (this.isRecording) {\n await this.stopRecording();\n }\n if (this.mediaStream) {\n this.mediaStream.getTracks().forEach((track) => {\n track.stop();\n });\n this.mediaStream = null;\n }\n if (this.videoElement) {\n if (this.previewElement?.contains(this.videoElement)) {\n this.previewElement.removeChild(this.videoElement);\n }\n this.videoElement = null;\n }\n this.previewElement = null;\n this.currentDeviceId = null;\n }\n async switchCamera(options) {\n if (!this.previewElement) {\n throw new Error(\"Preview not started\");\n }\n const mirror = options.direction === \"front\";\n return this.startPreview({\n element: this.previewElement,\n deviceId: options.deviceId,\n direction: options.direction,\n mirror,\n });\n }\n async capturePhoto(options) {\n if (!this.videoElement || !this.mediaStream) {\n throw new Error(\"Preview not started\");\n }\n const track = this.mediaStream.getVideoTracks()[0];\n const settings = track.getSettings();\n const videoWidth = settings.width || this.videoElement.videoWidth;\n const videoHeight = settings.height || this.videoElement.videoHeight;\n assertPositiveFinite(videoWidth, \"videoWidth\");\n assertPositiveFinite(videoHeight, \"videoHeight\");\n const targetWidth = options?.width || videoWidth;\n const targetHeight = options?.height || videoHeight;\n assertPositiveFinite(targetWidth, \"width\");\n assertPositiveFinite(targetHeight, \"height\");\n if (options?.quality !== undefined &&\n (!Number.isFinite(options.quality) ||\n options.quality < 0 ||\n options.quality > 100)) {\n throw new Error(\"quality must be a finite number between 0 and 100\");\n }\n const canvas = document.createElement(\"canvas\");\n canvas.width = targetWidth;\n canvas.height = targetHeight;\n const ctx = canvas.getContext(\"2d\");\n if (!ctx) {\n throw new Error(\"Failed to get canvas context\");\n }\n const scaleX = targetWidth / videoWidth;\n const scaleY = targetHeight / videoHeight;\n const scale = Math.max(scaleX, scaleY);\n const drawWidth = videoWidth * scale;\n const drawHeight = videoHeight * scale;\n const drawX = (targetWidth - drawWidth) / 2;\n const drawY = (targetHeight - drawHeight) / 2;\n ctx.drawImage(this.videoElement, drawX, drawY, drawWidth, drawHeight);\n const quality = (options?.quality ?? 90) / 100;\n const format = options?.format || \"jpeg\";\n const mimeType = format === \"png\"\n ? \"image/png\"\n : format === \"webp\"\n ? \"image/webp\"\n : \"image/jpeg\";\n const dataUrl = canvas.toDataURL(mimeType, quality);\n const base64 = dataUrl.split(\",\")[1];\n if (!base64) {\n throw new Error(\"Failed to encode captured photo\");\n }\n return {\n base64,\n format,\n width: targetWidth,\n height: targetHeight,\n };\n }\n async startRecording(options) {\n if (!this.mediaStream) {\n throw new Error(\"Preview not started\");\n }\n if (this.isRecording) {\n throw new Error(\"Recording already in progress\");\n }\n assertRecordingOptions(options);\n let streamToRecord = this.mediaStream;\n if (options?.audio !== false) {\n const audioStream = await getMediaDevices().getUserMedia({\n audio: true,\n });\n streamToRecord = new MediaStream([\n ...this.mediaStream.getVideoTracks(),\n ...audioStream.getAudioTracks(),\n ]);\n }\n const mimeType = getSupportedMimeType();\n if (!mimeType)\n throw new Error(\"No supported video mime type found\");\n const recorderOptions = { mimeType };\n if (options?.bitrate)\n recorderOptions.videoBitsPerSecond = options.bitrate;\n this.recordedChunks = [];\n this.mediaRecorder = new MediaRecorder(streamToRecord, recorderOptions);\n this.mediaRecorder.ondataavailable = (event) => {\n if (event.data.size > 0) {\n this.recordedChunks.push(event.data);\n }\n };\n this.mediaRecorder.onerror = (event) => {\n this.notifyListeners(\"error\", {\n code: \"RECORDING_ERROR\",\n message: `Recording error: ${event.message || \"Unknown error\"}`,\n });\n };\n this.recordingStartTime = Date.now();\n this.isRecording = true;\n this.mediaRecorder.start(1000);\n this.notifyListeners(\"recordingState\", {\n isRecording: true,\n duration: 0,\n fileSize: 0,\n });\n let autoStopping = false;\n this.recordingStateInterval = setInterval(() => {\n if (!this.isRecording || autoStopping)\n return;\n const duration = (Date.now() - this.recordingStartTime) / 1000;\n const fileSize = this.recordedChunks.reduce((acc, chunk) => acc + chunk.size, 0);\n this.notifyListeners(\"recordingState\", {\n isRecording: true,\n duration,\n fileSize,\n });\n const overLimit = (options?.maxDuration && duration >= options.maxDuration) ||\n (options?.maxFileSize && fileSize >= options.maxFileSize);\n if (overLimit) {\n autoStopping = true;\n this.stopRecording().catch((err) => {\n console.error(\"[Camera] Auto-stop recording failed:\", err);\n });\n }\n }, 500);\n }\n async stopRecording() {\n if (!this.isRecording || !this.mediaRecorder) {\n throw new Error(\"Not recording\");\n }\n return new Promise((resolve, reject) => {\n if (!this.mediaRecorder) {\n reject(new Error(\"MediaRecorder not initialized\"));\n return;\n }\n const duration = (Date.now() - this.recordingStartTime) / 1000;\n this.mediaRecorder.onstop = () => {\n if (this.recordingStateInterval) {\n clearInterval(this.recordingStateInterval);\n this.recordingStateInterval = null;\n }\n this.isRecording = false;\n const blob = new Blob(this.recordedChunks, {\n type: this.mediaRecorder?.mimeType || \"video/webm\",\n });\n const url = URL.createObjectURL(blob);\n const video = document.createElement(\"video\");\n video.src = url;\n video.onloadedmetadata = () => {\n resolve({\n path: url,\n duration,\n width: video.videoWidth,\n height: video.videoHeight,\n fileSize: blob.size,\n mimeType: this.mediaRecorder?.mimeType || \"video/webm\",\n });\n };\n video.onerror = () => {\n resolve({\n path: url,\n duration,\n width: 0,\n height: 0,\n fileSize: blob.size,\n mimeType: this.mediaRecorder?.mimeType || \"video/webm\",\n });\n };\n this.notifyListeners(\"recordingState\", {\n isRecording: false,\n duration,\n fileSize: blob.size,\n });\n };\n this.mediaRecorder.stop();\n });\n }\n async getRecordingState() {\n const duration = this.isRecording\n ? (Date.now() - this.recordingStartTime) / 1000\n : 0;\n const fileSize = this.recordedChunks.reduce((acc, chunk) => acc + chunk.size, 0);\n return {\n isRecording: this.isRecording,\n duration,\n fileSize,\n };\n }\n async getSettings() {\n return { settings: { ...this.currentSettings } };\n }\n async setSettings(options) {\n if (!options?.settings || typeof options.settings !== \"object\") {\n throw new Error(\"settings object is required\");\n }\n if (options.settings.zoom !== undefined) {\n const zoom = options.settings.zoom;\n this.assertValidZoom(zoom);\n }\n this.currentSettings = { ...this.currentSettings, ...options.settings };\n if (this.mediaStream && options.settings.zoom !== undefined) {\n await this.applyZoom(options.settings.zoom);\n }\n }\n async setZoom(options) {\n const zoom = options?.zoom;\n this.assertValidZoom(zoom);\n await this.applyZoom(zoom);\n this.currentSettings.zoom = zoom;\n }\n assertValidZoom(zoom) {\n if (typeof zoom !== \"number\" || !Number.isFinite(zoom) || zoom < 0) {\n throw new Error(`Invalid zoom value: ${zoom}. Must be a non-negative finite number.`);\n }\n }\n async applyZoom(zoom) {\n if (!this.mediaStream)\n return;\n const track = this.mediaStream.getVideoTracks()[0];\n if (!track)\n return;\n const capabilities = track.getCapabilities ? track.getCapabilities() : {};\n const caps = capabilities;\n if (caps.zoom) {\n const clampedZoom = Math.max(caps.zoom.min, Math.min(caps.zoom.max, zoom));\n await track.applyConstraints({\n advanced: [{ zoom: clampedZoom }],\n });\n }\n }\n async setFocusPoint(options) {\n if (!this.mediaStream)\n throw new Error(\"Preview not started\");\n this.assertNormalizedPoint(options, \"focus point\");\n const track = this.mediaStream.getVideoTracks()[0];\n if (!track)\n throw new Error(\"No video track available\");\n // Check if focus control is supported\n const caps = track.getCapabilities ? track.getCapabilities() : {};\n if (!caps.focusMode?.includes(\"manual\")) {\n throw new Error(\"Manual focus not supported by this camera\");\n }\n try {\n await track.applyConstraints({\n advanced: [\n {\n focusMode: \"manual\",\n pointsOfInterest: [{ x: options.x, y: options.y }],\n },\n ],\n });\n }\n catch (e) {\n throw new Error(`Failed to set focus point: ${e instanceof Error ? e.message : \"unknown error\"}`);\n }\n }\n async setExposurePoint(options) {\n if (!this.mediaStream)\n throw new Error(\"Preview not started\");\n this.assertNormalizedPoint(options, \"exposure point\");\n const track = this.mediaStream.getVideoTracks()[0];\n if (!track)\n throw new Error(\"No video track available\");\n // Check if exposure control is supported\n const caps = track.getCapabilities ? track.getCapabilities() : {};\n if (!caps.exposureMode?.includes(\"manual\")) {\n throw new Error(\"Manual exposure not supported by this camera\");\n }\n try {\n await track.applyConstraints({\n advanced: [\n {\n exposureMode: \"manual\",\n pointsOfInterest: [{ x: options.x, y: options.y }],\n },\n ],\n });\n }\n catch (e) {\n throw new Error(`Failed to set exposure point: ${e instanceof Error ? e.message : \"unknown error\"}`);\n }\n }\n assertNormalizedPoint(options, name) {\n if (!Number.isFinite(options?.x) ||\n !Number.isFinite(options?.y) ||\n options.x < 0 ||\n options.x > 1 ||\n options.y < 0 ||\n options.y > 1) {\n throw new Error(`${name} must use finite x/y values between 0 and 1`);\n }\n }\n async checkPermissions() {\n let cameraStatus = \"prompt\";\n let microphoneStatus = \"prompt\";\n try {\n const cameraResult = await navigator.permissions.query({\n name: \"camera\",\n });\n cameraStatus = cameraResult.state;\n }\n catch (err) {\n console.debug(\"[Camera] permissions.query('camera') not supported:\", err);\n }\n try {\n const micResult = await navigator.permissions.query({\n name: \"microphone\",\n });\n microphoneStatus = micResult.state;\n }\n catch (err) {\n console.debug(\"[Camera] permissions.query('microphone') not supported:\", err);\n }\n // Note: Web platform doesn't have a \"photos\" permission concept.\n // Photos are captured from camera stream, so camera permission covers this.\n return {\n camera: cameraStatus,\n microphone: microphoneStatus,\n photos: cameraStatus, // Photos access follows camera permission on web\n };\n }\n async requestPermissions() {\n let cameraStatus = \"denied\";\n let microphoneStatus = \"denied\";\n try {\n const stream = await getMediaDevices().getUserMedia({\n video: true,\n audio: true,\n });\n stream.getTracks().forEach((track) => {\n track.stop();\n });\n cameraStatus = \"granted\";\n microphoneStatus = \"granted\";\n }\n catch {\n try {\n const videoStream = await getMediaDevices().getUserMedia({\n video: true,\n });\n videoStream.getTracks().forEach((track) => {\n track.stop();\n });\n cameraStatus = \"granted\";\n }\n catch {\n cameraStatus = \"denied\";\n }\n try {\n const audioStream = await getMediaDevices().getUserMedia({\n audio: true,\n });\n audioStream.getTracks().forEach((track) => {\n track.stop();\n });\n microphoneStatus = \"granted\";\n }\n catch {\n microphoneStatus = \"denied\";\n }\n }\n return {\n camera: cameraStatus,\n microphone: microphoneStatus,\n photos: cameraStatus, // Photos access follows camera permission on web\n };\n }\n async addListener(eventName, listenerFunc) {\n const entry = { eventName, callback: listenerFunc };\n this.pluginListeners.push(entry);\n return {\n remove: async () => {\n const i = this.pluginListeners.indexOf(entry);\n if (i >= 0)\n this.pluginListeners.splice(i, 1);\n },\n };\n }\n async removeAllListeners() {\n this.pluginListeners = [];\n }\n notifyListeners(eventName, data) {\n this.pluginListeners\n .filter((l) => l.eventName === eventName)\n .forEach((l) => {\n l.callback(data);\n });\n }\n}\n"],"names":["registerPlugin","WebPlugin"],"mappings":";;;IAEA,MAAM,OAAO,GAAG,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,SAAS,EAAE,CAAC;AACxD,UAAC,MAAM,GAAGA,mBAAc,CAAC,aAAa,EAAE;IACpD,IAAI,GAAG,EAAE,OAAO;IAChB,CAAC;;ICJD,MAAM,gBAAgB,GAAG;IACzB,IAAI,4BAA4B;IAChC,IAAI,4BAA4B;IAChC,IAAI,YAAY;IAChB,IAAI,WAAW;IACf,CAAC;IACD,MAAM,oBAAoB,GAAG,MAAM,gBAAgB,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,aAAa,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI;IACzG,MAAM,eAAe,GAAG,MAAM;IAC9B,IAAI,IAAI,CAAC,SAAS,CAAC,YAAY,EAAE,YAAY,EAAE;IAC/C,QAAQ,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC;IACpE,IAAI;IACJ,IAAI,OAAO,SAAS,CAAC,YAAY;IACjC,CAAC;IACD,MAAM,oBAAoB,GAAG,CAAC,KAAK,EAAE,IAAI,KAAK;IAC9C,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE;IAC/C,QAAQ,MAAM,IAAI,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,iCAAiC,CAAC,CAAC;IACnE,IAAI;IACJ,CAAC;IACD,MAAM,sBAAsB,GAAG,CAAC,OAAO,KAAK;IAC5C,IAAI,IAAI,CAAC,OAAO;IAChB,QAAQ;IACR,IAAI,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS;IACrC,QAAQ,CAAC,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;IACzE,QAAQ,MAAM,IAAI,KAAK,CAAC,sDAAsD,CAAC;IAC/E,IAAI;IACJ,IAAI,IAAI,OAAO,CAAC,WAAW,KAAK,SAAS,EAAE;IAC3C,QAAQ,oBAAoB,CAAC,OAAO,CAAC,WAAW,EAAE,aAAa,CAAC;IAChE,IAAI;IACJ,IAAI,IAAI,OAAO,CAAC,WAAW,KAAK,SAAS,EAAE;IAC3C,QAAQ,oBAAoB,CAAC,OAAO,CAAC,WAAW,EAAE,aAAa,CAAC;IAChE,IAAI;IACJ,IAAI,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE;IACvC,QAAQ,oBAAoB,CAAC,OAAO,CAAC,OAAO,EAAE,SAAS,CAAC;IACxD,IAAI;IACJ,IAAI,IAAI,OAAO,CAAC,SAAS,KAAK,SAAS,EAAE;IACzC,QAAQ,oBAAoB,CAAC,OAAO,CAAC,SAAS,EAAE,WAAW,CAAC;IAC5D,IAAI;IACJ,CAAC;IACM,MAAM,SAAS,SAASC,cAAS,CAAC;IACzC,IAAI,WAAW,GAAG;IAClB,QAAQ,KAAK,CAAC,GAAG,SAAS,CAAC;IAC3B,QAAQ,IAAI,CAAC,WAAW,GAAG,IAAI;IAC/B,QAAQ,IAAI,CAAC,YAAY,GAAG,IAAI;IAChC,QAAQ,IAAI,CAAC,cAAc,GAAG,IAAI;IAClC,QAAQ,IAAI,CAAC,eAAe,GAAG,IAAI;IACnC,QAAQ,IAAI,CAAC,aAAa,GAAG,IAAI;IACjC,QAAQ,IAAI,CAAC,cAAc,GAAG,EAAE;IAChC,QAAQ,IAAI,CAAC,kBAAkB,GAAG,CAAC;IACnC,QAAQ,IAAI,CAAC,sBAAsB,GAAG,IAAI;IAC1C,QAAQ,IAAI,CAAC,WAAW,GAAG,KAAK;IAChC,QAAQ,IAAI,CAAC,eAAe,GAAG;IAC/B,YAAY,KAAK,EAAE,KAAK;IACxB,YAAY,IAAI,EAAE,CAAC;IACnB,YAAY,SAAS,EAAE,YAAY;IACnC,YAAY,YAAY,EAAE,YAAY;IACtC,YAAY,oBAAoB,EAAE,CAAC;IACnC,YAAY,YAAY,EAAE,MAAM;IAChC,SAAS;IACT,QAAQ,IAAI,CAAC,eAAe,GAAG,EAAE;IACjC,IAAI;IACJ,IAAI,MAAM,UAAU,GAAG;IACvB;IACA;IACA;IACA;IACA,QAAQ,MAAM,YAAY,GAAG,eAAe,EAAE;IAC9C,QAAQ,IAAI,CAAC,YAAY,CAAC,gBAAgB,EAAE;IAC5C,YAAY,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC;IACzE,QAAQ;IACR,QAAQ,MAAM,UAAU,GAAG,MAAM,YAAY,CAAC,gBAAgB,EAAE;IAChE,QAAQ,MAAM,YAAY,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,IAAI,KAAK,YAAY,CAAC;IAC9E,QAAQ,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,MAAM,EAAE,KAAK,MAAM;IACrF,YAAY,QAAQ,EAAE,MAAM,CAAC,QAAQ;IACrC,YAAY,KAAK,EAAE,MAAM,CAAC,KAAK,IAAI,CAAC,OAAO,EAAE,KAAK,GAAG,CAAC,CAAC,CAAC;IACxD,YAAY,SAAS,EAAE,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,KAAK,CAAC;IACxD;IACA;IACA;IACA,YAAY,QAAQ,EAAE,KAAK;IAC3B,YAAY,OAAO,EAAE,KAAK;IAC1B,YAAY,OAAO,EAAE,CAAC;IACtB,YAAY,oBAAoB,EAAE,EAAE;IACpC,YAAY,mBAAmB,EAAE,EAAE;IACnC,SAAS,CAAC,CAAC,CAAC;IACZ,QAAQ,OAAO,EAAE,OAAO,EAAE;IAC1B,IAAI;IACJ,IAAI,cAAc,CAAC,KAAK,EAAE;IAC1B,QAAQ,MAAM,UAAU,GAAG,KAAK,CAAC,WAAW,EAAE;IAC9C,QAAQ,IAAI,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC;IACxC,YAAY,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC;IAC3C,YAAY,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;IACzC,YAAY,OAAO,OAAO;IAC1B,QAAQ;IACR,QAAQ,IAAI,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC;IACvC,YAAY,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC;IACvC,YAAY,UAAU,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE;IAChD,YAAY,OAAO,MAAM;IACzB,QAAQ;IACR,QAAQ,OAAO,UAAU;IACzB,IAAI;IACJ,IAAI,MAAM,YAAY,CAAC,OAAO,EAAE;IAChC,QAAQ,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE;IAC5C,YAAY,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC;IAC1D,QAAQ;IACR,QAAQ,IAAI,OAAO,CAAC,UAAU,EAAE;IAChC,YAAY,oBAAoB,CAAC,OAAO,CAAC,UAAU,CAAC,KAAK,EAAE,kBAAkB,CAAC;IAC9E,YAAY,oBAAoB,CAAC,OAAO,CAAC,UAAU,CAAC,MAAM,EAAE,mBAAmB,CAAC;IAChF,QAAQ;IACR,QAAQ,IAAI,OAAO,CAAC,SAAS,KAAK,SAAS,EAAE;IAC7C,YAAY,oBAAoB,CAAC,OAAO,CAAC,SAAS,EAAE,WAAW,CAAC;IAChE,QAAQ;IACR,QAAQ,MAAM,IAAI,CAAC,WAAW,EAAE;IAChC,QAAQ,MAAM,WAAW,GAAG;IAC5B,YAAY,KAAK,EAAE;IACnB,gBAAgB,QAAQ,EAAE,OAAO,CAAC,QAAQ,GAAG,EAAE,KAAK,EAAE,OAAO,CAAC,QAAQ,EAAE,GAAG,SAAS;IACpF,gBAAgB,UAAU,EAAE,OAAO,CAAC,SAAS,KAAK;IAClD,sBAAsB;IACtB,sBAAsB,OAAO,CAAC,SAAS,KAAK;IAC5C,0BAA0B;IAC1B,0BAA0B,SAAS;IACnC,gBAAgB,KAAK,EAAE,OAAO,CAAC,UAAU,EAAE;IAC3C,sBAAsB,EAAE,KAAK,EAAE,OAAO,CAAC,UAAU,CAAC,KAAK;IACvD,sBAAsB,EAAE,KAAK,EAAE,IAAI,EAAE;IACrC,gBAAgB,MAAM,EAAE,OAAO,CAAC,UAAU,EAAE;IAC5C,sBAAsB,EAAE,KAAK,EAAE,OAAO,CAAC,UAAU,CAAC,MAAM;IACxD,sBAAsB,EAAE,KAAK,EAAE,IAAI,EAAE;IACrC,gBAAgB,SAAS,EAAE,OAAO,CAAC;IACnC,sBAAsB,EAAE,KAAK,EAAE,OAAO,CAAC,SAAS;IAChD,sBAAsB,EAAE,KAAK,EAAE,EAAE,EAAE;IACnC,aAAa;IACb,YAAY,KAAK,EAAE,KAAK;IACxB,SAAS;IACT;IACA;IACA,QAAQ,IAAI,CAAC,WAAW,GAAG,MAAM,eAAe,EAAE,CAAC,YAAY,CAAC,WAAW,CAAC;IAC5E,QAAQ,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,OAAO;IAC7C,QAAQ,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC;IAC3D,QAAQ,IAAI,CAAC,YAAY,CAAC,SAAS,GAAG,IAAI,CAAC,WAAW;IACtD,QAAQ,IAAI,CAAC,YAAY,CAAC,QAAQ,GAAG,IAAI;IACzC,QAAQ,IAAI,CAAC,YAAY,CAAC,WAAW,GAAG,IAAI;IAC5C,QAAQ,IAAI,CAAC,YAAY,CAAC,KAAK,GAAG,IAAI;IACtC,QAAQ,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,KAAK,GAAG,MAAM;IAC9C,QAAQ,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,MAAM,GAAG,MAAM;IAC/C,QAAQ,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,SAAS,GAAG,OAAO;IACnD,QAAQ,IAAI,OAAO,CAAC,MAAM,EAAE;IAC5B,YAAY,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,SAAS,GAAG,YAAY;IAC5D,QAAQ;IACR,QAAQ,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,YAAY,CAAC;IAC1D,QAAQ,MAAM,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE;IACtC,QAAQ,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;IAC1D,QAAQ,MAAM,QAAQ,GAAG,KAAK,CAAC,WAAW,EAAE;IAC5C,QAAQ,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC,QAAQ,IAAI,OAAO,CAAC,QAAQ,IAAI,EAAE;IAC1E,QAAQ,OAAO;IACf,YAAY,KAAK,EAAE,QAAQ,CAAC,KAAK,IAAI,OAAO,CAAC,UAAU,EAAE,KAAK,IAAI,IAAI;IACtE,YAAY,MAAM,EAAE,QAAQ,CAAC,MAAM,IAAI,OAAO,CAAC,UAAU,EAAE,MAAM,IAAI,IAAI;IACzE,YAAY,QAAQ,EAAE,IAAI,CAAC,eAAe;IAC1C,SAAS;IACT,IAAI;IACJ,IAAI,MAAM,WAAW,GAAG;IACxB,QAAQ,IAAI,IAAI,CAAC,WAAW,EAAE;IAC9B,YAAY,MAAM,IAAI,CAAC,aAAa,EAAE;IACtC,QAAQ;IACR,QAAQ,IAAI,IAAI,CAAC,WAAW,EAAE;IAC9B,YAAY,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,CAAC,OAAO,CAAC,CAAC,KAAK,KAAK;IAC5D,gBAAgB,KAAK,CAAC,IAAI,EAAE;IAC5B,YAAY,CAAC,CAAC;IACd,YAAY,IAAI,CAAC,WAAW,GAAG,IAAI;IACnC,QAAQ;IACR,QAAQ,IAAI,IAAI,CAAC,YAAY,EAAE;IAC/B,YAAY,IAAI,IAAI,CAAC,cAAc,EAAE,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE;IAClE,gBAAgB,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,YAAY,CAAC;IAClE,YAAY;IACZ,YAAY,IAAI,CAAC,YAAY,GAAG,IAAI;IACpC,QAAQ;IACR,QAAQ,IAAI,CAAC,cAAc,GAAG,IAAI;IAClC,QAAQ,IAAI,CAAC,eAAe,GAAG,IAAI;IACnC,IAAI;IACJ,IAAI,MAAM,YAAY,CAAC,OAAO,EAAE;IAChC,QAAQ,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;IAClC,YAAY,MAAM,IAAI,KAAK,CAAC,qBAAqB,CAAC;IAClD,QAAQ;IACR,QAAQ,MAAM,MAAM,GAAG,OAAO,CAAC,SAAS,KAAK,OAAO;IACpD,QAAQ,OAAO,IAAI,CAAC,YAAY,CAAC;IACjC,YAAY,OAAO,EAAE,IAAI,CAAC,cAAc;IACxC,YAAY,QAAQ,EAAE,OAAO,CAAC,QAAQ;IACtC,YAAY,SAAS,EAAE,OAAO,CAAC,SAAS;IACxC,YAAY,MAAM;IAClB,SAAS,CAAC;IACV,IAAI;IACJ,IAAI,MAAM,YAAY,CAAC,OAAO,EAAE;IAChC,QAAQ,IAAI,CAAC,IAAI,CAAC,YAAY,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;IACrD,YAAY,MAAM,IAAI,KAAK,CAAC,qBAAqB,CAAC;IAClD,QAAQ;IACR,QAAQ,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;IAC1D,QAAQ,MAAM,QAAQ,GAAG,KAAK,CAAC,WAAW,EAAE;IAC5C,QAAQ,MAAM,UAAU,GAAG,QAAQ,CAAC,KAAK,IAAI,IAAI,CAAC,YAAY,CAAC,UAAU;IACzE,QAAQ,MAAM,WAAW,GAAG,QAAQ,CAAC,MAAM,IAAI,IAAI,CAAC,YAAY,CAAC,WAAW;IAC5E,QAAQ,oBAAoB,CAAC,UAAU,EAAE,YAAY,CAAC;IACtD,QAAQ,oBAAoB,CAAC,WAAW,EAAE,aAAa,CAAC;IACxD,QAAQ,MAAM,WAAW,GAAG,OAAO,EAAE,KAAK,IAAI,UAAU;IACxD,QAAQ,MAAM,YAAY,GAAG,OAAO,EAAE,MAAM,IAAI,WAAW;IAC3D,QAAQ,oBAAoB,CAAC,WAAW,EAAE,OAAO,CAAC;IAClD,QAAQ,oBAAoB,CAAC,YAAY,EAAE,QAAQ,CAAC;IACpD,QAAQ,IAAI,OAAO,EAAE,OAAO,KAAK,SAAS;IAC1C,aAAa,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC;IAC9C,gBAAgB,OAAO,CAAC,OAAO,GAAG,CAAC;IACnC,gBAAgB,OAAO,CAAC,OAAO,GAAG,GAAG,CAAC,EAAE;IACxC,YAAY,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC;IAChF,QAAQ;IACR,QAAQ,MAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC;IACvD,QAAQ,MAAM,CAAC,KAAK,GAAG,WAAW;IAClC,QAAQ,MAAM,CAAC,MAAM,GAAG,YAAY;IACpC,QAAQ,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC;IAC3C,QAAQ,IAAI,CAAC,GAAG,EAAE;IAClB,YAAY,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC;IAC3D,QAAQ;IACR,QAAQ,MAAM,MAAM,GAAG,WAAW,GAAG,UAAU;IAC/C,QAAQ,MAAM,MAAM,GAAG,YAAY,GAAG,WAAW;IACjD,QAAQ,MAAM,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC;IAC9C,QAAQ,MAAM,SAAS,GAAG,UAAU,GAAG,KAAK;IAC5C,QAAQ,MAAM,UAAU,GAAG,WAAW,GAAG,KAAK;IAC9C,QAAQ,MAAM,KAAK,GAAG,CAAC,WAAW,GAAG,SAAS,IAAI,CAAC;IACnD,QAAQ,MAAM,KAAK,GAAG,CAAC,YAAY,GAAG,UAAU,IAAI,CAAC;IACrD,QAAQ,GAAG,CAAC,SAAS,CAAC,IAAI,CAAC,YAAY,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,UAAU,CAAC;IAC7E,QAAQ,MAAM,OAAO,GAAG,CAAC,OAAO,EAAE,OAAO,IAAI,EAAE,IAAI,GAAG;IACtD,QAAQ,MAAM,MAAM,GAAG,OAAO,EAAE,MAAM,IAAI,MAAM;IAChD,QAAQ,MAAM,QAAQ,GAAG,MAAM,KAAK;IACpC,cAAc;IACd,cAAc,MAAM,KAAK;IACzB,kBAAkB;IAClB,kBAAkB,YAAY;IAC9B,QAAQ,MAAM,OAAO,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,EAAE,OAAO,CAAC;IAC3D,QAAQ,MAAM,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAC5C,QAAQ,IAAI,CAAC,MAAM,EAAE;IACrB,YAAY,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC;IAC9D,QAAQ;IACR,QAAQ,OAAO;IACf,YAAY,MAAM;IAClB,YAAY,MAAM;IAClB,YAAY,KAAK,EAAE,WAAW;IAC9B,YAAY,MAAM,EAAE,YAAY;IAChC,SAAS;IACT,IAAI;IACJ,IAAI,MAAM,cAAc,CAAC,OAAO,EAAE;IAClC,QAAQ,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;IAC/B,YAAY,MAAM,IAAI,KAAK,CAAC,qBAAqB,CAAC;IAClD,QAAQ;IACR,QAAQ,IAAI,IAAI,CAAC,WAAW,EAAE;IAC9B,YAAY,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC;IAC5D,QAAQ;IACR,QAAQ,sBAAsB,CAAC,OAAO,CAAC;IACvC,QAAQ,IAAI,cAAc,GAAG,IAAI,CAAC,WAAW;IAC7C,QAAQ,IAAI,OAAO,EAAE,KAAK,KAAK,KAAK,EAAE;IACtC,YAAY,MAAM,WAAW,GAAG,MAAM,eAAe,EAAE,CAAC,YAAY,CAAC;IACrE,gBAAgB,KAAK,EAAE,IAAI;IAC3B,aAAa,CAAC;IACd,YAAY,cAAc,GAAG,IAAI,WAAW,CAAC;IAC7C,gBAAgB,GAAG,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE;IACpD,gBAAgB,GAAG,WAAW,CAAC,cAAc,EAAE;IAC/C,aAAa,CAAC;IACd,QAAQ;IACR,QAAQ,MAAM,QAAQ,GAAG,oBAAoB,EAAE;IAC/C,QAAQ,IAAI,CAAC,QAAQ;IACrB,YAAY,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC;IACjE,QAAQ,MAAM,eAAe,GAAG,EAAE,QAAQ,EAAE;IAC5C,QAAQ,IAAI,OAAO,EAAE,OAAO;IAC5B,YAAY,eAAe,CAAC,kBAAkB,GAAG,OAAO,CAAC,OAAO;IAChE,QAAQ,IAAI,CAAC,cAAc,GAAG,EAAE;IAChC,QAAQ,IAAI,CAAC,aAAa,GAAG,IAAI,aAAa,CAAC,cAAc,EAAE,eAAe,CAAC;IAC/E,QAAQ,IAAI,CAAC,aAAa,CAAC,eAAe,GAAG,CAAC,KAAK,KAAK;IACxD,YAAY,IAAI,KAAK,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,EAAE;IACrC,gBAAgB,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;IACpD,YAAY;IACZ,QAAQ,CAAC;IACT,QAAQ,IAAI,CAAC,aAAa,CAAC,OAAO,GAAG,CAAC,KAAK,KAAK;IAChD,YAAY,IAAI,CAAC,eAAe,CAAC,OAAO,EAAE;IAC1C,gBAAgB,IAAI,EAAE,iBAAiB;IACvC,gBAAgB,OAAO,EAAE,CAAC,iBAAiB,EAAE,KAAK,CAAC,OAAO,IAAI,eAAe,CAAC,CAAC;IAC/E,aAAa,CAAC;IACd,QAAQ,CAAC;IACT,QAAQ,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,GAAG,EAAE;IAC5C,QAAQ,IAAI,CAAC,WAAW,GAAG,IAAI;IAC/B,QAAQ,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,IAAI,CAAC;IACtC,QAAQ,IAAI,CAAC,eAAe,CAAC,gBAAgB,EAAE;IAC/C,YAAY,WAAW,EAAE,IAAI;IAC7B,YAAY,QAAQ,EAAE,CAAC;IACvB,YAAY,QAAQ,EAAE,CAAC;IACvB,SAAS,CAAC;IACV,QAAQ,IAAI,YAAY,GAAG,KAAK;IAChC,QAAQ,IAAI,CAAC,sBAAsB,GAAG,WAAW,CAAC,MAAM;IACxD,YAAY,IAAI,CAAC,IAAI,CAAC,WAAW,IAAI,YAAY;IACjD,gBAAgB;IAChB,YAAY,MAAM,QAAQ,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,kBAAkB,IAAI,IAAI;IAC1E,YAAY,MAAM,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,KAAK,GAAG,GAAG,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC;IAC5F,YAAY,IAAI,CAAC,eAAe,CAAC,gBAAgB,EAAE;IACnD,gBAAgB,WAAW,EAAE,IAAI;IACjC,gBAAgB,QAAQ;IACxB,gBAAgB,QAAQ;IACxB,aAAa,CAAC;IACd,YAAY,MAAM,SAAS,GAAG,CAAC,OAAO,EAAE,WAAW,IAAI,QAAQ,IAAI,OAAO,CAAC,WAAW;IACtF,iBAAiB,OAAO,EAAE,WAAW,IAAI,QAAQ,IAAI,OAAO,CAAC,WAAW,CAAC;IACzE,YAAY,IAAI,SAAS,EAAE;IAC3B,gBAAgB,YAAY,GAAG,IAAI;IACnC,gBAAgB,IAAI,CAAC,aAAa,EAAE,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK;IACpD,oBAAoB,OAAO,CAAC,KAAK,CAAC,sCAAsC,EAAE,GAAG,CAAC;IAC9E,gBAAgB,CAAC,CAAC;IAClB,YAAY;IACZ,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,IAAI;IACJ,IAAI,MAAM,aAAa,GAAG;IAC1B,QAAQ,IAAI,CAAC,IAAI,CAAC,WAAW,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;IACtD,YAAY,MAAM,IAAI,KAAK,CAAC,eAAe,CAAC;IAC5C,QAAQ;IACR,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;IAChD,YAAY,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;IACrC,gBAAgB,MAAM,CAAC,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;IAClE,gBAAgB;IAChB,YAAY;IACZ,YAAY,MAAM,QAAQ,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,kBAAkB,IAAI,IAAI;IAC1E,YAAY,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,MAAM;IAC9C,gBAAgB,IAAI,IAAI,CAAC,sBAAsB,EAAE;IACjD,oBAAoB,aAAa,CAAC,IAAI,CAAC,sBAAsB,CAAC;IAC9D,oBAAoB,IAAI,CAAC,sBAAsB,GAAG,IAAI;IACtD,gBAAgB;IAChB,gBAAgB,IAAI,CAAC,WAAW,GAAG,KAAK;IACxC,gBAAgB,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE;IAC3D,oBAAoB,IAAI,EAAE,IAAI,CAAC,aAAa,EAAE,QAAQ,IAAI,YAAY;IACtE,iBAAiB,CAAC;IAClB,gBAAgB,MAAM,GAAG,GAAG,GAAG,CAAC,eAAe,CAAC,IAAI,CAAC;IACrD,gBAAgB,MAAM,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC;IAC7D,gBAAgB,KAAK,CAAC,GAAG,GAAG,GAAG;IAC/B,gBAAgB,KAAK,CAAC,gBAAgB,GAAG,MAAM;IAC/C,oBAAoB,OAAO,CAAC;IAC5B,wBAAwB,IAAI,EAAE,GAAG;IACjC,wBAAwB,QAAQ;IAChC,wBAAwB,KAAK,EAAE,KAAK,CAAC,UAAU;IAC/C,wBAAwB,MAAM,EAAE,KAAK,CAAC,WAAW;IACjD,wBAAwB,QAAQ,EAAE,IAAI,CAAC,IAAI;IAC3C,wBAAwB,QAAQ,EAAE,IAAI,CAAC,aAAa,EAAE,QAAQ,IAAI,YAAY;IAC9E,qBAAqB,CAAC;IACtB,gBAAgB,CAAC;IACjB,gBAAgB,KAAK,CAAC,OAAO,GAAG,MAAM;IACtC,oBAAoB,OAAO,CAAC;IAC5B,wBAAwB,IAAI,EAAE,GAAG;IACjC,wBAAwB,QAAQ;IAChC,wBAAwB,KAAK,EAAE,CAAC;IAChC,wBAAwB,MAAM,EAAE,CAAC;IACjC,wBAAwB,QAAQ,EAAE,IAAI,CAAC,IAAI;IAC3C,wBAAwB,QAAQ,EAAE,IAAI,CAAC,aAAa,EAAE,QAAQ,IAAI,YAAY;IAC9E,qBAAqB,CAAC;IACtB,gBAAgB,CAAC;IACjB,gBAAgB,IAAI,CAAC,eAAe,CAAC,gBAAgB,EAAE;IACvD,oBAAoB,WAAW,EAAE,KAAK;IACtC,oBAAoB,QAAQ;IAC5B,oBAAoB,QAAQ,EAAE,IAAI,CAAC,IAAI;IACvC,iBAAiB,CAAC;IAClB,YAAY,CAAC;IACb,YAAY,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE;IACrC,QAAQ,CAAC,CAAC;IACV,IAAI;IACJ,IAAI,MAAM,iBAAiB,GAAG;IAC9B,QAAQ,MAAM,QAAQ,GAAG,IAAI,CAAC;IAC9B,cAAc,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,kBAAkB,IAAI;IACvD,cAAc,CAAC;IACf,QAAQ,MAAM,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,KAAK,GAAG,GAAG,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC;IACxF,QAAQ,OAAO;IACf,YAAY,WAAW,EAAE,IAAI,CAAC,WAAW;IACzC,YAAY,QAAQ;IACpB,YAAY,QAAQ;IACpB,SAAS;IACT,IAAI;IACJ,IAAI,MAAM,WAAW,GAAG;IACxB,QAAQ,OAAO,EAAE,QAAQ,EAAE,EAAE,GAAG,IAAI,CAAC,eAAe,EAAE,EAAE;IACxD,IAAI;IACJ,IAAI,MAAM,WAAW,CAAC,OAAO,EAAE;IAC/B,QAAQ,IAAI,CAAC,OAAO,EAAE,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,QAAQ,EAAE;IACxE,YAAY,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC;IAC1D,QAAQ;IACR,QAAQ,IAAI,OAAO,CAAC,QAAQ,CAAC,IAAI,KAAK,SAAS,EAAE;IACjD,YAAY,MAAM,IAAI,GAAG,OAAO,CAAC,QAAQ,CAAC,IAAI;IAC9C,YAAY,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC;IACtC,QAAQ;IACR,QAAQ,IAAI,CAAC,eAAe,GAAG,EAAE,GAAG,IAAI,CAAC,eAAe,EAAE,GAAG,OAAO,CAAC,QAAQ,EAAE;IAC/E,QAAQ,IAAI,IAAI,CAAC,WAAW,IAAI,OAAO,CAAC,QAAQ,CAAC,IAAI,KAAK,SAAS,EAAE;IACrE,YAAY,MAAM,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC;IACvD,QAAQ;IACR,IAAI;IACJ,IAAI,MAAM,OAAO,CAAC,OAAO,EAAE;IAC3B,QAAQ,MAAM,IAAI,GAAG,OAAO,EAAE,IAAI;IAClC,QAAQ,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC;IAClC,QAAQ,MAAM,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC;IAClC,QAAQ,IAAI,CAAC,eAAe,CAAC,IAAI,GAAG,IAAI;IACxC,IAAI;IACJ,IAAI,eAAe,CAAC,IAAI,EAAE;IAC1B,QAAQ,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE;IAC5E,YAAY,MAAM,IAAI,KAAK,CAAC,CAAC,oBAAoB,EAAE,IAAI,CAAC,uCAAuC,CAAC,CAAC;IACjG,QAAQ;IACR,IAAI;IACJ,IAAI,MAAM,SAAS,CAAC,IAAI,EAAE;IAC1B,QAAQ,IAAI,CAAC,IAAI,CAAC,WAAW;IAC7B,YAAY;IACZ,QAAQ,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;IAC1D,QAAQ,IAAI,CAAC,KAAK;IAClB,YAAY;IACZ,QAAQ,MAAM,YAAY,GAAG,KAAK,CAAC,eAAe,GAAG,KAAK,CAAC,eAAe,EAAE,GAAG,EAAE;IACjF,QAAQ,MAAM,IAAI,GAAG,YAAY;IACjC,QAAQ,IAAI,IAAI,CAAC,IAAI,EAAE;IACvB,YAAY,MAAM,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IACtF,YAAY,MAAM,KAAK,CAAC,gBAAgB,CAAC;IACzC,gBAAgB,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;IACjD,aAAa,CAAC;IACd,QAAQ;IACR,IAAI;IACJ,IAAI,MAAM,aAAa,CAAC,OAAO,EAAE;IACjC,QAAQ,IAAI,CAAC,IAAI,CAAC,WAAW;IAC7B,YAAY,MAAM,IAAI,KAAK,CAAC,qBAAqB,CAAC;IAClD,QAAQ,IAAI,CAAC,qBAAqB,CAAC,OAAO,EAAE,aAAa,CAAC;IAC1D,QAAQ,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;IAC1D,QAAQ,IAAI,CAAC,KAAK;IAClB,YAAY,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC;IACvD;IACA,QAAQ,MAAM,IAAI,GAAG,KAAK,CAAC,eAAe,GAAG,KAAK,CAAC,eAAe,EAAE,GAAG,EAAE;IACzE,QAAQ,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE;IACjD,YAAY,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC;IACxE,QAAQ;IACR,QAAQ,IAAI;IACZ,YAAY,MAAM,KAAK,CAAC,gBAAgB,CAAC;IACzC,gBAAgB,QAAQ,EAAE;IAC1B,oBAAoB;IACpB,wBAAwB,SAAS,EAAE,QAAQ;IAC3C,wBAAwB,gBAAgB,EAAE,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC;IAC1E,qBAAqB;IACrB,iBAAiB;IACjB,aAAa,CAAC;IACd,QAAQ;IACR,QAAQ,OAAO,CAAC,EAAE;IAClB,YAAY,MAAM,IAAI,KAAK,CAAC,CAAC,2BAA2B,EAAE,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,OAAO,GAAG,eAAe,CAAC,CAAC,CAAC;IAC7G,QAAQ;IACR,IAAI;IACJ,IAAI,MAAM,gBAAgB,CAAC,OAAO,EAAE;IACpC,QAAQ,IAAI,CAAC,IAAI,CAAC,WAAW;IAC7B,YAAY,MAAM,IAAI,KAAK,CAAC,qBAAqB,CAAC;IAClD,QAAQ,IAAI,CAAC,qBAAqB,CAAC,OAAO,EAAE,gBAAgB,CAAC;IAC7D,QAAQ,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;IAC1D,QAAQ,IAAI,CAAC,KAAK;IAClB,YAAY,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC;IACvD;IACA,QAAQ,MAAM,IAAI,GAAG,KAAK,CAAC,eAAe,GAAG,KAAK,CAAC,eAAe,EAAE,GAAG,EAAE;IACzE,QAAQ,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE;IACpD,YAAY,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC;IAC3E,QAAQ;IACR,QAAQ,IAAI;IACZ,YAAY,MAAM,KAAK,CAAC,gBAAgB,CAAC;IACzC,gBAAgB,QAAQ,EAAE;IAC1B,oBAAoB;IACpB,wBAAwB,YAAY,EAAE,QAAQ;IAC9C,wBAAwB,gBAAgB,EAAE,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC;IAC1E,qBAAqB;IACrB,iBAAiB;IACjB,aAAa,CAAC;IACd,QAAQ;IACR,QAAQ,OAAO,CAAC,EAAE;IAClB,YAAY,MAAM,IAAI,KAAK,CAAC,CAAC,8BAA8B,EAAE,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,OAAO,GAAG,eAAe,CAAC,CAAC,CAAC;IAChH,QAAQ;IACR,IAAI;IACJ,IAAI,qBAAqB,CAAC,OAAO,EAAE,IAAI,EAAE;IACzC,QAAQ,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;IACxC,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;IACxC,YAAY,OAAO,CAAC,CAAC,GAAG,CAAC;IACzB,YAAY,OAAO,CAAC,CAAC,GAAG,CAAC;IACzB,YAAY,OAAO,CAAC,CAAC,GAAG,CAAC;IACzB,YAAY,OAAO,CAAC,CAAC,GAAG,CAAC,EAAE;IAC3B,YAAY,MAAM,IAAI,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,2CAA2C,CAAC,CAAC;IACjF,QAAQ;IACR,IAAI;IACJ,IAAI,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,IAAI,YAAY,GAAG,QAAQ;IACnC,QAAQ,IAAI,gBAAgB,GAAG,QAAQ;IACvC,QAAQ,IAAI;IACZ,YAAY,MAAM,YAAY,GAAG,MAAM,SAAS,CAAC,WAAW,CAAC,KAAK,CAAC;IACnE,gBAAgB,IAAI,EAAE,QAAQ;IAC9B,aAAa,CAAC;IACd,YAAY,YAAY,GAAG,YAAY,CAAC,KAAK;IAC7C,QAAQ;IACR,QAAQ,OAAO,GAAG,EAAE;IACpB,YAAY,OAAO,CAAC,KAAK,CAAC,qDAAqD,EAAE,GAAG,CAAC;IACrF,QAAQ;IACR,QAAQ,IAAI;IACZ,YAAY,MAAM,SAAS,GAAG,MAAM,SAAS,CAAC,WAAW,CAAC,KAAK,CAAC;IAChE,gBAAgB,IAAI,EAAE,YAAY;IAClC,aAAa,CAAC;IACd,YAAY,gBAAgB,GAAG,SAAS,CAAC,KAAK;IAC9C,QAAQ;IACR,QAAQ,OAAO,GAAG,EAAE;IACpB,YAAY,OAAO,CAAC,KAAK,CAAC,yDAAyD,EAAE,GAAG,CAAC;IACzF,QAAQ;IACR;IACA;IACA,QAAQ,OAAO;IACf,YAAY,MAAM,EAAE,YAAY;IAChC,YAAY,UAAU,EAAE,gBAAgB;IACxC,YAAY,MAAM,EAAE,YAAY;IAChC,SAAS;IACT,IAAI;IACJ,IAAI,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,IAAI,YAAY,GAAG,QAAQ;IACnC,QAAQ,IAAI,gBAAgB,GAAG,QAAQ;IACvC,QAAQ,IAAI;IACZ,YAAY,MAAM,MAAM,GAAG,MAAM,eAAe,EAAE,CAAC,YAAY,CAAC;IAChE,gBAAgB,KAAK,EAAE,IAAI;IAC3B,gBAAgB,KAAK,EAAE,IAAI;IAC3B,aAAa,CAAC;IACd,YAAY,MAAM,CAAC,SAAS,EAAE,CAAC,OAAO,CAAC,CAAC,KAAK,KAAK;IAClD,gBAAgB,KAAK,CAAC,IAAI,EAAE;IAC5B,YAAY,CAAC,CAAC;IACd,YAAY,YAAY,GAAG,SAAS;IACpC,YAAY,gBAAgB,GAAG,SAAS;IACxC,QAAQ;IACR,QAAQ,MAAM;IACd,YAAY,IAAI;IAChB,gBAAgB,MAAM,WAAW,GAAG,MAAM,eAAe,EAAE,CAAC,YAAY,CAAC;IACzE,oBAAoB,KAAK,EAAE,IAAI;IAC/B,iBAAiB,CAAC;IAClB,gBAAgB,WAAW,CAAC,SAAS,EAAE,CAAC,OAAO,CAAC,CAAC,KAAK,KAAK;IAC3D,oBAAoB,KAAK,CAAC,IAAI,EAAE;IAChC,gBAAgB,CAAC,CAAC;IAClB,gBAAgB,YAAY,GAAG,SAAS;IACxC,YAAY;IACZ,YAAY,MAAM;IAClB,gBAAgB,YAAY,GAAG,QAAQ;IACvC,YAAY;IACZ,YAAY,IAAI;IAChB,gBAAgB,MAAM,WAAW,GAAG,MAAM,eAAe,EAAE,CAAC,YAAY,CAAC;IACzE,oBAAoB,KAAK,EAAE,IAAI;IAC/B,iBAAiB,CAAC;IAClB,gBAAgB,WAAW,CAAC,SAAS,EAAE,CAAC,OAAO,CAAC,CAAC,KAAK,KAAK;IAC3D,oBAAoB,KAAK,CAAC,IAAI,EAAE;IAChC,gBAAgB,CAAC,CAAC;IAClB,gBAAgB,gBAAgB,GAAG,SAAS;IAC5C,YAAY;IACZ,YAAY,MAAM;IAClB,gBAAgB,gBAAgB,GAAG,QAAQ;IAC3C,YAAY;IACZ,QAAQ;IACR,QAAQ,OAAO;IACf,YAAY,MAAM,EAAE,YAAY;IAChC,YAAY,UAAU,EAAE,gBAAgB;IACxC,YAAY,MAAM,EAAE,YAAY;IAChC,SAAS;IACT,IAAI;IACJ,IAAI,MAAM,WAAW,CAAC,SAAS,EAAE,YAAY,EAAE;IAC/C,QAAQ,MAAM,KAAK,GAAG,EAAE,SAAS,EAAE,QAAQ,EAAE,YAAY,EAAE;IAC3D,QAAQ,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,CAAC;IACxC,QAAQ,OAAO;IACf,YAAY,MAAM,EAAE,YAAY;IAChC,gBAAgB,MAAM,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,KAAK,CAAC;IAC7D,gBAAgB,IAAI,CAAC,IAAI,CAAC;IAC1B,oBAAoB,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC;IACrD,YAAY,CAAC;IACb,SAAS;IACT,IAAI;IACJ,IAAI,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,IAAI,CAAC,eAAe,GAAG,EAAE;IACjC,IAAI;IACJ,IAAI,eAAe,CAAC,SAAS,EAAE,IAAI,EAAE;IACrC,QAAQ,IAAI,CAAC;IACb,aAAa,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,KAAK,SAAS;IACpD,aAAa,OAAO,CAAC,CAAC,CAAC,KAAK;IAC5B,YAAY,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC;IAC5B,QAAQ,CAAC,CAAC;IACV,IAAI;IACJ;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/capacitor-camera",
3
- "version": "1.0.0",
3
+ "version": "2.0.3-beta.2",
4
4
  "description": "Captures photos, records video, and streams camera preview with manual controls.",
5
5
  "keywords": [
6
6
  "camera",
@@ -14,6 +14,8 @@
14
14
  "exports": {
15
15
  ".": {
16
16
  "types": "./dist/esm/index.d.ts",
17
+ "bun": "./src/index.ts",
18
+ "development": "./src/index.ts",
17
19
  "import": "./dist/esm/index.js",
18
20
  "require": "./dist/plugin.cjs.js"
19
21
  },
@@ -26,8 +28,8 @@
26
28
  "dist/",
27
29
  "ios/Sources/",
28
30
  "ios/Plugin.xcodeproj/",
29
- "electrobun/",
30
- "*.podspec"
31
+ "*.podspec",
32
+ "dist"
31
33
  ],
32
34
  "author": "elizaOS",
33
35
  "license": "MIT",
@@ -36,19 +38,20 @@
36
38
  "url": "https://github.com/elizaOS/eliza"
37
39
  },
38
40
  "scripts": {
39
- "build": "npm run clean && tsc && rollup -c rollup.config.mjs",
40
- "clean": "rimraf ./dist",
41
- "prepublishOnly": "npm run build",
42
- "watch": "tsc --watch"
41
+ "build": "node ../../packages/scripts/with-package-build-lock.mjs plugins/plugin-native-camera -- bun run build:unlocked",
42
+ "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist",
43
+ "prepublishOnly": "bun run build",
44
+ "test": "vitest run --config vitest.config.ts",
45
+ "watch": "tsc --watch",
46
+ "build:unlocked": "bun run clean && tsc && bunx rollup -c rollup.config.mjs"
43
47
  },
44
48
  "devDependencies": {
45
- "@capacitor/android": "^8.0.0",
46
49
  "@capacitor/core": "^8.3.1",
47
- "@capacitor/ios": "^8.0.0",
48
50
  "@rollup/plugin-node-resolve": "^16.0.0",
49
- "rimraf": "^6.0.0",
51
+ "fast-check": "^4.8.0",
50
52
  "rollup": "^4.60.2",
51
- "typescript": "^6.0.0"
53
+ "typescript": "^6.0.3",
54
+ "vitest": "^4.0.18"
52
55
  },
53
56
  "peerDependencies": {
54
57
  "@capacitor/core": "^8.3.1"
@@ -77,5 +80,6 @@
77
80
  "ios": true,
78
81
  "android": true
79
82
  }
80
- }
83
+ },
84
+ "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
81
85
  }
@@ -1,13 +0,0 @@
1
- /**
2
- * Camera Plugin for Electrobun
3
- *
4
- * Uses the web implementation (MediaDevices API) for parity on desktop.
5
- */
6
-
7
- import type { CameraPlugin } from "../../src/definitions";
8
- import { CameraWeb } from "../../src/web";
9
-
10
- export class CameraElectrobun extends CameraWeb implements CameraPlugin {}
11
-
12
- // Export the plugin instance
13
- export const Camera = new CameraElectrobun();
@@ -1,18 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "ESNext",
5
- "moduleResolution": "bundler",
6
- "lib": ["ES2020", "DOM"],
7
- "declaration": true,
8
- "strict": true,
9
- "noUnusedLocals": true,
10
- "noUnusedParameters": true,
11
- "esModuleInterop": true,
12
- "skipLibCheck": true,
13
- "outDir": "./dist",
14
- "rootDir": "./src"
15
- },
16
- "include": ["src/**/*.ts"],
17
- "exclude": ["node_modules", "dist"]
18
- }