@sunsteel/contracts 0.24.0 → 0.25.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.cjs +23 -0
- package/dist/index.d.cts +49 -1
- package/dist/index.d.ts +49 -1
- package/dist/index.js +20 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -38,6 +38,9 @@ __export(index_exports, {
|
|
|
38
38
|
RELATIONSHIP_LIST_MAX_LIMIT: () => RELATIONSHIP_LIST_MAX_LIMIT,
|
|
39
39
|
REP_TYPES: () => REP_TYPES,
|
|
40
40
|
RESERVED_USERNAMES: () => RESERVED_USERNAMES,
|
|
41
|
+
SESSION_SHARE_DEFAULT_FIELDS: () => SESSION_SHARE_DEFAULT_FIELDS,
|
|
42
|
+
SESSION_SHARE_FIELDS: () => SESSION_SHARE_FIELDS,
|
|
43
|
+
SESSION_SHARE_MAX_ACTIVE_LINKS: () => SESSION_SHARE_MAX_ACTIVE_LINKS,
|
|
41
44
|
SEXES: () => SEXES,
|
|
42
45
|
TRAINING_DISCIPLINE_VALUES: () => TRAINING_DISCIPLINE_VALUES,
|
|
43
46
|
TRAINING_EVENT_TYPES: () => TRAINING_EVENT_TYPES,
|
|
@@ -175,6 +178,23 @@ var FOLLOW_SUGGESTION_REASONS = [
|
|
|
175
178
|
"FOLLOWED_BY_PEOPLE_YOU_FOLLOW"
|
|
176
179
|
];
|
|
177
180
|
|
|
181
|
+
// src/workout.ts
|
|
182
|
+
var SESSION_SHARE_FIELDS = [
|
|
183
|
+
"duration",
|
|
184
|
+
"volume",
|
|
185
|
+
"completedSets",
|
|
186
|
+
"records",
|
|
187
|
+
"progression",
|
|
188
|
+
"notes"
|
|
189
|
+
];
|
|
190
|
+
var SESSION_SHARE_DEFAULT_FIELDS = [
|
|
191
|
+
"duration",
|
|
192
|
+
"volume",
|
|
193
|
+
"completedSets",
|
|
194
|
+
"records"
|
|
195
|
+
];
|
|
196
|
+
var SESSION_SHARE_MAX_ACTIVE_LINKS = 10;
|
|
197
|
+
|
|
178
198
|
// src/analytics.ts
|
|
179
199
|
var TRAINING_EVENT_TYPES = [
|
|
180
200
|
"SESSION_COMPLETED",
|
|
@@ -205,6 +225,9 @@ var PROGRESS_TIMELINE_EVENT_TYPES = [
|
|
|
205
225
|
RELATIONSHIP_LIST_MAX_LIMIT,
|
|
206
226
|
REP_TYPES,
|
|
207
227
|
RESERVED_USERNAMES,
|
|
228
|
+
SESSION_SHARE_DEFAULT_FIELDS,
|
|
229
|
+
SESSION_SHARE_FIELDS,
|
|
230
|
+
SESSION_SHARE_MAX_ACTIVE_LINKS,
|
|
208
231
|
SEXES,
|
|
209
232
|
TRAINING_DISCIPLINE_VALUES,
|
|
210
233
|
TRAINING_EVENT_TYPES,
|
package/dist/index.d.cts
CHANGED
|
@@ -201,6 +201,54 @@ interface WorkoutSessionRecap {
|
|
|
201
201
|
progressionChanges: ProgressionChange[];
|
|
202
202
|
previousSession: PreviousSessionRecap | null;
|
|
203
203
|
}
|
|
204
|
+
/** Parts of a completed session's recap the owner may choose to share. */
|
|
205
|
+
declare const SESSION_SHARE_FIELDS: readonly ["duration", "volume", "completedSets", "records", "progression", "notes"];
|
|
206
|
+
type SessionShareField = (typeof SESSION_SHARE_FIELDS)[number];
|
|
207
|
+
/** Pre-selected when creating a link; notes and prescriptions are opt-in. */
|
|
208
|
+
declare const SESSION_SHARE_DEFAULT_FIELDS: SessionShareField[];
|
|
209
|
+
declare const SESSION_SHARE_MAX_ACTIVE_LINKS = 10;
|
|
210
|
+
interface CreateSessionShareRequest {
|
|
211
|
+
fields: SessionShareField[];
|
|
212
|
+
}
|
|
213
|
+
/** An active share link, visible only to the session owner. */
|
|
214
|
+
interface SessionShare {
|
|
215
|
+
id: string;
|
|
216
|
+
sessionId: string;
|
|
217
|
+
/** Unguessable identifier used in the public `/shared/sessions/:token` URL. */
|
|
218
|
+
token: string;
|
|
219
|
+
fields: SessionShareField[];
|
|
220
|
+
createdAt: IsoDateString;
|
|
221
|
+
}
|
|
222
|
+
/** Stable successful response of GET /workouts/sessions/:id/shares. */
|
|
223
|
+
interface SessionShareListResponse {
|
|
224
|
+
items: SessionShare[];
|
|
225
|
+
}
|
|
226
|
+
interface SharedSessionOwner {
|
|
227
|
+
username: string;
|
|
228
|
+
name: string;
|
|
229
|
+
lastName?: string | null;
|
|
230
|
+
avatarUrl?: string | null;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Stable successful response of the unauthenticated
|
|
234
|
+
* GET /shared/sessions/:token. Only the fields named in `fields` are present;
|
|
235
|
+
* everything else is omitted rather than nulled. Weights are canonical kg and
|
|
236
|
+
* `weightUnit` is the owner's display preference.
|
|
237
|
+
*/
|
|
238
|
+
interface SharedSessionRecap {
|
|
239
|
+
fields: SessionShareField[];
|
|
240
|
+
owner: SharedSessionOwner;
|
|
241
|
+
weightUnit: WeightUnit;
|
|
242
|
+
routineName: string;
|
|
243
|
+
dayName?: string | null;
|
|
244
|
+
endedAt: IsoDateString;
|
|
245
|
+
durationSec?: number;
|
|
246
|
+
totalVolumeKg?: number;
|
|
247
|
+
completedSets?: number;
|
|
248
|
+
records?: SessionRecapRecord[];
|
|
249
|
+
progressionChanges?: ProgressionChange[];
|
|
250
|
+
notes?: string | null;
|
|
251
|
+
}
|
|
204
252
|
interface WorkoutSessionSummary {
|
|
205
253
|
id: string;
|
|
206
254
|
status: WorkoutSessionStatus;
|
|
@@ -825,4 +873,4 @@ interface CreateRoutineRequest {
|
|
|
825
873
|
}
|
|
826
874
|
type UpdateRoutineRequest = Partial<CreateRoutineRequest>;
|
|
827
875
|
|
|
828
|
-
export { type Brand, type CreateRoutineDayInput, type CreateRoutineExerciseInput, type CreateRoutineRequest, type EarnedPersonalRecord, type Exercise, type ExerciseId, type ExercisePerformanceHistoryQuery, type ExercisePerformanceHistoryResponse, type ExercisePerformancePrescription, type ExercisePerformancePrescriptionSet, type ExercisePerformanceSession, type ExercisePerformanceSet, type ExercisePerformanceSummary, type ExerciseStrengthSummary, type ExerciseStrengthTrendPoint, type ExerciseStrengthTrendQuery, type ExerciseStrengthTrendResponse, FOLLOW_SUGGESTIONS_DEFAULT_LIMIT, FOLLOW_SUGGESTIONS_MAX_LIMIT, FOLLOW_SUGGESTION_REASONS, type FinishStatus, type FinishWorkoutRequest, type FinishWorkoutResponse, type FollowSuggestion, type FollowSuggestionReason, type FollowSuggestionsResponse, type IsoDateString, type ListSessionsParams, MUSCLE_GROUPS, type MuscleGroup, type MuscleGroupHeatmapQuery, type MuscleGroupHeatmapResponse, type MuscleGroupHeatmapValue, type MuscleGroupHeatmapWeek, type MuscleVolumeTrendSeries, PREFERRED_TRAINING_STYLE_VALUES, PROFILE_BIO_MAX_LENGTH, PROFILE_FAVORITE_EXERCISES_MAX, PROFILE_LOCATION_MAX_LENGTH, PROFILE_TRAINING_DISCIPLINES_MAX, PROFILE_TRAINING_GOALS_MAX, PROFILE_VISIBILITY_VALUES, PROGRESSION_SCHEMES, PROGRESS_TIMELINE_EVENT_TYPES, type PaginatedResponse, type PersonalRecordEntry, type PersonalRecordKind, type PlatePairInventory, type PreferredTrainingStyle, type PreviousPerformanceResponse, type PreviousSessionRecap, type PreviousSetPerformance, type ProfileDiscoverySettings, type ProfileFavoriteExercise, type ProfilePrivacySettings, type ProfileViewerAccess, type ProfileVisibility, type ProgressTimelineEventType, type ProgressTimelineItem, type ProgressTimelinePersonalRecordItem, type ProgressTimelineProgressionItem, type ProgressTimelineQuery, type ProgressTimelineRecordPerformance, type ProgressTimelineRecordReason, type ProgressTimelineResponse, type ProgressTimelineSessionContext, type ProgressionChange, type ProgressionRule, type ProgressionScheme, type ProgressionSetChange, type PublicBodyMetrics, type PublicTrainingSummary, type PublicUserProfile, RELATIONSHIP_LIST_DEFAULT_LIMIT, RELATIONSHIP_LIST_KINDS, RELATIONSHIP_LIST_MAX_LIMIT, REP_TYPES, RESERVED_USERNAMES, type RecentActivityEntry, type RelationshipListKind, type RelationshipListQuery, type RelationshipListResponse, type RelationshipMember, type RepType, type ReplaceTrainingLocationsRequest, type Routine, type RoutineDay, type RoutineDayId, type RoutineExercise, type RoutineId, type RoutineSet, SEXES, type SessionComparisonExercise, type SessionComparisonQuery, type SessionComparisonResponse, type SessionComparisonRoutineDay, type SessionComparisonSession, type SessionComparisonSet, type SessionRecapRecord, type SetAccountTimeZoneRequest, type SetLog, type Sex, type StartWorkoutRequest, type StartWorkoutResponse, type SupabaseAuthResponse, type SupabaseAuthUser, type SupabaseMigrationResponse, TRAINING_DISCIPLINE_VALUES, TRAINING_EVENT_TYPES, TRAINING_EXPERIENCE_LEVEL_VALUES, TRAINING_GOAL_VALUES, type TrainingDiscipline, type TrainingEventType, type TrainingExperienceLevel, type TrainingGoal, type TrainingIdentity, type TrainingLocationPreference, type TrainingLocationPreferenceInput, USERNAME_MAX_LENGTH, USERNAME_MIN_LENGTH, USERNAME_PATTERN_SOURCE, type UpdateProfileDiscoveryRequest, type UpdateProfilePrivacyRequest, type UpdateProfileRequest, type UpdateRoutineRequest, type UpsertSetLogRequest, type UpsertSetLogResponse, type UserId, type UserProfile, type UserSearchResponse, type VolumeTrendPoint, type VolumeTrendQuery, type VolumeTrendResponse, type VolumeTrendSeries, WEIGHT_UNITS, WORKOUT_SESSION_STATUSES, type WeightUnit, type WorkoutAnalyticsStatus, type WorkoutProgressQuery, type WorkoutProgressResponse, type WorkoutSession, type WorkoutSessionId, type WorkoutSessionListResponse, type WorkoutSessionRecap, type WorkoutSessionSnapshotV1, type WorkoutSessionStatus, type WorkoutSessionSummary, type WorkoutStatsQuery, type WorkoutStatsResponse };
|
|
876
|
+
export { type Brand, type CreateRoutineDayInput, type CreateRoutineExerciseInput, type CreateRoutineRequest, type CreateSessionShareRequest, type EarnedPersonalRecord, type Exercise, type ExerciseId, type ExercisePerformanceHistoryQuery, type ExercisePerformanceHistoryResponse, type ExercisePerformancePrescription, type ExercisePerformancePrescriptionSet, type ExercisePerformanceSession, type ExercisePerformanceSet, type ExercisePerformanceSummary, type ExerciseStrengthSummary, type ExerciseStrengthTrendPoint, type ExerciseStrengthTrendQuery, type ExerciseStrengthTrendResponse, FOLLOW_SUGGESTIONS_DEFAULT_LIMIT, FOLLOW_SUGGESTIONS_MAX_LIMIT, FOLLOW_SUGGESTION_REASONS, type FinishStatus, type FinishWorkoutRequest, type FinishWorkoutResponse, type FollowSuggestion, type FollowSuggestionReason, type FollowSuggestionsResponse, type IsoDateString, type ListSessionsParams, MUSCLE_GROUPS, type MuscleGroup, type MuscleGroupHeatmapQuery, type MuscleGroupHeatmapResponse, type MuscleGroupHeatmapValue, type MuscleGroupHeatmapWeek, type MuscleVolumeTrendSeries, PREFERRED_TRAINING_STYLE_VALUES, PROFILE_BIO_MAX_LENGTH, PROFILE_FAVORITE_EXERCISES_MAX, PROFILE_LOCATION_MAX_LENGTH, PROFILE_TRAINING_DISCIPLINES_MAX, PROFILE_TRAINING_GOALS_MAX, PROFILE_VISIBILITY_VALUES, PROGRESSION_SCHEMES, PROGRESS_TIMELINE_EVENT_TYPES, type PaginatedResponse, type PersonalRecordEntry, type PersonalRecordKind, type PlatePairInventory, type PreferredTrainingStyle, type PreviousPerformanceResponse, type PreviousSessionRecap, type PreviousSetPerformance, type ProfileDiscoverySettings, type ProfileFavoriteExercise, type ProfilePrivacySettings, type ProfileViewerAccess, type ProfileVisibility, type ProgressTimelineEventType, type ProgressTimelineItem, type ProgressTimelinePersonalRecordItem, type ProgressTimelineProgressionItem, type ProgressTimelineQuery, type ProgressTimelineRecordPerformance, type ProgressTimelineRecordReason, type ProgressTimelineResponse, type ProgressTimelineSessionContext, type ProgressionChange, type ProgressionRule, type ProgressionScheme, type ProgressionSetChange, type PublicBodyMetrics, type PublicTrainingSummary, type PublicUserProfile, RELATIONSHIP_LIST_DEFAULT_LIMIT, RELATIONSHIP_LIST_KINDS, RELATIONSHIP_LIST_MAX_LIMIT, REP_TYPES, RESERVED_USERNAMES, type RecentActivityEntry, type RelationshipListKind, type RelationshipListQuery, type RelationshipListResponse, type RelationshipMember, type RepType, type ReplaceTrainingLocationsRequest, type Routine, type RoutineDay, type RoutineDayId, type RoutineExercise, type RoutineId, type RoutineSet, SESSION_SHARE_DEFAULT_FIELDS, SESSION_SHARE_FIELDS, SESSION_SHARE_MAX_ACTIVE_LINKS, SEXES, type SessionComparisonExercise, type SessionComparisonQuery, type SessionComparisonResponse, type SessionComparisonRoutineDay, type SessionComparisonSession, type SessionComparisonSet, type SessionRecapRecord, type SessionShare, type SessionShareField, type SessionShareListResponse, type SetAccountTimeZoneRequest, type SetLog, type Sex, type SharedSessionOwner, type SharedSessionRecap, type StartWorkoutRequest, type StartWorkoutResponse, type SupabaseAuthResponse, type SupabaseAuthUser, type SupabaseMigrationResponse, TRAINING_DISCIPLINE_VALUES, TRAINING_EVENT_TYPES, TRAINING_EXPERIENCE_LEVEL_VALUES, TRAINING_GOAL_VALUES, type TrainingDiscipline, type TrainingEventType, type TrainingExperienceLevel, type TrainingGoal, type TrainingIdentity, type TrainingLocationPreference, type TrainingLocationPreferenceInput, USERNAME_MAX_LENGTH, USERNAME_MIN_LENGTH, USERNAME_PATTERN_SOURCE, type UpdateProfileDiscoveryRequest, type UpdateProfilePrivacyRequest, type UpdateProfileRequest, type UpdateRoutineRequest, type UpsertSetLogRequest, type UpsertSetLogResponse, type UserId, type UserProfile, type UserSearchResponse, type VolumeTrendPoint, type VolumeTrendQuery, type VolumeTrendResponse, type VolumeTrendSeries, WEIGHT_UNITS, WORKOUT_SESSION_STATUSES, type WeightUnit, type WorkoutAnalyticsStatus, type WorkoutProgressQuery, type WorkoutProgressResponse, type WorkoutSession, type WorkoutSessionId, type WorkoutSessionListResponse, type WorkoutSessionRecap, type WorkoutSessionSnapshotV1, type WorkoutSessionStatus, type WorkoutSessionSummary, type WorkoutStatsQuery, type WorkoutStatsResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -201,6 +201,54 @@ interface WorkoutSessionRecap {
|
|
|
201
201
|
progressionChanges: ProgressionChange[];
|
|
202
202
|
previousSession: PreviousSessionRecap | null;
|
|
203
203
|
}
|
|
204
|
+
/** Parts of a completed session's recap the owner may choose to share. */
|
|
205
|
+
declare const SESSION_SHARE_FIELDS: readonly ["duration", "volume", "completedSets", "records", "progression", "notes"];
|
|
206
|
+
type SessionShareField = (typeof SESSION_SHARE_FIELDS)[number];
|
|
207
|
+
/** Pre-selected when creating a link; notes and prescriptions are opt-in. */
|
|
208
|
+
declare const SESSION_SHARE_DEFAULT_FIELDS: SessionShareField[];
|
|
209
|
+
declare const SESSION_SHARE_MAX_ACTIVE_LINKS = 10;
|
|
210
|
+
interface CreateSessionShareRequest {
|
|
211
|
+
fields: SessionShareField[];
|
|
212
|
+
}
|
|
213
|
+
/** An active share link, visible only to the session owner. */
|
|
214
|
+
interface SessionShare {
|
|
215
|
+
id: string;
|
|
216
|
+
sessionId: string;
|
|
217
|
+
/** Unguessable identifier used in the public `/shared/sessions/:token` URL. */
|
|
218
|
+
token: string;
|
|
219
|
+
fields: SessionShareField[];
|
|
220
|
+
createdAt: IsoDateString;
|
|
221
|
+
}
|
|
222
|
+
/** Stable successful response of GET /workouts/sessions/:id/shares. */
|
|
223
|
+
interface SessionShareListResponse {
|
|
224
|
+
items: SessionShare[];
|
|
225
|
+
}
|
|
226
|
+
interface SharedSessionOwner {
|
|
227
|
+
username: string;
|
|
228
|
+
name: string;
|
|
229
|
+
lastName?: string | null;
|
|
230
|
+
avatarUrl?: string | null;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Stable successful response of the unauthenticated
|
|
234
|
+
* GET /shared/sessions/:token. Only the fields named in `fields` are present;
|
|
235
|
+
* everything else is omitted rather than nulled. Weights are canonical kg and
|
|
236
|
+
* `weightUnit` is the owner's display preference.
|
|
237
|
+
*/
|
|
238
|
+
interface SharedSessionRecap {
|
|
239
|
+
fields: SessionShareField[];
|
|
240
|
+
owner: SharedSessionOwner;
|
|
241
|
+
weightUnit: WeightUnit;
|
|
242
|
+
routineName: string;
|
|
243
|
+
dayName?: string | null;
|
|
244
|
+
endedAt: IsoDateString;
|
|
245
|
+
durationSec?: number;
|
|
246
|
+
totalVolumeKg?: number;
|
|
247
|
+
completedSets?: number;
|
|
248
|
+
records?: SessionRecapRecord[];
|
|
249
|
+
progressionChanges?: ProgressionChange[];
|
|
250
|
+
notes?: string | null;
|
|
251
|
+
}
|
|
204
252
|
interface WorkoutSessionSummary {
|
|
205
253
|
id: string;
|
|
206
254
|
status: WorkoutSessionStatus;
|
|
@@ -825,4 +873,4 @@ interface CreateRoutineRequest {
|
|
|
825
873
|
}
|
|
826
874
|
type UpdateRoutineRequest = Partial<CreateRoutineRequest>;
|
|
827
875
|
|
|
828
|
-
export { type Brand, type CreateRoutineDayInput, type CreateRoutineExerciseInput, type CreateRoutineRequest, type EarnedPersonalRecord, type Exercise, type ExerciseId, type ExercisePerformanceHistoryQuery, type ExercisePerformanceHistoryResponse, type ExercisePerformancePrescription, type ExercisePerformancePrescriptionSet, type ExercisePerformanceSession, type ExercisePerformanceSet, type ExercisePerformanceSummary, type ExerciseStrengthSummary, type ExerciseStrengthTrendPoint, type ExerciseStrengthTrendQuery, type ExerciseStrengthTrendResponse, FOLLOW_SUGGESTIONS_DEFAULT_LIMIT, FOLLOW_SUGGESTIONS_MAX_LIMIT, FOLLOW_SUGGESTION_REASONS, type FinishStatus, type FinishWorkoutRequest, type FinishWorkoutResponse, type FollowSuggestion, type FollowSuggestionReason, type FollowSuggestionsResponse, type IsoDateString, type ListSessionsParams, MUSCLE_GROUPS, type MuscleGroup, type MuscleGroupHeatmapQuery, type MuscleGroupHeatmapResponse, type MuscleGroupHeatmapValue, type MuscleGroupHeatmapWeek, type MuscleVolumeTrendSeries, PREFERRED_TRAINING_STYLE_VALUES, PROFILE_BIO_MAX_LENGTH, PROFILE_FAVORITE_EXERCISES_MAX, PROFILE_LOCATION_MAX_LENGTH, PROFILE_TRAINING_DISCIPLINES_MAX, PROFILE_TRAINING_GOALS_MAX, PROFILE_VISIBILITY_VALUES, PROGRESSION_SCHEMES, PROGRESS_TIMELINE_EVENT_TYPES, type PaginatedResponse, type PersonalRecordEntry, type PersonalRecordKind, type PlatePairInventory, type PreferredTrainingStyle, type PreviousPerformanceResponse, type PreviousSessionRecap, type PreviousSetPerformance, type ProfileDiscoverySettings, type ProfileFavoriteExercise, type ProfilePrivacySettings, type ProfileViewerAccess, type ProfileVisibility, type ProgressTimelineEventType, type ProgressTimelineItem, type ProgressTimelinePersonalRecordItem, type ProgressTimelineProgressionItem, type ProgressTimelineQuery, type ProgressTimelineRecordPerformance, type ProgressTimelineRecordReason, type ProgressTimelineResponse, type ProgressTimelineSessionContext, type ProgressionChange, type ProgressionRule, type ProgressionScheme, type ProgressionSetChange, type PublicBodyMetrics, type PublicTrainingSummary, type PublicUserProfile, RELATIONSHIP_LIST_DEFAULT_LIMIT, RELATIONSHIP_LIST_KINDS, RELATIONSHIP_LIST_MAX_LIMIT, REP_TYPES, RESERVED_USERNAMES, type RecentActivityEntry, type RelationshipListKind, type RelationshipListQuery, type RelationshipListResponse, type RelationshipMember, type RepType, type ReplaceTrainingLocationsRequest, type Routine, type RoutineDay, type RoutineDayId, type RoutineExercise, type RoutineId, type RoutineSet, SEXES, type SessionComparisonExercise, type SessionComparisonQuery, type SessionComparisonResponse, type SessionComparisonRoutineDay, type SessionComparisonSession, type SessionComparisonSet, type SessionRecapRecord, type SetAccountTimeZoneRequest, type SetLog, type Sex, type StartWorkoutRequest, type StartWorkoutResponse, type SupabaseAuthResponse, type SupabaseAuthUser, type SupabaseMigrationResponse, TRAINING_DISCIPLINE_VALUES, TRAINING_EVENT_TYPES, TRAINING_EXPERIENCE_LEVEL_VALUES, TRAINING_GOAL_VALUES, type TrainingDiscipline, type TrainingEventType, type TrainingExperienceLevel, type TrainingGoal, type TrainingIdentity, type TrainingLocationPreference, type TrainingLocationPreferenceInput, USERNAME_MAX_LENGTH, USERNAME_MIN_LENGTH, USERNAME_PATTERN_SOURCE, type UpdateProfileDiscoveryRequest, type UpdateProfilePrivacyRequest, type UpdateProfileRequest, type UpdateRoutineRequest, type UpsertSetLogRequest, type UpsertSetLogResponse, type UserId, type UserProfile, type UserSearchResponse, type VolumeTrendPoint, type VolumeTrendQuery, type VolumeTrendResponse, type VolumeTrendSeries, WEIGHT_UNITS, WORKOUT_SESSION_STATUSES, type WeightUnit, type WorkoutAnalyticsStatus, type WorkoutProgressQuery, type WorkoutProgressResponse, type WorkoutSession, type WorkoutSessionId, type WorkoutSessionListResponse, type WorkoutSessionRecap, type WorkoutSessionSnapshotV1, type WorkoutSessionStatus, type WorkoutSessionSummary, type WorkoutStatsQuery, type WorkoutStatsResponse };
|
|
876
|
+
export { type Brand, type CreateRoutineDayInput, type CreateRoutineExerciseInput, type CreateRoutineRequest, type CreateSessionShareRequest, type EarnedPersonalRecord, type Exercise, type ExerciseId, type ExercisePerformanceHistoryQuery, type ExercisePerformanceHistoryResponse, type ExercisePerformancePrescription, type ExercisePerformancePrescriptionSet, type ExercisePerformanceSession, type ExercisePerformanceSet, type ExercisePerformanceSummary, type ExerciseStrengthSummary, type ExerciseStrengthTrendPoint, type ExerciseStrengthTrendQuery, type ExerciseStrengthTrendResponse, FOLLOW_SUGGESTIONS_DEFAULT_LIMIT, FOLLOW_SUGGESTIONS_MAX_LIMIT, FOLLOW_SUGGESTION_REASONS, type FinishStatus, type FinishWorkoutRequest, type FinishWorkoutResponse, type FollowSuggestion, type FollowSuggestionReason, type FollowSuggestionsResponse, type IsoDateString, type ListSessionsParams, MUSCLE_GROUPS, type MuscleGroup, type MuscleGroupHeatmapQuery, type MuscleGroupHeatmapResponse, type MuscleGroupHeatmapValue, type MuscleGroupHeatmapWeek, type MuscleVolumeTrendSeries, PREFERRED_TRAINING_STYLE_VALUES, PROFILE_BIO_MAX_LENGTH, PROFILE_FAVORITE_EXERCISES_MAX, PROFILE_LOCATION_MAX_LENGTH, PROFILE_TRAINING_DISCIPLINES_MAX, PROFILE_TRAINING_GOALS_MAX, PROFILE_VISIBILITY_VALUES, PROGRESSION_SCHEMES, PROGRESS_TIMELINE_EVENT_TYPES, type PaginatedResponse, type PersonalRecordEntry, type PersonalRecordKind, type PlatePairInventory, type PreferredTrainingStyle, type PreviousPerformanceResponse, type PreviousSessionRecap, type PreviousSetPerformance, type ProfileDiscoverySettings, type ProfileFavoriteExercise, type ProfilePrivacySettings, type ProfileViewerAccess, type ProfileVisibility, type ProgressTimelineEventType, type ProgressTimelineItem, type ProgressTimelinePersonalRecordItem, type ProgressTimelineProgressionItem, type ProgressTimelineQuery, type ProgressTimelineRecordPerformance, type ProgressTimelineRecordReason, type ProgressTimelineResponse, type ProgressTimelineSessionContext, type ProgressionChange, type ProgressionRule, type ProgressionScheme, type ProgressionSetChange, type PublicBodyMetrics, type PublicTrainingSummary, type PublicUserProfile, RELATIONSHIP_LIST_DEFAULT_LIMIT, RELATIONSHIP_LIST_KINDS, RELATIONSHIP_LIST_MAX_LIMIT, REP_TYPES, RESERVED_USERNAMES, type RecentActivityEntry, type RelationshipListKind, type RelationshipListQuery, type RelationshipListResponse, type RelationshipMember, type RepType, type ReplaceTrainingLocationsRequest, type Routine, type RoutineDay, type RoutineDayId, type RoutineExercise, type RoutineId, type RoutineSet, SESSION_SHARE_DEFAULT_FIELDS, SESSION_SHARE_FIELDS, SESSION_SHARE_MAX_ACTIVE_LINKS, SEXES, type SessionComparisonExercise, type SessionComparisonQuery, type SessionComparisonResponse, type SessionComparisonRoutineDay, type SessionComparisonSession, type SessionComparisonSet, type SessionRecapRecord, type SessionShare, type SessionShareField, type SessionShareListResponse, type SetAccountTimeZoneRequest, type SetLog, type Sex, type SharedSessionOwner, type SharedSessionRecap, type StartWorkoutRequest, type StartWorkoutResponse, type SupabaseAuthResponse, type SupabaseAuthUser, type SupabaseMigrationResponse, TRAINING_DISCIPLINE_VALUES, TRAINING_EVENT_TYPES, TRAINING_EXPERIENCE_LEVEL_VALUES, TRAINING_GOAL_VALUES, type TrainingDiscipline, type TrainingEventType, type TrainingExperienceLevel, type TrainingGoal, type TrainingIdentity, type TrainingLocationPreference, type TrainingLocationPreferenceInput, USERNAME_MAX_LENGTH, USERNAME_MIN_LENGTH, USERNAME_PATTERN_SOURCE, type UpdateProfileDiscoveryRequest, type UpdateProfilePrivacyRequest, type UpdateProfileRequest, type UpdateRoutineRequest, type UpsertSetLogRequest, type UpsertSetLogResponse, type UserId, type UserProfile, type UserSearchResponse, type VolumeTrendPoint, type VolumeTrendQuery, type VolumeTrendResponse, type VolumeTrendSeries, WEIGHT_UNITS, WORKOUT_SESSION_STATUSES, type WeightUnit, type WorkoutAnalyticsStatus, type WorkoutProgressQuery, type WorkoutProgressResponse, type WorkoutSession, type WorkoutSessionId, type WorkoutSessionListResponse, type WorkoutSessionRecap, type WorkoutSessionSnapshotV1, type WorkoutSessionStatus, type WorkoutSessionSummary, type WorkoutStatsQuery, type WorkoutStatsResponse };
|
package/dist/index.js
CHANGED
|
@@ -122,6 +122,23 @@ var FOLLOW_SUGGESTION_REASONS = [
|
|
|
122
122
|
"FOLLOWED_BY_PEOPLE_YOU_FOLLOW"
|
|
123
123
|
];
|
|
124
124
|
|
|
125
|
+
// src/workout.ts
|
|
126
|
+
var SESSION_SHARE_FIELDS = [
|
|
127
|
+
"duration",
|
|
128
|
+
"volume",
|
|
129
|
+
"completedSets",
|
|
130
|
+
"records",
|
|
131
|
+
"progression",
|
|
132
|
+
"notes"
|
|
133
|
+
];
|
|
134
|
+
var SESSION_SHARE_DEFAULT_FIELDS = [
|
|
135
|
+
"duration",
|
|
136
|
+
"volume",
|
|
137
|
+
"completedSets",
|
|
138
|
+
"records"
|
|
139
|
+
];
|
|
140
|
+
var SESSION_SHARE_MAX_ACTIVE_LINKS = 10;
|
|
141
|
+
|
|
125
142
|
// src/analytics.ts
|
|
126
143
|
var TRAINING_EVENT_TYPES = [
|
|
127
144
|
"SESSION_COMPLETED",
|
|
@@ -151,6 +168,9 @@ export {
|
|
|
151
168
|
RELATIONSHIP_LIST_MAX_LIMIT,
|
|
152
169
|
REP_TYPES,
|
|
153
170
|
RESERVED_USERNAMES,
|
|
171
|
+
SESSION_SHARE_DEFAULT_FIELDS,
|
|
172
|
+
SESSION_SHARE_FIELDS,
|
|
173
|
+
SESSION_SHARE_MAX_ACTIVE_LINKS,
|
|
154
174
|
SEXES,
|
|
155
175
|
TRAINING_DISCIPLINE_VALUES,
|
|
156
176
|
TRAINING_EVENT_TYPES,
|