@laplace.live/internal 1.2.34 → 1.2.36
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/index.d.ts +18 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -901,6 +901,24 @@ export declare namespace LaplaceInternal {
|
|
|
901
901
|
rejectReason?: string
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
+
/**
|
|
905
|
+
* Query parameters for GET /laplace/fertility-contributions
|
|
906
|
+
*/
|
|
907
|
+
export interface FertilityContributionsListQuery {
|
|
908
|
+
/** Filter by status */
|
|
909
|
+
status?: ContributionStatus
|
|
910
|
+
/** Filter by target user UID */
|
|
911
|
+
uid?: number
|
|
912
|
+
/** Maximum number of results (1-500, default: 100) */
|
|
913
|
+
limit?: number
|
|
914
|
+
/** Offset for pagination (default: 0) */
|
|
915
|
+
offset?: number
|
|
916
|
+
/** Field to sort by (default: 'createdAt') */
|
|
917
|
+
sortBy?: 'createdAt' | 'reviewedAt'
|
|
918
|
+
/** Sort order (default: 'desc') */
|
|
919
|
+
sort?: 'asc' | 'desc'
|
|
920
|
+
}
|
|
921
|
+
|
|
904
922
|
/**
|
|
905
923
|
* Response for GET /laplace/fertility-contributions
|
|
906
924
|
*/
|