@sunsteel/contracts 0.30.0 → 0.31.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.
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -549,6 +549,8 @@ declare const PROGRESS_TIMELINE_EVENT_TYPES: readonly ["PERSONAL_RECORD", "PROGR
|
|
|
549
549
|
type ProgressTimelineEventType = (typeof PROGRESS_TIMELINE_EVENT_TYPES)[number];
|
|
550
550
|
interface ProgressTimelineQuery {
|
|
551
551
|
type?: ProgressTimelineEventType;
|
|
552
|
+
/** Only events for one catalog exercise (EXER-01). */
|
|
553
|
+
exerciseId?: string;
|
|
552
554
|
cursor?: string;
|
|
553
555
|
limit?: number;
|
|
554
556
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -549,6 +549,8 @@ declare const PROGRESS_TIMELINE_EVENT_TYPES: readonly ["PERSONAL_RECORD", "PROGR
|
|
|
549
549
|
type ProgressTimelineEventType = (typeof PROGRESS_TIMELINE_EVENT_TYPES)[number];
|
|
550
550
|
interface ProgressTimelineQuery {
|
|
551
551
|
type?: ProgressTimelineEventType;
|
|
552
|
+
/** Only events for one catalog exercise (EXER-01). */
|
|
553
|
+
exerciseId?: string;
|
|
552
554
|
cursor?: string;
|
|
553
555
|
limit?: number;
|
|
554
556
|
}
|