@nativesquare/soma 0.12.0 → 0.13.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.
Files changed (60) hide show
  1. package/dist/client/garmin.d.ts +5 -1
  2. package/dist/client/garmin.d.ts.map +1 -1
  3. package/dist/client/garmin.js +148 -0
  4. package/dist/client/garmin.js.map +1 -1
  5. package/dist/client/index.d.ts +5 -6
  6. package/dist/client/index.d.ts.map +1 -1
  7. package/dist/client/index.js +5 -211
  8. package/dist/client/index.js.map +1 -1
  9. package/dist/client/strava.d.ts +11 -6
  10. package/dist/client/strava.d.ts.map +1 -1
  11. package/dist/client/strava.js +64 -0
  12. package/dist/client/strava.js.map +1 -1
  13. package/dist/client/types.d.ts +93 -20
  14. package/dist/client/types.d.ts.map +1 -1
  15. package/dist/component/_generated/component.d.ts +24 -5
  16. package/dist/component/_generated/component.d.ts.map +1 -1
  17. package/dist/component/garmin/private.d.ts +53 -68
  18. package/dist/component/garmin/private.d.ts.map +1 -1
  19. package/dist/component/garmin/private.js +87 -85
  20. package/dist/component/garmin/private.js.map +1 -1
  21. package/dist/component/garmin/public.d.ts +97 -43
  22. package/dist/component/garmin/public.d.ts.map +1 -1
  23. package/dist/component/garmin/public.js +75 -51
  24. package/dist/component/garmin/public.js.map +1 -1
  25. package/dist/component/garmin/webhooks.d.ts +22 -20
  26. package/dist/component/garmin/webhooks.d.ts.map +1 -1
  27. package/dist/component/garmin/webhooks.js +115 -76
  28. package/dist/component/garmin/webhooks.js.map +1 -1
  29. package/dist/component/public.d.ts +15 -15
  30. package/dist/component/schema.d.ts +25 -25
  31. package/dist/component/strava/public.d.ts +12 -8
  32. package/dist/component/strava/public.d.ts.map +1 -1
  33. package/dist/component/strava/public.js +7 -7
  34. package/dist/component/strava/public.js.map +1 -1
  35. package/dist/component/validators/activity.d.ts +4 -4
  36. package/dist/component/validators/body.d.ts +4 -4
  37. package/dist/component/validators/daily.d.ts +4 -4
  38. package/dist/component/validators/nutrition.d.ts +3 -3
  39. package/dist/component/validators/samples.d.ts +4 -4
  40. package/dist/component/validators/shared.d.ts +13 -4
  41. package/dist/component/validators/shared.d.ts.map +1 -1
  42. package/dist/component/validators/shared.js +7 -0
  43. package/dist/component/validators/shared.js.map +1 -1
  44. package/dist/component/validators/sleep.d.ts +5 -5
  45. package/dist/validators.d.ts +41 -40
  46. package/dist/validators.d.ts.map +1 -1
  47. package/dist/validators.js +1 -0
  48. package/dist/validators.js.map +1 -1
  49. package/package.json +1 -1
  50. package/src/client/garmin.ts +692 -487
  51. package/src/client/index.ts +10 -279
  52. package/src/client/strava.ts +199 -108
  53. package/src/client/types.ts +303 -215
  54. package/src/component/_generated/component.ts +19 -19
  55. package/src/component/garmin/private.ts +1872 -1870
  56. package/src/component/garmin/public.ts +104 -80
  57. package/src/component/garmin/webhooks.ts +122 -81
  58. package/src/component/strava/public.ts +393 -393
  59. package/src/component/validators/shared.ts +9 -0
  60. package/src/validators.ts +1 -0
@@ -59,7 +59,7 @@ export declare const deleteTokens: import("convex/server").RegisteredMutation<"i
59
59
  /**
60
60
  * Process a Garmin activity push payload.
61
61
  * Parses the full activity data, groups by user, resolves connections,
62
- * transforms, and ingests each activity.
62
+ * and transforms each activity. Does not write to the database.
63
63
  */
64
64
  export declare const processActivityPushPayload: import("convex/server").RegisteredAction<"internal", {
65
65
  payload: any;
@@ -72,7 +72,7 @@ export declare const processActivityPushPayload: import("convex/server").Registe
72
72
  errors: {
73
73
  type: string;
74
74
  id: string;
75
- error: string;
75
+ message: string;
76
76
  }[];
77
77
  }>>;
78
78
  /**
@@ -82,14 +82,14 @@ export declare const processActivityPushPayload: import("convex/server").Registe
82
82
  export declare const processActivityPingPayload: import("convex/server").RegisteredAction<"internal", {
83
83
  payload: any;
84
84
  }, Promise<{
85
- processed: number;
86
85
  errors: never[];
87
- affectedUsers: never[];
86
+ items: never[];
88
87
  }>>;
89
88
  /**
90
89
  * Process a Garmin activity details push payload.
91
90
  * Parses the full activity detail data (summary + samples + laps),
92
- * groups by user, resolves connections, transforms, and ingests each activity.
91
+ * groups by user, resolves connections, and transforms each activity.
92
+ * Does not write to the database.
93
93
  */
94
94
  export declare const processActivityDetailsPushPayload: import("convex/server").RegisteredAction<"internal", {
95
95
  payload: any;
@@ -102,7 +102,7 @@ export declare const processActivityDetailsPushPayload: import("convex/server").
102
102
  errors: {
103
103
  type: string;
104
104
  id: string;
105
- error: string;
105
+ message: string;
106
106
  }[];
107
107
  }>>;
108
108
  /**
@@ -112,14 +112,13 @@ export declare const processActivityDetailsPushPayload: import("convex/server").
112
112
  export declare const processActivityDetailsPingPayload: import("convex/server").RegisteredAction<"internal", {
113
113
  payload: any;
114
114
  }, Promise<{
115
- processed: number;
116
115
  errors: never[];
117
- affectedUsers: never[];
116
+ items: never[];
118
117
  }>>;
119
118
  /**
120
119
  * Process a Garmin manually updated activities push payload.
121
120
  * Parses the full activity data, groups by user, resolves connections,
122
- * transforms, and ingests each activity.
121
+ * and transforms each activity. Does not write to the database.
123
122
  */
124
123
  export declare const processManuallyUpdatedActivitiesPushPayload: import("convex/server").RegisteredAction<"internal", {
125
124
  payload: any;
@@ -132,7 +131,7 @@ export declare const processManuallyUpdatedActivitiesPushPayload: import("convex
132
131
  errors: {
133
132
  type: string;
134
133
  id: string;
135
- error: string;
134
+ message: string;
136
135
  }[];
137
136
  }>>;
138
137
  /**
@@ -142,14 +141,14 @@ export declare const processManuallyUpdatedActivitiesPushPayload: import("convex
142
141
  export declare const processManuallyUpdatedActivitiesPingPayload: import("convex/server").RegisteredAction<"internal", {
143
142
  payload: any;
144
143
  }, Promise<{
145
- processed: number;
146
144
  errors: never[];
147
- affectedUsers: never[];
145
+ items: never[];
148
146
  }>>;
149
147
  /**
150
148
  * Process a Garmin Move IQ push payload.
151
149
  * Parses the auto-detected activity events, groups by user, resolves
152
- * connections, transforms, and ingests each event as an activity.
150
+ * connections, and transforms each event as an activity.
151
+ * Does not write to the database.
153
152
  */
154
153
  export declare const processMoveIQPushPayload: import("convex/server").RegisteredAction<"internal", {
155
154
  payload: any;
@@ -162,7 +161,7 @@ export declare const processMoveIQPushPayload: import("convex/server").Registere
162
161
  errors: {
163
162
  type: string;
164
163
  id: string;
165
- error: string;
164
+ message: string;
166
165
  }[];
167
166
  }>>;
168
167
  /**
@@ -172,14 +171,13 @@ export declare const processMoveIQPushPayload: import("convex/server").Registere
172
171
  export declare const processMoveIQPingPayload: import("convex/server").RegisteredAction<"internal", {
173
172
  payload: any;
174
173
  }, Promise<{
175
- processed: number;
176
174
  errors: never[];
177
- affectedUsers: never[];
175
+ items: never[];
178
176
  }>>;
179
177
  /**
180
178
  * Process a Garmin blood pressure push payload.
181
179
  * Parses the full blood pressure data, groups by user, resolves connections,
182
- * transforms, and ingests each record into the body table.
180
+ * and transforms each record. Does not write to the database.
183
181
  */
184
182
  export declare const processBloodPressurePushPayload: import("convex/server").RegisteredAction<"internal", {
185
183
  payload: any;
@@ -192,7 +190,7 @@ export declare const processBloodPressurePushPayload: import("convex/server").Re
192
190
  errors: {
193
191
  type: string;
194
192
  id: string;
195
- error: string;
193
+ message: string;
196
194
  }[];
197
195
  }>>;
198
196
  /**
@@ -202,14 +200,13 @@ export declare const processBloodPressurePushPayload: import("convex/server").Re
202
200
  export declare const processBloodPressurePingPayload: import("convex/server").RegisteredAction<"internal", {
203
201
  payload: any;
204
202
  }, Promise<{
205
- processed: number;
206
203
  errors: never[];
207
- affectedUsers: never[];
204
+ items: never[];
208
205
  }>>;
209
206
  /**
210
207
  * Process a Garmin body compositions push payload.
211
208
  * Parses the full body composition data, groups by user, resolves connections,
212
- * transforms, and ingests each record into the body table.
209
+ * and transforms each record. Does not write to the database.
213
210
  */
214
211
  export declare const processBodyCompositionsPushPayload: import("convex/server").RegisteredAction<"internal", {
215
212
  payload: any;
@@ -222,7 +219,7 @@ export declare const processBodyCompositionsPushPayload: import("convex/server")
222
219
  errors: {
223
220
  type: string;
224
221
  id: string;
225
- error: string;
222
+ message: string;
226
223
  }[];
227
224
  }>>;
228
225
  /**
@@ -232,14 +229,13 @@ export declare const processBodyCompositionsPushPayload: import("convex/server")
232
229
  export declare const processBodyCompositionsPingPayload: import("convex/server").RegisteredAction<"internal", {
233
230
  payload: any;
234
231
  }, Promise<{
235
- processed: number;
236
232
  errors: never[];
237
- affectedUsers: never[];
233
+ items: never[];
238
234
  }>>;
239
235
  /**
240
236
  * Process a Garmin dailies push payload.
241
237
  * Parses the full daily summary data, groups by user, resolves connections,
242
- * transforms, and ingests each record into the daily table.
238
+ * and transforms each record. Does not write to the database.
243
239
  */
244
240
  export declare const processDailiesPushPayload: import("convex/server").RegisteredAction<"internal", {
245
241
  payload: any;
@@ -252,7 +248,7 @@ export declare const processDailiesPushPayload: import("convex/server").Register
252
248
  errors: {
253
249
  type: string;
254
250
  id: string;
255
- error: string;
251
+ message: string;
256
252
  }[];
257
253
  }>>;
258
254
  /**
@@ -262,14 +258,13 @@ export declare const processDailiesPushPayload: import("convex/server").Register
262
258
  export declare const processDailiesPingPayload: import("convex/server").RegisteredAction<"internal", {
263
259
  payload: any;
264
260
  }, Promise<{
265
- processed: number;
266
261
  errors: never[];
267
- affectedUsers: never[];
262
+ items: never[];
268
263
  }>>;
269
264
  /**
270
265
  * Process a Garmin health snapshot push payload.
271
266
  * Parses the full health snapshot data, groups by user, resolves connections,
272
- * transforms, and ingests each record into the daily table.
267
+ * and transforms each record. Does not write to the database.
273
268
  */
274
269
  export declare const processHealthSnapshotPushPayload: import("convex/server").RegisteredAction<"internal", {
275
270
  payload: any;
@@ -282,7 +277,7 @@ export declare const processHealthSnapshotPushPayload: import("convex/server").R
282
277
  errors: {
283
278
  type: string;
284
279
  id: string;
285
- error: string;
280
+ message: string;
286
281
  }[];
287
282
  }>>;
288
283
  /**
@@ -292,14 +287,13 @@ export declare const processHealthSnapshotPushPayload: import("convex/server").R
292
287
  export declare const processHealthSnapshotPingPayload: import("convex/server").RegisteredAction<"internal", {
293
288
  payload: any;
294
289
  }, Promise<{
295
- processed: number;
296
290
  errors: never[];
297
- affectedUsers: never[];
291
+ items: never[];
298
292
  }>>;
299
293
  /**
300
294
  * Process a Garmin HRV summary push payload.
301
295
  * Parses the full HRV summary data, groups by user, resolves connections,
302
- * transforms, and ingests each record into the daily table.
296
+ * and transforms each record. Does not write to the database.
303
297
  */
304
298
  export declare const processHRVSummaryPushPayload: import("convex/server").RegisteredAction<"internal", {
305
299
  payload: any;
@@ -312,7 +306,7 @@ export declare const processHRVSummaryPushPayload: import("convex/server").Regis
312
306
  errors: {
313
307
  type: string;
314
308
  id: string;
315
- error: string;
309
+ message: string;
316
310
  }[];
317
311
  }>>;
318
312
  /**
@@ -322,14 +316,13 @@ export declare const processHRVSummaryPushPayload: import("convex/server").Regis
322
316
  export declare const processHRVSummaryPingPayload: import("convex/server").RegisteredAction<"internal", {
323
317
  payload: any;
324
318
  }, Promise<{
325
- processed: number;
326
319
  errors: never[];
327
- affectedUsers: never[];
320
+ items: never[];
328
321
  }>>;
329
322
  /**
330
323
  * Process a Garmin epoch push payload.
331
324
  * Parses the full epoch summary data (15-min wellness slices), groups by user,
332
- * resolves connections, transforms, and ingests each record into the daily table.
325
+ * resolves connections, and transforms each record. Does not write to the database.
333
326
  */
334
327
  export declare const processEpochPushPayload: import("convex/server").RegisteredAction<"internal", {
335
328
  payload: any;
@@ -342,7 +335,7 @@ export declare const processEpochPushPayload: import("convex/server").Registered
342
335
  errors: {
343
336
  type: string;
344
337
  id: string;
345
- error: string;
338
+ message: string;
346
339
  }[];
347
340
  }>>;
348
341
  /**
@@ -352,14 +345,13 @@ export declare const processEpochPushPayload: import("convex/server").Registered
352
345
  export declare const processEpochPingPayload: import("convex/server").RegisteredAction<"internal", {
353
346
  payload: any;
354
347
  }, Promise<{
355
- processed: number;
356
348
  errors: never[];
357
- affectedUsers: never[];
349
+ items: never[];
358
350
  }>>;
359
351
  /**
360
352
  * Process a Garmin Pulse Ox push payload.
361
353
  * Parses the full SpO2 data, groups by user, resolves connections,
362
- * transforms, and ingests each record into the daily table.
354
+ * and transforms each record. Does not write to the database.
363
355
  */
364
356
  export declare const processPulseOxPushPayload: import("convex/server").RegisteredAction<"internal", {
365
357
  payload: any;
@@ -372,7 +364,7 @@ export declare const processPulseOxPushPayload: import("convex/server").Register
372
364
  errors: {
373
365
  type: string;
374
366
  id: string;
375
- error: string;
367
+ message: string;
376
368
  }[];
377
369
  }>>;
378
370
  /**
@@ -382,14 +374,13 @@ export declare const processPulseOxPushPayload: import("convex/server").Register
382
374
  export declare const processPulseOxPingPayload: import("convex/server").RegisteredAction<"internal", {
383
375
  payload: any;
384
376
  }, Promise<{
385
- processed: number;
386
377
  errors: never[];
387
- affectedUsers: never[];
378
+ items: never[];
388
379
  }>>;
389
380
  /**
390
381
  * Process a Garmin Respiration push payload.
391
382
  * Parses the full breathing rate data, groups by user, resolves connections,
392
- * transforms, and ingests each record into the daily table.
383
+ * and transforms each record. Does not write to the database.
393
384
  */
394
385
  export declare const processRespirationPushPayload: import("convex/server").RegisteredAction<"internal", {
395
386
  payload: any;
@@ -402,7 +393,7 @@ export declare const processRespirationPushPayload: import("convex/server").Regi
402
393
  errors: {
403
394
  type: string;
404
395
  id: string;
405
- error: string;
396
+ message: string;
406
397
  }[];
407
398
  }>>;
408
399
  /**
@@ -412,14 +403,13 @@ export declare const processRespirationPushPayload: import("convex/server").Regi
412
403
  export declare const processRespirationPingPayload: import("convex/server").RegisteredAction<"internal", {
413
404
  payload: any;
414
405
  }, Promise<{
415
- processed: number;
416
406
  errors: never[];
417
- affectedUsers: never[];
407
+ items: never[];
418
408
  }>>;
419
409
  /**
420
410
  * Process a Garmin stress details push payload.
421
411
  * Parses the full stress data, groups by user, resolves connections,
422
- * transforms, and ingests each record into the daily table.
412
+ * and transforms each record. Does not write to the database.
423
413
  */
424
414
  export declare const processStressPushPayload: import("convex/server").RegisteredAction<"internal", {
425
415
  payload: any;
@@ -432,7 +422,7 @@ export declare const processStressPushPayload: import("convex/server").Registere
432
422
  errors: {
433
423
  type: string;
434
424
  id: string;
435
- error: string;
425
+ message: string;
436
426
  }[];
437
427
  }>>;
438
428
  /**
@@ -442,14 +432,13 @@ export declare const processStressPushPayload: import("convex/server").Registere
442
432
  export declare const processStressPingPayload: import("convex/server").RegisteredAction<"internal", {
443
433
  payload: any;
444
434
  }, Promise<{
445
- processed: number;
446
435
  errors: never[];
447
- affectedUsers: never[];
436
+ items: never[];
448
437
  }>>;
449
438
  /**
450
439
  * Process a Garmin skin temperature push payload.
451
440
  * Parses the full skin temperature data, groups by user, resolves connections,
452
- * transforms, and ingests each record into the body table.
441
+ * and transforms each record. Does not write to the database.
453
442
  */
454
443
  export declare const processSkinTemperaturePushPayload: import("convex/server").RegisteredAction<"internal", {
455
444
  payload: any;
@@ -462,7 +451,7 @@ export declare const processSkinTemperaturePushPayload: import("convex/server").
462
451
  errors: {
463
452
  type: string;
464
453
  id: string;
465
- error: string;
454
+ message: string;
466
455
  }[];
467
456
  }>>;
468
457
  /**
@@ -472,14 +461,13 @@ export declare const processSkinTemperaturePushPayload: import("convex/server").
472
461
  export declare const processSkinTemperaturePingPayload: import("convex/server").RegisteredAction<"internal", {
473
462
  payload: any;
474
463
  }, Promise<{
475
- processed: number;
476
464
  errors: never[];
477
- affectedUsers: never[];
465
+ items: never[];
478
466
  }>>;
479
467
  /**
480
468
  * Process a Garmin sleep summary push payload.
481
469
  * Parses the full sleep data, groups by user, resolves connections,
482
- * transforms, and ingests each sleep record.
470
+ * and transforms each sleep record. Does not write to the database.
483
471
  */
484
472
  export declare const processSleepsPushPayload: import("convex/server").RegisteredAction<"internal", {
485
473
  payload: any;
@@ -492,7 +480,7 @@ export declare const processSleepsPushPayload: import("convex/server").Registere
492
480
  errors: {
493
481
  type: string;
494
482
  id: string;
495
- error: string;
483
+ message: string;
496
484
  }[];
497
485
  }>>;
498
486
  /**
@@ -502,14 +490,13 @@ export declare const processSleepsPushPayload: import("convex/server").Registere
502
490
  export declare const processSleepsPingPayload: import("convex/server").RegisteredAction<"internal", {
503
491
  payload: any;
504
492
  }, Promise<{
505
- processed: number;
506
493
  errors: never[];
507
- affectedUsers: never[];
494
+ items: never[];
508
495
  }>>;
509
496
  /**
510
497
  * Process a Garmin user metrics push payload.
511
498
  * Parses the full user metrics data, groups by user, resolves connections,
512
- * transforms, and ingests each user metrics record.
499
+ * and transforms each user metrics record. Does not write to the database.
513
500
  */
514
501
  export declare const processUserMetricsPushPayload: import("convex/server").RegisteredAction<"internal", {
515
502
  payload: any;
@@ -522,7 +509,7 @@ export declare const processUserMetricsPushPayload: import("convex/server").Regi
522
509
  errors: {
523
510
  type: string;
524
511
  id: string;
525
- error: string;
512
+ message: string;
526
513
  }[];
527
514
  }>>;
528
515
  /**
@@ -532,14 +519,13 @@ export declare const processUserMetricsPushPayload: import("convex/server").Regi
532
519
  export declare const processUserMetricsPingPayload: import("convex/server").RegisteredAction<"internal", {
533
520
  payload: any;
534
521
  }, Promise<{
535
- processed: number;
536
522
  errors: never[];
537
- affectedUsers: never[];
523
+ items: never[];
538
524
  }>>;
539
525
  /**
540
526
  * Process a Garmin MCT (Women's Health API) push payload.
541
527
  * Parses full MCT summary data, groups by user, resolves connections,
542
- * transforms, and ingests each record into the menstruation table.
528
+ * and transforms each record. Does not write to the database.
543
529
  */
544
530
  export declare const processMenstrualCycleTrackingPushPayload: import("convex/server").RegisteredAction<"internal", {
545
531
  payload: any;
@@ -552,7 +538,7 @@ export declare const processMenstrualCycleTrackingPushPayload: import("convex/se
552
538
  errors: {
553
539
  type: string;
554
540
  id: string;
555
- error: string;
541
+ message: string;
556
542
  }[];
557
543
  }>>;
558
544
  /**
@@ -562,8 +548,7 @@ export declare const processMenstrualCycleTrackingPushPayload: import("convex/se
562
548
  export declare const processMenstrualCycleTrackingPingPayload: import("convex/server").RegisteredAction<"internal", {
563
549
  payload: any;
564
550
  }, Promise<{
565
- processed: number;
566
551
  errors: never[];
567
- affectedUsers: never[];
552
+ items: never[];
568
553
  }>>;
569
554
  //# sourceMappingURL=private.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"private.d.ts","sourceRoot":"","sources":["../../../src/component/garmin/private.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"private.d.ts","sourceRoot":"","sources":["../../../src/component/garmin/private.ts"],"names":[],"mappings":"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"}