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

codellm-devkit / typescript-sdk / 14843627684

05 May 2025 06:36PM UTC coverage: 88.273%. First build
14843627684

Pull #2

github

web-flow
Merge 16f8e9d20 into 2ebd6e0b6
Pull Request #2: Lightweight APIs to analyze Java projects just with it's Symbol Table

179 of 180 new or added lines in 5 files covered. (99.44%)

414 of 469 relevant lines covered (88.27%)

44.36 hits per line

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

100.0
/src/models/java/enums.ts
1
/**
2
 * Copyright IBM Corporation 2025
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *       http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16

17
import z from 'zod';
20✔
18

19
/**
20
 * Enum for CRUD query types.
21
 *
22
 * @typedef {Object} CRUDQueryType
23
 * @enum {string}
24
 * @property {string} READ - Represents a read query.
25
 * @property {string} WRITE - Represents a write query.
26
 * @property {string} NAMED - Represents a named query.
27
 */
28
export const CRUDQueryType = z.enum(['READ', 'WRITE', 'NAMED']);
64✔
29

30
/**
31
 * Enum for CRUD operation types.
32
 *
33
 * @typedef {Object} CRUDOperationType
34
 * @enum {string}
35
 * @property {string} CREATE - Represents a create operation.
36
 * @property {string} READ - Represents a read operation.
37
 * @property {string} UPDATE - Represents an update operation.
38
 * @property {string} DELETE - Represents a delete operation.
39
 */
40
export const CRUDOperationType = z.enum(['CREATE', 'READ', 'UPDATE', 'DELETE']);
79✔
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

© 2025 Coveralls, Inc