@jaak.ai/stamps 2.2.0-dev.9 → 2.2.0

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.
@@ -22,7 +22,7 @@ export declare class JaakStamps {
22
22
  propagateTraceHeaderCorsUrls?: string;
23
23
  metricsExportIntervalMillis?: number;
24
24
  license?: string;
25
- licenseEnvironment?: 'dev' | 'qa' | 'staging' | 'prod';
25
+ licenseEnvironment?: 'dev' | 'qa' | 'sandbox' | 'prod';
26
26
  traceId?: string;
27
27
  appId?: string;
28
28
  captureCompleted: EventEmitter<any>;
@@ -112,6 +112,7 @@ export declare class JaakStamps {
112
112
  private readonly MAX_FAILURES;
113
113
  private lastInferenceTime;
114
114
  private readonly MIN_INFERENCE_INTERVAL;
115
+ private readonly MOBILE_MIN_INFERENCE_INTERVAL;
115
116
  private performanceHistory;
116
117
  private readonly PERFORMANCE_HISTORY_SIZE;
117
118
  private readonly PERFORMANCE_THRESHOLD_MS;
@@ -59,7 +59,7 @@ export namespace Components {
59
59
  /**
60
60
  * @default 'prod'
61
61
  */
62
- "licenseEnvironment"?: 'dev' | 'qa' | 'staging' | 'prod';
62
+ "licenseEnvironment"?: 'dev' | 'qa' | 'sandbox' | 'prod';
63
63
  /**
64
64
  * @default 90
65
65
  */
@@ -175,7 +175,7 @@ declare namespace LocalJSX {
175
175
  /**
176
176
  * @default 'prod'
177
177
  */
178
- "licenseEnvironment"?: 'dev' | 'qa' | 'staging' | 'prod';
178
+ "licenseEnvironment"?: 'dev' | 'qa' | 'sandbox' | 'prod';
179
179
  /**
180
180
  * @default 90
181
181
  */
@@ -2,7 +2,7 @@
2
2
  * License Validation Service
3
3
  * Handles license validation for the jaak-stamps webcomponent
4
4
  */
5
- export type Environment = 'dev' | 'qa' | 'staging' | 'prod';
5
+ export type Environment = 'dev' | 'qa' | 'sandbox' | 'prod';
6
6
  export interface LicenseValidationRequest {
7
7
  license: string;
8
8
  origin: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaak.ai/stamps",
3
- "version": "2.2.0-dev.9",
3
+ "version": "2.2.0",
4
4
  "description": "Jaak Document Identifier",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",