@await-widget/runtime 0.0.16 → 0.0.18

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/model.d.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@await-widget/runtime",
3
- "version": "0.0.16",
3
+ "version": "0.0.18",
4
4
  "description": "TypeScript declarations for Await widgets.",
5
5
  "license": "MIT",
6
6
  "author": "LitoMore",
package/types/model.d.ts CHANGED
@@ -11,6 +11,7 @@ type WidgetFamily =
11
11
  | 'medium'
12
12
  | 'large'
13
13
  | 'extraLarge'
14
+ | 'fullscreen'
14
15
  | 'accessoryInline'
15
16
  | 'accessoryCircular'
16
17
  | 'accessoryRectangular'
@@ -173,6 +174,8 @@ type AwaitHealthRangeInfo = {
173
174
  heartRate?: AwaitHealthQuantitySample[];
174
175
  restingHeartRate?: AwaitHealthQuantitySample[];
175
176
  oxygenSaturation?: AwaitHealthQuantitySample[];
177
+ respiratoryRate?: AwaitHealthQuantitySample[];
178
+ appleSleepingWristTemperature?: AwaitHealthQuantitySample[];
176
179
  sleepAnalysis?: AwaitHealthSleepAnalysisSample[];
177
180
  };
178
181