revdev 0.319.0 → 0.320.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/lib/common/enums.d.ts
CHANGED
package/lib/common/enums.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ImageKind = exports.AudioKind = exports.PointerMode = exports.ContentType = exports.PositionDirection = exports.PassExerciseStatus = exports.PassEpisodeStatus = exports.PassStatus = exports.PostStatus = exports.SetType = exports.ItemType = exports.ExerciseMode = exports.ExerciseType = exports.SmmCampaignType = exports.SmmCampaignStatus = exports.SocialProvider = exports.EntryStatus = exports.QuizMode = exports.UserReaction = exports.WordMode = exports.Knowing = void 0;
|
|
3
|
+
exports.AudioSex = exports.ImageKind = exports.AudioKind = exports.PointerMode = exports.ContentType = exports.PositionDirection = exports.PassExerciseStatus = exports.PassEpisodeStatus = exports.PassStatus = exports.PostStatus = exports.SetType = exports.ItemType = exports.ExerciseMode = exports.ExerciseType = exports.SmmCampaignType = exports.SmmCampaignStatus = exports.SocialProvider = exports.EntryStatus = exports.QuizMode = exports.UserReaction = exports.WordMode = exports.Knowing = void 0;
|
|
4
4
|
var Knowing;
|
|
5
5
|
(function (Knowing) {
|
|
6
6
|
Knowing[Knowing["Known"] = 1] = "Known";
|
|
@@ -123,3 +123,8 @@ var ImageKind;
|
|
|
123
123
|
ImageKind["Course"] = "imageCourse";
|
|
124
124
|
ImageKind["Item"] = "imageItem";
|
|
125
125
|
})(ImageKind || (exports.ImageKind = ImageKind = {}));
|
|
126
|
+
var AudioSex;
|
|
127
|
+
(function (AudioSex) {
|
|
128
|
+
AudioSex["Male"] = "male";
|
|
129
|
+
AudioSex["Female"] = "female";
|
|
130
|
+
})(AudioSex || (exports.AudioSex = AudioSex = {}));
|
package/lib/feed/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ContribGen, Knowing, QuizCode, QuizMode } from "../../common";
|
|
1
|
+
import { AudioSex, ContribGen, Knowing, QuizCode, QuizMode } from "../../common";
|
|
2
2
|
export interface WordGen {
|
|
3
3
|
id: string;
|
|
4
4
|
text: string;
|
|
@@ -29,4 +29,5 @@ export interface WordAttemptRecord {
|
|
|
29
29
|
export interface WordAudioRecord {
|
|
30
30
|
id: string;
|
|
31
31
|
url: string;
|
|
32
|
+
sex?: AudioSex;
|
|
32
33
|
}
|