@plyaz/types 1.7.5 → 1.7.6

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.
@@ -594,7 +594,7 @@ export interface WithEnvironment {
594
594
  */
595
595
  export interface WithPlatform {
596
596
  /** Platform(s) this entity supports */
597
- platform: 'web' | 'ios' | 'android' | 'desktop';
597
+ platform: 'web' | 'mobile' | 'desktop' | 'ios' | 'android';
598
598
  }
599
599
  /**
600
600
  * Base interface for entities with API key.
@@ -623,7 +623,7 @@ export interface ScenarioResult<T> {
623
623
  * };
624
624
  * ```
625
625
  */
626
- export interface TrackedCallRecord<TArgs extends unknown[], TReturn, TTimestamp = Date> extends Omit<Tracked<TReturn | undefined>, 'timestamp'>, WithDuration, WithTimestamp<TTimestamp> {
626
+ export interface TrackedCallRecord<TArgs extends unknown[], TReturn, TTimestamp = Date> extends Omit<Tracked<TReturn | undefined>, 'timestamp'>, Partial<WithDuration>, WithTimestamp<TTimestamp> {
627
627
  /** Function arguments */
628
628
  args: TArgs;
629
629
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.7.5",
3
+ "version": "1.7.6",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",