shopar-plugin 1.1.0-alpha.0 → 1.1.0-alpha.1

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.
@@ -291,6 +291,12 @@ declare class ApiError extends PluginError {
291
291
  status: number | undefined;
292
292
  constructor(message: string, status?: number);
293
293
  }
294
+ /**
295
+ * Error thrown when SKU data sanitization fails.
296
+ */
297
+ declare class SanitizationError extends PluginError {
298
+ constructor(message: string);
299
+ }
294
300
  /**
295
301
  * Error thrown when 3D fails to launch.
296
302
  */
@@ -496,5 +502,5 @@ declare const plugin: {
496
502
  version: string;
497
503
  };
498
504
 
499
- export { ApiError, CameraPermissionDeniedError, Launch3DError, LaunchARError, PREVIEW_STATES, PluginError, QRError, ValidationError, plugin, vision };
505
+ export { ApiError, CameraPermissionDeniedError, Launch3DError, LaunchARError, PREVIEW_STATES, PluginError, QRError, SanitizationError, ValidationError, plugin, vision };
500
506
  export type { FaceMeasurement, FacePose, KeyFrameConfig, Plugin, PreviewState, SetupOptions, SkuData, VisionOptions, VisionPlugin };