• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

GEWIS / sudosos-backend / 26087122199

19 May 2026 08:59AM UTC coverage: 87.545% (-0.2%) from 87.783%
26087122199

Pull #896

github

web-flow
Merge e22f245d2 into 9dd74ee61
Pull Request #896: Add PaymentRequest service layer

4007 of 4670 branches covered (85.8%)

Branch coverage included in aggregate %.

260 of 384 new or added lines in 4 files covered. (67.71%)

2 existing lines in 1 file now uncovered.

20579 of 23414 relevant lines covered (87.89%)

835.7 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/controller/response/base-response-without-id.ts
NEW
1
/**
×
2
 *  SudoSOS back-end API service.
3
 *  Copyright (C) 2026 Study association GEWIS
4
 *
5
 *  This program is free software: you can redistribute it and/or modify
6
 *  it under the terms of the GNU Affero General Public License as published
7
 *  by the Free Software Foundation, either version 3 of the License, or
8
 *  (at your option) any later version.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU Affero General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU Affero General Public License
16
 *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
17
 *
18
 *  @license
NEW
19
 */
×
20

NEW
21
/**
×
22
 * @hidden
23
 * @module
NEW
24
 */
×
25

NEW
26
/**
×
27
 * Standard timestamp/version fields every response shares, without an `id`.
28
 * Responses that key on a UUID (or any non-integer identifier) extend this
29
 * and add their own `id` field. Responses keyed on an integer id extend
30
 * `BaseResponse` instead, which adds `id: number`.
31
 *
32
 * Parallel to `BaseEntityWithoutId` on the entity side.
33
 *
34
 * @typedef {object} BaseResponseWithoutId
35
 * @property {string} createdAt - The creation Date of the entity.
36
 * @property {string} updatedAt - The last update Date of the entity.
37
 * @property {integer} version - The version of the entity.
NEW
38
 */
×
39
export default interface BaseResponseWithoutId {
40
  createdAt?: string,
41
  updatedAt?: string,
42
  version?: number,
NEW
43
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc