revdev 0.350.0 → 0.353.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.
@@ -6,6 +6,7 @@ export interface BoGenerateItemChoiceRequest {
6
6
  count: number;
7
7
  exerciseId: string;
8
8
  altRuleIds: string[];
9
+ incorrectAnswerTotal?: number;
9
10
  }
10
11
  export interface BoCreateItemChoiceSetRequest {
11
12
  exerciseId: string;
@@ -8,6 +8,7 @@ export interface BoRuleRecord {
8
8
  active: boolean;
9
9
  status?: EntryStatus;
10
10
  exerciseTotal: number;
11
+ predefinedOptions?: string[];
11
12
  }
12
13
  export interface BoRuleModifier extends BoRuleRecord {
13
14
  contentType: ContentType;
@@ -1,13 +1,13 @@
1
- import { tags } from "typia";
2
1
  import { ContentType } from "../../common";
3
2
  import { LangFeedRequest } from "../../feed";
4
3
  export interface BoCreateRuleRequest {
5
- langCode: string & tags.MaxLength<3> & tags.MinLength<2>;
6
- slug: string & tags.MinLength<6> & tags.MaxLength<255> & tags.Pattern<"^[a-z0-9]+(?:-[a-z0-9]+)*$">;
7
- name: string & tags.MinLength<1> & tags.MaxLength<255>;
4
+ langCode: string;
5
+ slug: string;
6
+ name: string;
8
7
  contentType: ContentType;
9
- content: string & tags.MinLength<1> & tags.MaxLength<5000>;
10
- note?: string & tags.MaxLength<1000>;
8
+ content: string;
9
+ note?: string;
10
+ predefinedOptions?: string[];
11
11
  }
12
12
  export interface BoUpdateRuleRequest extends BoCreateRuleRequest {
13
13
  id: string;
@@ -1,2 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ // export interface BaseStatusRecord<TContrib extends ContribGen | DualContribGen = DualContribGen> {
4
+ // id: string;
5
+ // active: boolean;
6
+ // status?: EntryStatus;
7
+ // contrib: TContrib;
8
+ // }
9
+ // export interface BaseRateRecord<TContrib extends ContribGen | DualContribGen = DualContribGen> extends BaseStatusRecord<TContrib> {
10
+ // rate: number;
11
+ // reaction?: UserReaction;
12
+ // }
@@ -1,2 +1,5 @@
1
1
  "use strict";
2
+ // export interface FePassStartRequest {
3
+ // courseId: string;
4
+ // }
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.350.0",
3
+ "version": "0.353.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -11,8 +11,7 @@
11
11
  "lint:fix": "eslint . --fix",
12
12
  "v": "npm --no-git-tag-version version minor",
13
13
  "pm": "npm run lint:fix && git add * && git commit -m\"update\" && git push origin master",
14
- "p": "npm run v && npm run lint:fix && git add * && git commit -m\"v\" && git push origin master",
15
- "prepare": "ts-patch install"
14
+ "p": "npm run v && npm run lint:fix && git add * && git commit -m\"v\" && git push origin master"
16
15
  },
17
16
  "prettier": "eslint-config-varp/prettier",
18
17
  "keywords": [
@@ -25,9 +24,7 @@
25
24
  "eslint-config-varp": "^2.10.0",
26
25
  "jest": "^24.9.0",
27
26
  "ts-jest": "^24.1.0",
28
- "ts-patch": "^3.3.0",
29
- "typescript": "~5.9.3",
30
- "typia": "^12.0.1"
27
+ "typescript": "^5.9.3"
31
28
  },
32
29
  "files": [
33
30
  "lib/**/*"