@read-frog/definitions 0.3.3 → 0.3.4
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/dist/index.d.ts +12 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/constants/beta-access.ts +6 -1
- package/src/index.ts +1 -0
- package/src/schemas/transcript.ts +9 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@read-frog/definitions",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.4",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"zod": "^4.4.3"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"tsdown": "^0.22.
|
|
34
|
-
"vitest": "^4.1.
|
|
33
|
+
"tsdown": "^0.22.3",
|
|
34
|
+
"vitest": "^4.1.9",
|
|
35
35
|
"@repo/eslint-config": "0.0.1",
|
|
36
36
|
"@repo/tsdown-config": "0.0.0",
|
|
37
37
|
"@repo/typescript-config": "0.0.0"
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
export const BETA_FEATURES = {
|
|
2
2
|
notebase: "notebase",
|
|
3
|
+
videoTranscription: "videoTranscription",
|
|
3
4
|
} as const
|
|
4
5
|
|
|
5
|
-
export const BETA_FEATURE_KEYS = [
|
|
6
|
+
export const BETA_FEATURE_KEYS = [
|
|
7
|
+
BETA_FEATURES.notebase,
|
|
8
|
+
BETA_FEATURES.videoTranscription,
|
|
9
|
+
] as const
|
|
6
10
|
|
|
7
11
|
export type BetaFeatureKey = (typeof BETA_FEATURE_KEYS)[number]
|
|
8
12
|
|
|
9
13
|
export const NOTEBASE_BETA_FEATURE_KEY = BETA_FEATURES.notebase
|
|
14
|
+
export const VIDEO_TRANSCRIPTION_BETA_FEATURE_KEY = BETA_FEATURES.videoTranscription
|
package/src/index.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from "./constants/dictionary"
|
|
|
5
5
|
export * from "./constants/notebase-column"
|
|
6
6
|
export * from "./constants/url"
|
|
7
7
|
export * from "./schemas/cell-value"
|
|
8
|
+
export * from "./schemas/transcript"
|
|
8
9
|
export * from "./schemas/version"
|
|
9
10
|
export * from "./types/card"
|
|
10
11
|
export * from "./types/languages"
|