@elek-io/core 0.6.0 → 0.7.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/dist/browser/index.browser.d.ts +1069 -260
- package/dist/browser/index.browser.js +17 -19
- package/dist/browser/index.browser.js.map +1 -1
- package/dist/node/index.node.d.ts +268 -292
- package/dist/node/index.node.js +30 -88
- package/dist/node/index.node.js.map +1 -1
- package/package.json +29 -29
|
@@ -4,8 +4,8 @@ import Fs from 'fs-extra';
|
|
|
4
4
|
|
|
5
5
|
declare const assetFileSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6
6
|
id: z.ZodReadonly<z.ZodString>;
|
|
7
|
-
created: z.ZodReadonly<z.
|
|
8
|
-
updated: z.ZodNullable<z.
|
|
7
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
8
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
9
9
|
}, {
|
|
10
10
|
language: z.ZodReadonly<z.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
11
11
|
}>, {
|
|
@@ -22,8 +22,8 @@ declare const assetFileSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
22
22
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
23
23
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
24
24
|
id: string;
|
|
25
|
-
created:
|
|
26
|
-
updated:
|
|
25
|
+
created: string;
|
|
26
|
+
updated: string | null;
|
|
27
27
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
28
28
|
objectType: "asset";
|
|
29
29
|
name: string;
|
|
@@ -33,8 +33,8 @@ declare const assetFileSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
33
33
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
34
34
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
35
35
|
id: string;
|
|
36
|
-
created:
|
|
37
|
-
updated:
|
|
36
|
+
created: string;
|
|
37
|
+
updated: string | null;
|
|
38
38
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
39
39
|
objectType: "asset";
|
|
40
40
|
name: string;
|
|
@@ -44,8 +44,8 @@ declare const assetFileSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
44
44
|
type AssetFile = z.infer<typeof assetFileSchema>;
|
|
45
45
|
declare const assetSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
46
46
|
id: z.ZodReadonly<z.ZodString>;
|
|
47
|
-
created: z.ZodReadonly<z.
|
|
48
|
-
updated: z.ZodNullable<z.
|
|
47
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
48
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
49
49
|
}, {
|
|
50
50
|
language: z.ZodReadonly<z.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
51
51
|
}>, {
|
|
@@ -67,8 +67,8 @@ declare const assetSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
67
67
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
68
68
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
69
69
|
id: string;
|
|
70
|
-
created:
|
|
71
|
-
updated:
|
|
70
|
+
created: string;
|
|
71
|
+
updated: string | null;
|
|
72
72
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
73
73
|
objectType: "asset";
|
|
74
74
|
name: string;
|
|
@@ -79,8 +79,8 @@ declare const assetSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
79
79
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
80
80
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
81
81
|
id: string;
|
|
82
|
-
created:
|
|
83
|
-
updated:
|
|
82
|
+
created: string;
|
|
83
|
+
updated: string | null;
|
|
84
84
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
85
85
|
objectType: "asset";
|
|
86
86
|
name: string;
|
|
@@ -91,8 +91,8 @@ declare const assetSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
91
91
|
type Asset = z.infer<typeof assetSchema>;
|
|
92
92
|
declare const assetExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
93
93
|
id: z.ZodReadonly<z.ZodString>;
|
|
94
|
-
created: z.ZodReadonly<z.
|
|
95
|
-
updated: z.ZodNullable<z.
|
|
94
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
95
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
96
96
|
}, {
|
|
97
97
|
language: z.ZodReadonly<z.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
98
98
|
}>, {
|
|
@@ -114,8 +114,8 @@ declare const assetExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
114
114
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
115
115
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
116
116
|
id: string;
|
|
117
|
-
created:
|
|
118
|
-
updated:
|
|
117
|
+
created: string;
|
|
118
|
+
updated: string | null;
|
|
119
119
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
120
120
|
objectType: "asset";
|
|
121
121
|
name: string;
|
|
@@ -126,8 +126,8 @@ declare const assetExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
126
126
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
127
127
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
128
128
|
id: string;
|
|
129
|
-
created:
|
|
130
|
-
updated:
|
|
129
|
+
created: string;
|
|
130
|
+
updated: string | null;
|
|
131
131
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
132
132
|
objectType: "asset";
|
|
133
133
|
name: string;
|
|
@@ -138,8 +138,8 @@ declare const assetExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
138
138
|
type AssetExport = z.infer<typeof assetExportSchema>;
|
|
139
139
|
declare const createAssetSchema: z.ZodObject<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
140
140
|
id: z.ZodReadonly<z.ZodString>;
|
|
141
|
-
created: z.ZodReadonly<z.
|
|
142
|
-
updated: z.ZodNullable<z.
|
|
141
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
142
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
143
143
|
}, {
|
|
144
144
|
language: z.ZodReadonly<z.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
145
145
|
}>, {
|
|
@@ -174,8 +174,8 @@ declare const createAssetSchema: z.ZodObject<z.objectUtil.extendShape<Pick<z.obj
|
|
|
174
174
|
type CreateAssetProps = z.infer<typeof createAssetSchema>;
|
|
175
175
|
declare const readAssetSchema: z.ZodObject<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
176
176
|
id: z.ZodReadonly<z.ZodString>;
|
|
177
|
-
created: z.ZodReadonly<z.
|
|
178
|
-
updated: z.ZodNullable<z.
|
|
177
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
178
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
179
179
|
}, {
|
|
180
180
|
language: z.ZodReadonly<z.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
181
181
|
}>, {
|
|
@@ -202,8 +202,8 @@ declare const readAssetSchema: z.ZodObject<z.objectUtil.extendShape<Pick<z.objec
|
|
|
202
202
|
type ReadAssetProps = z.infer<typeof readAssetSchema>;
|
|
203
203
|
declare const updateAssetSchema: z.ZodObject<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
204
204
|
id: z.ZodReadonly<z.ZodString>;
|
|
205
|
-
created: z.ZodReadonly<z.
|
|
206
|
-
updated: z.ZodNullable<z.
|
|
205
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
206
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
207
207
|
}, {
|
|
208
208
|
language: z.ZodReadonly<z.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
209
209
|
}>, {
|
|
@@ -240,8 +240,8 @@ declare const updateAssetSchema: z.ZodObject<z.objectUtil.extendShape<Pick<z.obj
|
|
|
240
240
|
type UpdateAssetProps = z.infer<typeof updateAssetSchema>;
|
|
241
241
|
declare const deleteAssetSchema: z.ZodObject<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
242
242
|
id: z.ZodReadonly<z.ZodString>;
|
|
243
|
-
created: z.ZodReadonly<z.
|
|
244
|
-
updated: z.ZodNullable<z.
|
|
243
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
244
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
245
245
|
}, {
|
|
246
246
|
language: z.ZodReadonly<z.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
247
247
|
}>, {
|
|
@@ -2410,8 +2410,8 @@ declare const resolvedReferencedValueSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2410
2410
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
2411
2411
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
2412
2412
|
id: string;
|
|
2413
|
-
created:
|
|
2414
|
-
updated:
|
|
2413
|
+
created: string;
|
|
2414
|
+
updated: string | null;
|
|
2415
2415
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
2416
2416
|
objectType: "asset";
|
|
2417
2417
|
name: string;
|
|
@@ -2422,8 +2422,8 @@ declare const resolvedReferencedValueSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2422
2422
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
2423
2423
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
2424
2424
|
id: string;
|
|
2425
|
-
created:
|
|
2426
|
-
updated:
|
|
2425
|
+
created: string;
|
|
2426
|
+
updated: string | null;
|
|
2427
2427
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
2428
2428
|
objectType: "asset";
|
|
2429
2429
|
name: string;
|
|
@@ -2439,8 +2439,8 @@ declare const resolvedReferencedValueSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2439
2439
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
2440
2440
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
2441
2441
|
id: string;
|
|
2442
|
-
created:
|
|
2443
|
-
updated:
|
|
2442
|
+
created: string;
|
|
2443
|
+
updated: string | null;
|
|
2444
2444
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
2445
2445
|
objectType: "asset";
|
|
2446
2446
|
name: string;
|
|
@@ -2456,8 +2456,8 @@ declare const resolvedReferencedValueSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
2456
2456
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
2457
2457
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
2458
2458
|
id: string;
|
|
2459
|
-
created:
|
|
2460
|
-
updated:
|
|
2459
|
+
created: string;
|
|
2460
|
+
updated: string | null;
|
|
2461
2461
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
2462
2462
|
objectType: "asset";
|
|
2463
2463
|
name: string;
|
|
@@ -2559,8 +2559,8 @@ declare const resolvedValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
2559
2559
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
2560
2560
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
2561
2561
|
id: string;
|
|
2562
|
-
created:
|
|
2563
|
-
updated:
|
|
2562
|
+
created: string;
|
|
2563
|
+
updated: string | null;
|
|
2564
2564
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
2565
2565
|
objectType: "asset";
|
|
2566
2566
|
name: string;
|
|
@@ -2571,8 +2571,8 @@ declare const resolvedValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
2571
2571
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
2572
2572
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
2573
2573
|
id: string;
|
|
2574
|
-
created:
|
|
2575
|
-
updated:
|
|
2574
|
+
created: string;
|
|
2575
|
+
updated: string | null;
|
|
2576
2576
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
2577
2577
|
objectType: "asset";
|
|
2578
2578
|
name: string;
|
|
@@ -2588,8 +2588,8 @@ declare const resolvedValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
2588
2588
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
2589
2589
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
2590
2590
|
id: string;
|
|
2591
|
-
created:
|
|
2592
|
-
updated:
|
|
2591
|
+
created: string;
|
|
2592
|
+
updated: string | null;
|
|
2593
2593
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
2594
2594
|
objectType: "asset";
|
|
2595
2595
|
name: string;
|
|
@@ -2605,8 +2605,8 @@ declare const resolvedValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
2605
2605
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
2606
2606
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
2607
2607
|
id: string;
|
|
2608
|
-
created:
|
|
2609
|
-
updated:
|
|
2608
|
+
created: string;
|
|
2609
|
+
updated: string | null;
|
|
2610
2610
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
2611
2611
|
objectType: "asset";
|
|
2612
2612
|
name: string;
|
|
@@ -2650,8 +2650,8 @@ declare function getValueContentSchemaFromDefinition(definition: ValueDefinition
|
|
|
2650
2650
|
|
|
2651
2651
|
declare const entryFileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
2652
2652
|
id: z.ZodReadonly<z.ZodString>;
|
|
2653
|
-
created: z.ZodReadonly<z.
|
|
2654
|
-
updated: z.ZodNullable<z.
|
|
2653
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
2654
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
2655
2655
|
}, {
|
|
2656
2656
|
objectType: z.ZodReadonly<z.ZodLiteral<"entry">>;
|
|
2657
2657
|
values: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2805,8 +2805,8 @@ declare const entryFileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2805
2805
|
})[]>>;
|
|
2806
2806
|
})[];
|
|
2807
2807
|
id: string;
|
|
2808
|
-
created:
|
|
2809
|
-
updated:
|
|
2808
|
+
created: string;
|
|
2809
|
+
updated: string | null;
|
|
2810
2810
|
objectType: "entry";
|
|
2811
2811
|
}, {
|
|
2812
2812
|
values: ({
|
|
@@ -2841,8 +2841,8 @@ declare const entryFileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2841
2841
|
})[]>>;
|
|
2842
2842
|
})[];
|
|
2843
2843
|
id: string;
|
|
2844
|
-
created:
|
|
2845
|
-
updated:
|
|
2844
|
+
created: string;
|
|
2845
|
+
updated: string | null;
|
|
2846
2846
|
objectType: "entry";
|
|
2847
2847
|
}>;
|
|
2848
2848
|
type EntryFile = z.infer<typeof entryFileSchema>;
|
|
@@ -2853,8 +2853,8 @@ type Entry = z.infer<typeof entryFileSchema> & {
|
|
|
2853
2853
|
};
|
|
2854
2854
|
declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2855
2855
|
id: z.ZodReadonly<z.ZodString>;
|
|
2856
|
-
created: z.ZodReadonly<z.
|
|
2857
|
-
updated: z.ZodNullable<z.
|
|
2856
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
2857
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
2858
2858
|
}, {
|
|
2859
2859
|
objectType: z.ZodReadonly<z.ZodLiteral<"entry">>;
|
|
2860
2860
|
values: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3068,8 +3068,8 @@ declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
3068
3068
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3069
3069
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3070
3070
|
id: string;
|
|
3071
|
-
created:
|
|
3072
|
-
updated:
|
|
3071
|
+
created: string;
|
|
3072
|
+
updated: string | null;
|
|
3073
3073
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3074
3074
|
objectType: "asset";
|
|
3075
3075
|
name: string;
|
|
@@ -3080,8 +3080,8 @@ declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
3080
3080
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3081
3081
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3082
3082
|
id: string;
|
|
3083
|
-
created:
|
|
3084
|
-
updated:
|
|
3083
|
+
created: string;
|
|
3084
|
+
updated: string | null;
|
|
3085
3085
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3086
3086
|
objectType: "asset";
|
|
3087
3087
|
name: string;
|
|
@@ -3097,8 +3097,8 @@ declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
3097
3097
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3098
3098
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3099
3099
|
id: string;
|
|
3100
|
-
created:
|
|
3101
|
-
updated:
|
|
3100
|
+
created: string;
|
|
3101
|
+
updated: string | null;
|
|
3102
3102
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3103
3103
|
objectType: "asset";
|
|
3104
3104
|
name: string;
|
|
@@ -3114,8 +3114,8 @@ declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
3114
3114
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3115
3115
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3116
3116
|
id: string;
|
|
3117
|
-
created:
|
|
3118
|
-
updated:
|
|
3117
|
+
created: string;
|
|
3118
|
+
updated: string | null;
|
|
3119
3119
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3120
3120
|
objectType: "asset";
|
|
3121
3121
|
name: string;
|
|
@@ -3148,8 +3148,8 @@ declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
3148
3148
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3149
3149
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3150
3150
|
id: string;
|
|
3151
|
-
created:
|
|
3152
|
-
updated:
|
|
3151
|
+
created: string;
|
|
3152
|
+
updated: string | null;
|
|
3153
3153
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3154
3154
|
objectType: "asset";
|
|
3155
3155
|
name: string;
|
|
@@ -3159,8 +3159,8 @@ declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
3159
3159
|
} | Entry)[]>>;
|
|
3160
3160
|
})[];
|
|
3161
3161
|
id: string;
|
|
3162
|
-
created:
|
|
3163
|
-
updated:
|
|
3162
|
+
created: string;
|
|
3163
|
+
updated: string | null;
|
|
3164
3164
|
objectType: "entry";
|
|
3165
3165
|
}, {
|
|
3166
3166
|
values: ({
|
|
@@ -3186,8 +3186,8 @@ declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
3186
3186
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3187
3187
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3188
3188
|
id: string;
|
|
3189
|
-
created:
|
|
3190
|
-
updated:
|
|
3189
|
+
created: string;
|
|
3190
|
+
updated: string | null;
|
|
3191
3191
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3192
3192
|
objectType: "asset";
|
|
3193
3193
|
name: string;
|
|
@@ -3197,14 +3197,14 @@ declare const entrySchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
3197
3197
|
} | Entry)[]>>;
|
|
3198
3198
|
})[];
|
|
3199
3199
|
id: string;
|
|
3200
|
-
created:
|
|
3201
|
-
updated:
|
|
3200
|
+
created: string;
|
|
3201
|
+
updated: string | null;
|
|
3202
3202
|
objectType: "entry";
|
|
3203
3203
|
}>;
|
|
3204
3204
|
declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3205
3205
|
id: z.ZodReadonly<z.ZodString>;
|
|
3206
|
-
created: z.ZodReadonly<z.
|
|
3207
|
-
updated: z.ZodNullable<z.
|
|
3206
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
3207
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
3208
3208
|
}, {
|
|
3209
3209
|
objectType: z.ZodReadonly<z.ZodLiteral<"entry">>;
|
|
3210
3210
|
values: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3418,8 +3418,8 @@ declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
3418
3418
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3419
3419
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3420
3420
|
id: string;
|
|
3421
|
-
created:
|
|
3422
|
-
updated:
|
|
3421
|
+
created: string;
|
|
3422
|
+
updated: string | null;
|
|
3423
3423
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3424
3424
|
objectType: "asset";
|
|
3425
3425
|
name: string;
|
|
@@ -3430,8 +3430,8 @@ declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
3430
3430
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3431
3431
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3432
3432
|
id: string;
|
|
3433
|
-
created:
|
|
3434
|
-
updated:
|
|
3433
|
+
created: string;
|
|
3434
|
+
updated: string | null;
|
|
3435
3435
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3436
3436
|
objectType: "asset";
|
|
3437
3437
|
name: string;
|
|
@@ -3447,8 +3447,8 @@ declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
3447
3447
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3448
3448
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3449
3449
|
id: string;
|
|
3450
|
-
created:
|
|
3451
|
-
updated:
|
|
3450
|
+
created: string;
|
|
3451
|
+
updated: string | null;
|
|
3452
3452
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3453
3453
|
objectType: "asset";
|
|
3454
3454
|
name: string;
|
|
@@ -3464,8 +3464,8 @@ declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
3464
3464
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3465
3465
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3466
3466
|
id: string;
|
|
3467
|
-
created:
|
|
3468
|
-
updated:
|
|
3467
|
+
created: string;
|
|
3468
|
+
updated: string | null;
|
|
3469
3469
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3470
3470
|
objectType: "asset";
|
|
3471
3471
|
name: string;
|
|
@@ -3498,8 +3498,8 @@ declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
3498
3498
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3499
3499
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3500
3500
|
id: string;
|
|
3501
|
-
created:
|
|
3502
|
-
updated:
|
|
3501
|
+
created: string;
|
|
3502
|
+
updated: string | null;
|
|
3503
3503
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3504
3504
|
objectType: "asset";
|
|
3505
3505
|
name: string;
|
|
@@ -3509,8 +3509,8 @@ declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
3509
3509
|
} | Entry)[]>>;
|
|
3510
3510
|
})[];
|
|
3511
3511
|
id: string;
|
|
3512
|
-
created:
|
|
3513
|
-
updated:
|
|
3512
|
+
created: string;
|
|
3513
|
+
updated: string | null;
|
|
3514
3514
|
objectType: "entry";
|
|
3515
3515
|
}, {
|
|
3516
3516
|
values: ({
|
|
@@ -3536,8 +3536,8 @@ declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
3536
3536
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
3537
3537
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
3538
3538
|
id: string;
|
|
3539
|
-
created:
|
|
3540
|
-
updated:
|
|
3539
|
+
created: string;
|
|
3540
|
+
updated: string | null;
|
|
3541
3541
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
3542
3542
|
objectType: "asset";
|
|
3543
3543
|
name: string;
|
|
@@ -3547,15 +3547,15 @@ declare const entryExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
3547
3547
|
} | Entry)[]>>;
|
|
3548
3548
|
})[];
|
|
3549
3549
|
id: string;
|
|
3550
|
-
created:
|
|
3551
|
-
updated:
|
|
3550
|
+
created: string;
|
|
3551
|
+
updated: string | null;
|
|
3552
3552
|
objectType: "entry";
|
|
3553
3553
|
}>;
|
|
3554
3554
|
type EntryExport = z.infer<typeof entryExportSchema>;
|
|
3555
3555
|
declare const createEntrySchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<{
|
|
3556
3556
|
id: z.ZodReadonly<z.ZodString>;
|
|
3557
|
-
created: z.ZodReadonly<z.
|
|
3558
|
-
updated: z.ZodNullable<z.
|
|
3557
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
3558
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
3559
3559
|
}, {
|
|
3560
3560
|
objectType: z.ZodReadonly<z.ZodLiteral<"entry">>;
|
|
3561
3561
|
values: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3883,8 +3883,8 @@ declare const readEntrySchema: z.ZodObject<{
|
|
|
3883
3883
|
type ReadEntryProps = z.infer<typeof readEntrySchema>;
|
|
3884
3884
|
declare const updateEntrySchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3885
3885
|
id: z.ZodReadonly<z.ZodString>;
|
|
3886
|
-
created: z.ZodReadonly<z.
|
|
3887
|
-
updated: z.ZodNullable<z.
|
|
3886
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
3887
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
3888
3888
|
}, {
|
|
3889
3889
|
objectType: z.ZodReadonly<z.ZodLiteral<"entry">>;
|
|
3890
3890
|
values: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -4098,8 +4098,8 @@ declare const updateEntrySchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.obj
|
|
|
4098
4098
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
4099
4099
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
4100
4100
|
id: string;
|
|
4101
|
-
created:
|
|
4102
|
-
updated:
|
|
4101
|
+
created: string;
|
|
4102
|
+
updated: string | null;
|
|
4103
4103
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
4104
4104
|
objectType: "asset";
|
|
4105
4105
|
name: string;
|
|
@@ -4110,8 +4110,8 @@ declare const updateEntrySchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.obj
|
|
|
4110
4110
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
4111
4111
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
4112
4112
|
id: string;
|
|
4113
|
-
created:
|
|
4114
|
-
updated:
|
|
4113
|
+
created: string;
|
|
4114
|
+
updated: string | null;
|
|
4115
4115
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
4116
4116
|
objectType: "asset";
|
|
4117
4117
|
name: string;
|
|
@@ -4127,8 +4127,8 @@ declare const updateEntrySchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.obj
|
|
|
4127
4127
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
4128
4128
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
4129
4129
|
id: string;
|
|
4130
|
-
created:
|
|
4131
|
-
updated:
|
|
4130
|
+
created: string;
|
|
4131
|
+
updated: string | null;
|
|
4132
4132
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
4133
4133
|
objectType: "asset";
|
|
4134
4134
|
name: string;
|
|
@@ -4144,8 +4144,8 @@ declare const updateEntrySchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.obj
|
|
|
4144
4144
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
4145
4145
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
4146
4146
|
id: string;
|
|
4147
|
-
created:
|
|
4148
|
-
updated:
|
|
4147
|
+
created: string;
|
|
4148
|
+
updated: string | null;
|
|
4149
4149
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
4150
4150
|
objectType: "asset";
|
|
4151
4151
|
name: string;
|
|
@@ -4181,8 +4181,8 @@ declare const updateEntrySchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.obj
|
|
|
4181
4181
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
4182
4182
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
4183
4183
|
id: string;
|
|
4184
|
-
created:
|
|
4185
|
-
updated:
|
|
4184
|
+
created: string;
|
|
4185
|
+
updated: string | null;
|
|
4186
4186
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
4187
4187
|
objectType: "asset";
|
|
4188
4188
|
name: string;
|
|
@@ -4218,8 +4218,8 @@ declare const updateEntrySchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.obj
|
|
|
4218
4218
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
4219
4219
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
4220
4220
|
id: string;
|
|
4221
|
-
created:
|
|
4222
|
-
updated:
|
|
4221
|
+
created: string;
|
|
4222
|
+
updated: string | null;
|
|
4223
4223
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
4224
4224
|
objectType: "asset";
|
|
4225
4225
|
name: string;
|
|
@@ -4261,8 +4261,8 @@ type CountEntriesProps = z.infer<typeof countEntriesSchema>;
|
|
|
4261
4261
|
|
|
4262
4262
|
declare const collectionFileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
4263
4263
|
id: z.ZodReadonly<z.ZodString>;
|
|
4264
|
-
created: z.ZodReadonly<z.
|
|
4265
|
-
updated: z.ZodNullable<z.
|
|
4264
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
4265
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
4266
4266
|
}, {
|
|
4267
4267
|
objectType: z.ZodReadonly<z.ZodLiteral<"collection">>;
|
|
4268
4268
|
name: z.ZodObject<{
|
|
@@ -4830,8 +4830,8 @@ declare const collectionFileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4830
4830
|
}>]>, "many">;
|
|
4831
4831
|
}>, "strip", z.ZodTypeAny, {
|
|
4832
4832
|
id: string;
|
|
4833
|
-
created:
|
|
4834
|
-
updated:
|
|
4833
|
+
created: string;
|
|
4834
|
+
updated: string | null;
|
|
4835
4835
|
objectType: "collection";
|
|
4836
4836
|
name: {
|
|
4837
4837
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -5012,8 +5012,8 @@ declare const collectionFileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5012
5012
|
})[];
|
|
5013
5013
|
}, {
|
|
5014
5014
|
id: string;
|
|
5015
|
-
created:
|
|
5016
|
-
updated:
|
|
5015
|
+
created: string;
|
|
5016
|
+
updated: string | null;
|
|
5017
5017
|
objectType: "collection";
|
|
5018
5018
|
name: {
|
|
5019
5019
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -5196,8 +5196,8 @@ declare const collectionFileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5196
5196
|
type CollectionFile = z.infer<typeof collectionFileSchema>;
|
|
5197
5197
|
declare const collectionSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
5198
5198
|
id: z.ZodReadonly<z.ZodString>;
|
|
5199
|
-
created: z.ZodReadonly<z.
|
|
5200
|
-
updated: z.ZodNullable<z.
|
|
5199
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
5200
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
5201
5201
|
}, {
|
|
5202
5202
|
objectType: z.ZodReadonly<z.ZodLiteral<"collection">>;
|
|
5203
5203
|
name: z.ZodObject<{
|
|
@@ -5765,8 +5765,8 @@ declare const collectionSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5765
5765
|
}>]>, "many">;
|
|
5766
5766
|
}>, {}>, "strip", z.ZodTypeAny, {
|
|
5767
5767
|
id: string;
|
|
5768
|
-
created:
|
|
5769
|
-
updated:
|
|
5768
|
+
created: string;
|
|
5769
|
+
updated: string | null;
|
|
5770
5770
|
objectType: "collection";
|
|
5771
5771
|
name: {
|
|
5772
5772
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -5947,8 +5947,8 @@ declare const collectionSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5947
5947
|
})[];
|
|
5948
5948
|
}, {
|
|
5949
5949
|
id: string;
|
|
5950
|
-
created:
|
|
5951
|
-
updated:
|
|
5950
|
+
created: string;
|
|
5951
|
+
updated: string | null;
|
|
5952
5952
|
objectType: "collection";
|
|
5953
5953
|
name: {
|
|
5954
5954
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -6131,8 +6131,8 @@ declare const collectionSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6131
6131
|
type Collection = z.infer<typeof collectionSchema>;
|
|
6132
6132
|
declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6133
6133
|
id: z.ZodReadonly<z.ZodString>;
|
|
6134
|
-
created: z.ZodReadonly<z.
|
|
6135
|
-
updated: z.ZodNullable<z.
|
|
6134
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
6135
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
6136
6136
|
}, {
|
|
6137
6137
|
objectType: z.ZodReadonly<z.ZodLiteral<"collection">>;
|
|
6138
6138
|
name: z.ZodObject<{
|
|
@@ -6701,8 +6701,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
6701
6701
|
}>, {}>, {
|
|
6702
6702
|
entries: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6703
6703
|
id: z.ZodReadonly<z.ZodString>;
|
|
6704
|
-
created: z.ZodReadonly<z.
|
|
6705
|
-
updated: z.ZodNullable<z.
|
|
6704
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
6705
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
6706
6706
|
}, {
|
|
6707
6707
|
objectType: z.ZodReadonly<z.ZodLiteral<"entry">>;
|
|
6708
6708
|
values: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -6916,8 +6916,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
6916
6916
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
6917
6917
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
6918
6918
|
id: string;
|
|
6919
|
-
created:
|
|
6920
|
-
updated:
|
|
6919
|
+
created: string;
|
|
6920
|
+
updated: string | null;
|
|
6921
6921
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
6922
6922
|
objectType: "asset";
|
|
6923
6923
|
name: string;
|
|
@@ -6928,8 +6928,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
6928
6928
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
6929
6929
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
6930
6930
|
id: string;
|
|
6931
|
-
created:
|
|
6932
|
-
updated:
|
|
6931
|
+
created: string;
|
|
6932
|
+
updated: string | null;
|
|
6933
6933
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
6934
6934
|
objectType: "asset";
|
|
6935
6935
|
name: string;
|
|
@@ -6945,8 +6945,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
6945
6945
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
6946
6946
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
6947
6947
|
id: string;
|
|
6948
|
-
created:
|
|
6949
|
-
updated:
|
|
6948
|
+
created: string;
|
|
6949
|
+
updated: string | null;
|
|
6950
6950
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
6951
6951
|
objectType: "asset";
|
|
6952
6952
|
name: string;
|
|
@@ -6962,8 +6962,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
6962
6962
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
6963
6963
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
6964
6964
|
id: string;
|
|
6965
|
-
created:
|
|
6966
|
-
updated:
|
|
6965
|
+
created: string;
|
|
6966
|
+
updated: string | null;
|
|
6967
6967
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
6968
6968
|
objectType: "asset";
|
|
6969
6969
|
name: string;
|
|
@@ -6996,8 +6996,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
6996
6996
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
6997
6997
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
6998
6998
|
id: string;
|
|
6999
|
-
created:
|
|
7000
|
-
updated:
|
|
6999
|
+
created: string;
|
|
7000
|
+
updated: string | null;
|
|
7001
7001
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
7002
7002
|
objectType: "asset";
|
|
7003
7003
|
name: string;
|
|
@@ -7007,8 +7007,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
7007
7007
|
} | Entry)[]>>;
|
|
7008
7008
|
})[];
|
|
7009
7009
|
id: string;
|
|
7010
|
-
created:
|
|
7011
|
-
updated:
|
|
7010
|
+
created: string;
|
|
7011
|
+
updated: string | null;
|
|
7012
7012
|
objectType: "entry";
|
|
7013
7013
|
}, {
|
|
7014
7014
|
values: ({
|
|
@@ -7034,8 +7034,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
7034
7034
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
7035
7035
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
7036
7036
|
id: string;
|
|
7037
|
-
created:
|
|
7038
|
-
updated:
|
|
7037
|
+
created: string;
|
|
7038
|
+
updated: string | null;
|
|
7039
7039
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
7040
7040
|
objectType: "asset";
|
|
7041
7041
|
name: string;
|
|
@@ -7045,8 +7045,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
7045
7045
|
} | Entry)[]>>;
|
|
7046
7046
|
})[];
|
|
7047
7047
|
id: string;
|
|
7048
|
-
created:
|
|
7049
|
-
updated:
|
|
7048
|
+
created: string;
|
|
7049
|
+
updated: string | null;
|
|
7050
7050
|
objectType: "entry";
|
|
7051
7051
|
}>, "many">;
|
|
7052
7052
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7074,8 +7074,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
7074
7074
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
7075
7075
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
7076
7076
|
id: string;
|
|
7077
|
-
created:
|
|
7078
|
-
updated:
|
|
7077
|
+
created: string;
|
|
7078
|
+
updated: string | null;
|
|
7079
7079
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
7080
7080
|
objectType: "asset";
|
|
7081
7081
|
name: string;
|
|
@@ -7085,13 +7085,13 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
7085
7085
|
} | Entry)[]>>;
|
|
7086
7086
|
})[];
|
|
7087
7087
|
id: string;
|
|
7088
|
-
created:
|
|
7089
|
-
updated:
|
|
7088
|
+
created: string;
|
|
7089
|
+
updated: string | null;
|
|
7090
7090
|
objectType: "entry";
|
|
7091
7091
|
}[];
|
|
7092
7092
|
id: string;
|
|
7093
|
-
created:
|
|
7094
|
-
updated:
|
|
7093
|
+
created: string;
|
|
7094
|
+
updated: string | null;
|
|
7095
7095
|
objectType: "collection";
|
|
7096
7096
|
name: {
|
|
7097
7097
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -7295,8 +7295,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
7295
7295
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
7296
7296
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
7297
7297
|
id: string;
|
|
7298
|
-
created:
|
|
7299
|
-
updated:
|
|
7298
|
+
created: string;
|
|
7299
|
+
updated: string | null;
|
|
7300
7300
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
7301
7301
|
objectType: "asset";
|
|
7302
7302
|
name: string;
|
|
@@ -7306,13 +7306,13 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
7306
7306
|
} | Entry)[]>>;
|
|
7307
7307
|
})[];
|
|
7308
7308
|
id: string;
|
|
7309
|
-
created:
|
|
7310
|
-
updated:
|
|
7309
|
+
created: string;
|
|
7310
|
+
updated: string | null;
|
|
7311
7311
|
objectType: "entry";
|
|
7312
7312
|
}[];
|
|
7313
7313
|
id: string;
|
|
7314
|
-
created:
|
|
7315
|
-
updated:
|
|
7314
|
+
created: string;
|
|
7315
|
+
updated: string | null;
|
|
7316
7316
|
objectType: "collection";
|
|
7317
7317
|
name: {
|
|
7318
7318
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -7495,8 +7495,8 @@ declare const collectionExportSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
7495
7495
|
type CollectionExport = z.infer<typeof collectionExportSchema>;
|
|
7496
7496
|
declare const createCollectionSchema: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
7497
7497
|
id: z.ZodReadonly<z.ZodString>;
|
|
7498
|
-
created: z.ZodReadonly<z.
|
|
7499
|
-
updated: z.ZodNullable<z.
|
|
7498
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
7499
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
7500
7500
|
}, {
|
|
7501
7501
|
objectType: z.ZodReadonly<z.ZodLiteral<"collection">>;
|
|
7502
7502
|
name: z.ZodObject<{
|
|
@@ -8437,8 +8437,8 @@ declare const readCollectionSchema: z.ZodObject<{
|
|
|
8437
8437
|
type ReadCollectionProps = z.infer<typeof readCollectionSchema>;
|
|
8438
8438
|
declare const updateCollectionSchema: z.ZodObject<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<{
|
|
8439
8439
|
id: z.ZodReadonly<z.ZodString>;
|
|
8440
|
-
created: z.ZodReadonly<z.
|
|
8441
|
-
updated: z.ZodNullable<z.
|
|
8440
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
8441
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
8442
8442
|
}, {
|
|
8443
8443
|
objectType: z.ZodReadonly<z.ZodLiteral<"collection">>;
|
|
8444
8444
|
name: z.ZodObject<{
|
|
@@ -9492,21 +9492,21 @@ declare const baseFileSchema: z.ZodObject<{
|
|
|
9492
9492
|
*/
|
|
9493
9493
|
id: z.ZodReadonly<z.ZodString>;
|
|
9494
9494
|
/**
|
|
9495
|
-
* The
|
|
9495
|
+
* The datetime of the file being created is set by the service of "objectType" while creating it
|
|
9496
9496
|
*/
|
|
9497
|
-
created: z.ZodReadonly<z.
|
|
9497
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
9498
9498
|
/**
|
|
9499
|
-
* The
|
|
9499
|
+
* The datetime of the file being updated is set by the service of "objectType" while updating it
|
|
9500
9500
|
*/
|
|
9501
|
-
updated: z.ZodNullable<z.
|
|
9501
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
9502
9502
|
}, "strip", z.ZodTypeAny, {
|
|
9503
9503
|
id: string;
|
|
9504
|
-
created:
|
|
9505
|
-
updated:
|
|
9504
|
+
created: string;
|
|
9505
|
+
updated: string | null;
|
|
9506
9506
|
}, {
|
|
9507
9507
|
id: string;
|
|
9508
|
-
created:
|
|
9509
|
-
updated:
|
|
9508
|
+
created: string;
|
|
9509
|
+
updated: string | null;
|
|
9510
9510
|
}>;
|
|
9511
9511
|
type BaseFile = z.infer<typeof baseFileSchema>;
|
|
9512
9512
|
declare const baseFileWithLanguageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -9517,13 +9517,13 @@ declare const baseFileWithLanguageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9517
9517
|
*/
|
|
9518
9518
|
id: z.ZodReadonly<z.ZodString>;
|
|
9519
9519
|
/**
|
|
9520
|
-
* The
|
|
9520
|
+
* The datetime of the file being created is set by the service of "objectType" while creating it
|
|
9521
9521
|
*/
|
|
9522
|
-
created: z.ZodReadonly<z.
|
|
9522
|
+
created: z.ZodReadonly<z.ZodString>;
|
|
9523
9523
|
/**
|
|
9524
|
-
* The
|
|
9524
|
+
* The datetime of the file being updated is set by the service of "objectType" while updating it
|
|
9525
9525
|
*/
|
|
9526
|
-
updated: z.ZodNullable<z.
|
|
9526
|
+
updated: z.ZodNullable<z.ZodString>;
|
|
9527
9527
|
}, {
|
|
9528
9528
|
/**
|
|
9529
9529
|
* The language of the file
|
|
@@ -9536,13 +9536,13 @@ declare const baseFileWithLanguageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9536
9536
|
language: z.ZodReadonly<z.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
9537
9537
|
}>, "strip", z.ZodTypeAny, {
|
|
9538
9538
|
id: string;
|
|
9539
|
-
created:
|
|
9540
|
-
updated:
|
|
9539
|
+
created: string;
|
|
9540
|
+
updated: string | null;
|
|
9541
9541
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
9542
9542
|
}, {
|
|
9543
9543
|
id: string;
|
|
9544
|
-
created:
|
|
9545
|
-
updated:
|
|
9544
|
+
created: string;
|
|
9545
|
+
updated: string | null;
|
|
9546
9546
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
9547
9547
|
}>;
|
|
9548
9548
|
type BaseFileWithLanguage = z.infer<typeof baseFileWithLanguageSchema>;
|
|
@@ -9595,25 +9595,25 @@ declare const gitCommitSchema: z$1.ZodObject<{
|
|
|
9595
9595
|
email: string;
|
|
9596
9596
|
name: string;
|
|
9597
9597
|
}>;
|
|
9598
|
-
|
|
9598
|
+
datetime: z$1.ZodString;
|
|
9599
9599
|
tag: z$1.ZodNullable<z$1.ZodString>;
|
|
9600
9600
|
}, "strip", z$1.ZodTypeAny, {
|
|
9601
9601
|
message: string;
|
|
9602
|
+
datetime: string;
|
|
9602
9603
|
hash: string;
|
|
9603
9604
|
author: {
|
|
9604
9605
|
email: string;
|
|
9605
9606
|
name: string;
|
|
9606
9607
|
};
|
|
9607
|
-
timestamp: number;
|
|
9608
9608
|
tag: string | null;
|
|
9609
9609
|
}, {
|
|
9610
9610
|
message: string;
|
|
9611
|
+
datetime: string;
|
|
9611
9612
|
hash: string;
|
|
9612
9613
|
author: {
|
|
9613
9614
|
email: string;
|
|
9614
9615
|
name: string;
|
|
9615
9616
|
};
|
|
9616
|
-
timestamp: number;
|
|
9617
9617
|
tag: string | null;
|
|
9618
9618
|
}>;
|
|
9619
9619
|
type GitCommit = z$1.infer<typeof gitCommitSchema>;
|
|
@@ -9733,23 +9733,23 @@ declare const gitTagSchema: z$1.ZodObject<{
|
|
|
9733
9733
|
email: string;
|
|
9734
9734
|
name: string;
|
|
9735
9735
|
}>;
|
|
9736
|
-
|
|
9736
|
+
datetime: z$1.ZodString;
|
|
9737
9737
|
}, "strip", z$1.ZodTypeAny, {
|
|
9738
9738
|
message: string;
|
|
9739
|
+
datetime: string;
|
|
9739
9740
|
id: string;
|
|
9740
9741
|
author: {
|
|
9741
9742
|
email: string;
|
|
9742
9743
|
name: string;
|
|
9743
9744
|
};
|
|
9744
|
-
timestamp: number;
|
|
9745
9745
|
}, {
|
|
9746
9746
|
message: string;
|
|
9747
|
+
datetime: string;
|
|
9747
9748
|
id: string;
|
|
9748
9749
|
author: {
|
|
9749
9750
|
email: string;
|
|
9750
9751
|
name: string;
|
|
9751
9752
|
};
|
|
9752
|
-
timestamp: number;
|
|
9753
9753
|
}>;
|
|
9754
9754
|
type GitTag = z$1.infer<typeof gitTagSchema>;
|
|
9755
9755
|
declare const createGitTagSchema: z$1.ZodObject<z$1.objectUtil.extendShape<Pick<{
|
|
@@ -9765,7 +9765,7 @@ declare const createGitTagSchema: z$1.ZodObject<z$1.objectUtil.extendShape<Pick<
|
|
|
9765
9765
|
email: string;
|
|
9766
9766
|
name: string;
|
|
9767
9767
|
}>;
|
|
9768
|
-
|
|
9768
|
+
datetime: z$1.ZodString;
|
|
9769
9769
|
}, "message">, {
|
|
9770
9770
|
path: z$1.ZodString;
|
|
9771
9771
|
hash: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -9839,8 +9839,8 @@ declare const projectFolderSchema: z$1.ZodEnum<["assets", "collections", "shared
|
|
|
9839
9839
|
type ProjectFolder = z$1.infer<typeof projectFolderSchema>;
|
|
9840
9840
|
declare const projectFileSchema: z$1.ZodObject<z$1.objectUtil.extendShape<{
|
|
9841
9841
|
id: z$1.ZodReadonly<z$1.ZodString>;
|
|
9842
|
-
created: z$1.ZodReadonly<z$1.
|
|
9843
|
-
updated: z$1.ZodNullable<z$1.
|
|
9842
|
+
created: z$1.ZodReadonly<z$1.ZodString>;
|
|
9843
|
+
updated: z$1.ZodNullable<z$1.ZodString>;
|
|
9844
9844
|
}, {
|
|
9845
9845
|
objectType: z$1.ZodReadonly<z$1.ZodLiteral<"project">>;
|
|
9846
9846
|
coreVersion: z$1.ZodString;
|
|
@@ -9874,8 +9874,8 @@ declare const projectFileSchema: z$1.ZodObject<z$1.objectUtil.extendShape<{
|
|
|
9874
9874
|
version: string;
|
|
9875
9875
|
status: "foo" | "bar" | "todo";
|
|
9876
9876
|
id: string;
|
|
9877
|
-
created:
|
|
9878
|
-
updated:
|
|
9877
|
+
created: string;
|
|
9878
|
+
updated: string | null;
|
|
9879
9879
|
objectType: "project";
|
|
9880
9880
|
name: string;
|
|
9881
9881
|
description: string;
|
|
@@ -9890,8 +9890,8 @@ declare const projectFileSchema: z$1.ZodObject<z$1.objectUtil.extendShape<{
|
|
|
9890
9890
|
version: string;
|
|
9891
9891
|
status: "foo" | "bar" | "todo";
|
|
9892
9892
|
id: string;
|
|
9893
|
-
created:
|
|
9894
|
-
updated:
|
|
9893
|
+
created: string;
|
|
9894
|
+
updated: string | null;
|
|
9895
9895
|
objectType: "project";
|
|
9896
9896
|
name: string;
|
|
9897
9897
|
description: string;
|
|
@@ -9906,8 +9906,8 @@ declare const projectFileSchema: z$1.ZodObject<z$1.objectUtil.extendShape<{
|
|
|
9906
9906
|
type ProjectFile = z$1.infer<typeof projectFileSchema>;
|
|
9907
9907
|
declare const projectSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<{
|
|
9908
9908
|
id: z$1.ZodReadonly<z$1.ZodString>;
|
|
9909
|
-
created: z$1.ZodReadonly<z$1.
|
|
9910
|
-
updated: z$1.ZodNullable<z$1.
|
|
9909
|
+
created: z$1.ZodReadonly<z$1.ZodString>;
|
|
9910
|
+
updated: z$1.ZodNullable<z$1.ZodString>;
|
|
9911
9911
|
}, {
|
|
9912
9912
|
objectType: z$1.ZodReadonly<z$1.ZodLiteral<"project">>;
|
|
9913
9913
|
coreVersion: z$1.ZodString;
|
|
@@ -9941,8 +9941,8 @@ declare const projectSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.object
|
|
|
9941
9941
|
version: string;
|
|
9942
9942
|
status: "foo" | "bar" | "todo";
|
|
9943
9943
|
id: string;
|
|
9944
|
-
created:
|
|
9945
|
-
updated:
|
|
9944
|
+
created: string;
|
|
9945
|
+
updated: string | null;
|
|
9946
9946
|
objectType: "project";
|
|
9947
9947
|
name: string;
|
|
9948
9948
|
description: string;
|
|
@@ -9957,8 +9957,8 @@ declare const projectSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.object
|
|
|
9957
9957
|
version: string;
|
|
9958
9958
|
status: "foo" | "bar" | "todo";
|
|
9959
9959
|
id: string;
|
|
9960
|
-
created:
|
|
9961
|
-
updated:
|
|
9960
|
+
created: string;
|
|
9961
|
+
updated: string | null;
|
|
9962
9962
|
objectType: "project";
|
|
9963
9963
|
name: string;
|
|
9964
9964
|
description: string;
|
|
@@ -9973,8 +9973,8 @@ declare const projectSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.object
|
|
|
9973
9973
|
type Project = z$1.infer<typeof projectSchema>;
|
|
9974
9974
|
declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<{
|
|
9975
9975
|
id: z$1.ZodReadonly<z$1.ZodString>;
|
|
9976
|
-
created: z$1.ZodReadonly<z$1.
|
|
9977
|
-
updated: z$1.ZodNullable<z$1.
|
|
9976
|
+
created: z$1.ZodReadonly<z$1.ZodString>;
|
|
9977
|
+
updated: z$1.ZodNullable<z$1.ZodString>;
|
|
9978
9978
|
}, {
|
|
9979
9979
|
objectType: z$1.ZodReadonly<z$1.ZodLiteral<"project">>;
|
|
9980
9980
|
coreVersion: z$1.ZodString;
|
|
@@ -10007,8 +10007,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10007
10007
|
}>, {}>, {
|
|
10008
10008
|
assets: z$1.ZodArray<z$1.ZodObject<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<{
|
|
10009
10009
|
id: z$1.ZodReadonly<z$1.ZodString>;
|
|
10010
|
-
created: z$1.ZodReadonly<z$1.
|
|
10011
|
-
updated: z$1.ZodNullable<z$1.
|
|
10010
|
+
created: z$1.ZodReadonly<z$1.ZodString>;
|
|
10011
|
+
updated: z$1.ZodNullable<z$1.ZodString>;
|
|
10012
10012
|
}, {
|
|
10013
10013
|
language: z$1.ZodReadonly<z$1.ZodEnum<["bg", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "hu", "it", "ja", "lt", "lv", "nl", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "zh"]>>;
|
|
10014
10014
|
}>, {
|
|
@@ -10024,8 +10024,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10024
10024
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10025
10025
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10026
10026
|
id: string;
|
|
10027
|
-
created:
|
|
10028
|
-
updated:
|
|
10027
|
+
created: string;
|
|
10028
|
+
updated: string | null;
|
|
10029
10029
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10030
10030
|
objectType: "asset";
|
|
10031
10031
|
name: string;
|
|
@@ -10036,8 +10036,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10036
10036
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10037
10037
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10038
10038
|
id: string;
|
|
10039
|
-
created:
|
|
10040
|
-
updated:
|
|
10039
|
+
created: string;
|
|
10040
|
+
updated: string | null;
|
|
10041
10041
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10042
10042
|
objectType: "asset";
|
|
10043
10043
|
name: string;
|
|
@@ -10047,8 +10047,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10047
10047
|
}>, "many">;
|
|
10048
10048
|
collections: z$1.ZodArray<z$1.ZodObject<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<{
|
|
10049
10049
|
id: z$1.ZodReadonly<z$1.ZodString>;
|
|
10050
|
-
created: z$1.ZodReadonly<z$1.
|
|
10051
|
-
updated: z$1.ZodNullable<z$1.
|
|
10050
|
+
created: z$1.ZodReadonly<z$1.ZodString>;
|
|
10051
|
+
updated: z$1.ZodNullable<z$1.ZodString>;
|
|
10052
10052
|
}, {
|
|
10053
10053
|
objectType: z$1.ZodReadonly<z$1.ZodLiteral<"collection">>;
|
|
10054
10054
|
name: z$1.ZodObject<{
|
|
@@ -10617,8 +10617,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10617
10617
|
}>, {}>, {
|
|
10618
10618
|
entries: z$1.ZodArray<z$1.ZodObject<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<z$1.objectUtil.extendShape<{
|
|
10619
10619
|
id: z$1.ZodReadonly<z$1.ZodString>;
|
|
10620
|
-
created: z$1.ZodReadonly<z$1.
|
|
10621
|
-
updated: z$1.ZodNullable<z$1.
|
|
10620
|
+
created: z$1.ZodReadonly<z$1.ZodString>;
|
|
10621
|
+
updated: z$1.ZodNullable<z$1.ZodString>;
|
|
10622
10622
|
}, {
|
|
10623
10623
|
objectType: z$1.ZodReadonly<z$1.ZodLiteral<"entry">>;
|
|
10624
10624
|
values: z$1.ZodArray<z$1.ZodUnion<[z$1.ZodUnion<[z$1.ZodObject<z$1.objectUtil.extendShape<{
|
|
@@ -10832,8 +10832,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10832
10832
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10833
10833
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10834
10834
|
id: string;
|
|
10835
|
-
created:
|
|
10836
|
-
updated:
|
|
10835
|
+
created: string;
|
|
10836
|
+
updated: string | null;
|
|
10837
10837
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10838
10838
|
objectType: "asset";
|
|
10839
10839
|
name: string;
|
|
@@ -10844,8 +10844,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10844
10844
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10845
10845
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10846
10846
|
id: string;
|
|
10847
|
-
created:
|
|
10848
|
-
updated:
|
|
10847
|
+
created: string;
|
|
10848
|
+
updated: string | null;
|
|
10849
10849
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10850
10850
|
objectType: "asset";
|
|
10851
10851
|
name: string;
|
|
@@ -10861,8 +10861,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10861
10861
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10862
10862
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10863
10863
|
id: string;
|
|
10864
|
-
created:
|
|
10865
|
-
updated:
|
|
10864
|
+
created: string;
|
|
10865
|
+
updated: string | null;
|
|
10866
10866
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10867
10867
|
objectType: "asset";
|
|
10868
10868
|
name: string;
|
|
@@ -10878,8 +10878,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10878
10878
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10879
10879
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10880
10880
|
id: string;
|
|
10881
|
-
created:
|
|
10882
|
-
updated:
|
|
10881
|
+
created: string;
|
|
10882
|
+
updated: string | null;
|
|
10883
10883
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10884
10884
|
objectType: "asset";
|
|
10885
10885
|
name: string;
|
|
@@ -10912,8 +10912,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10912
10912
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10913
10913
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10914
10914
|
id: string;
|
|
10915
|
-
created:
|
|
10916
|
-
updated:
|
|
10915
|
+
created: string;
|
|
10916
|
+
updated: string | null;
|
|
10917
10917
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10918
10918
|
objectType: "asset";
|
|
10919
10919
|
name: string;
|
|
@@ -10923,8 +10923,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10923
10923
|
} | Entry)[]>>;
|
|
10924
10924
|
})[];
|
|
10925
10925
|
id: string;
|
|
10926
|
-
created:
|
|
10927
|
-
updated:
|
|
10926
|
+
created: string;
|
|
10927
|
+
updated: string | null;
|
|
10928
10928
|
objectType: "entry";
|
|
10929
10929
|
}, {
|
|
10930
10930
|
values: ({
|
|
@@ -10950,8 +10950,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10950
10950
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10951
10951
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10952
10952
|
id: string;
|
|
10953
|
-
created:
|
|
10954
|
-
updated:
|
|
10953
|
+
created: string;
|
|
10954
|
+
updated: string | null;
|
|
10955
10955
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10956
10956
|
objectType: "asset";
|
|
10957
10957
|
name: string;
|
|
@@ -10961,8 +10961,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10961
10961
|
} | Entry)[]>>;
|
|
10962
10962
|
})[];
|
|
10963
10963
|
id: string;
|
|
10964
|
-
created:
|
|
10965
|
-
updated:
|
|
10964
|
+
created: string;
|
|
10965
|
+
updated: string | null;
|
|
10966
10966
|
objectType: "entry";
|
|
10967
10967
|
}>, "many">;
|
|
10968
10968
|
}>, "strip", z$1.ZodTypeAny, {
|
|
@@ -10990,8 +10990,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
10990
10990
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
10991
10991
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
10992
10992
|
id: string;
|
|
10993
|
-
created:
|
|
10994
|
-
updated:
|
|
10993
|
+
created: string;
|
|
10994
|
+
updated: string | null;
|
|
10995
10995
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
10996
10996
|
objectType: "asset";
|
|
10997
10997
|
name: string;
|
|
@@ -11001,13 +11001,13 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11001
11001
|
} | Entry)[]>>;
|
|
11002
11002
|
})[];
|
|
11003
11003
|
id: string;
|
|
11004
|
-
created:
|
|
11005
|
-
updated:
|
|
11004
|
+
created: string;
|
|
11005
|
+
updated: string | null;
|
|
11006
11006
|
objectType: "entry";
|
|
11007
11007
|
}[];
|
|
11008
11008
|
id: string;
|
|
11009
|
-
created:
|
|
11010
|
-
updated:
|
|
11009
|
+
created: string;
|
|
11010
|
+
updated: string | null;
|
|
11011
11011
|
objectType: "collection";
|
|
11012
11012
|
name: {
|
|
11013
11013
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -11211,8 +11211,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11211
11211
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
11212
11212
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
11213
11213
|
id: string;
|
|
11214
|
-
created:
|
|
11215
|
-
updated:
|
|
11214
|
+
created: string;
|
|
11215
|
+
updated: string | null;
|
|
11216
11216
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
11217
11217
|
objectType: "asset";
|
|
11218
11218
|
name: string;
|
|
@@ -11222,13 +11222,13 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11222
11222
|
} | Entry)[]>>;
|
|
11223
11223
|
})[];
|
|
11224
11224
|
id: string;
|
|
11225
|
-
created:
|
|
11226
|
-
updated:
|
|
11225
|
+
created: string;
|
|
11226
|
+
updated: string | null;
|
|
11227
11227
|
objectType: "entry";
|
|
11228
11228
|
}[];
|
|
11229
11229
|
id: string;
|
|
11230
|
-
created:
|
|
11231
|
-
updated:
|
|
11230
|
+
created: string;
|
|
11231
|
+
updated: string | null;
|
|
11232
11232
|
objectType: "collection";
|
|
11233
11233
|
name: {
|
|
11234
11234
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -11412,8 +11412,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11412
11412
|
version: string;
|
|
11413
11413
|
status: "foo" | "bar" | "todo";
|
|
11414
11414
|
id: string;
|
|
11415
|
-
created:
|
|
11416
|
-
updated:
|
|
11415
|
+
created: string;
|
|
11416
|
+
updated: string | null;
|
|
11417
11417
|
objectType: "project";
|
|
11418
11418
|
name: string;
|
|
11419
11419
|
description: string;
|
|
@@ -11421,8 +11421,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11421
11421
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
11422
11422
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
11423
11423
|
id: string;
|
|
11424
|
-
created:
|
|
11425
|
-
updated:
|
|
11424
|
+
created: string;
|
|
11425
|
+
updated: string | null;
|
|
11426
11426
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
11427
11427
|
objectType: "asset";
|
|
11428
11428
|
name: string;
|
|
@@ -11455,8 +11455,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11455
11455
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
11456
11456
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
11457
11457
|
id: string;
|
|
11458
|
-
created:
|
|
11459
|
-
updated:
|
|
11458
|
+
created: string;
|
|
11459
|
+
updated: string | null;
|
|
11460
11460
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
11461
11461
|
objectType: "asset";
|
|
11462
11462
|
name: string;
|
|
@@ -11466,13 +11466,13 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11466
11466
|
} | Entry)[]>>;
|
|
11467
11467
|
})[];
|
|
11468
11468
|
id: string;
|
|
11469
|
-
created:
|
|
11470
|
-
updated:
|
|
11469
|
+
created: string;
|
|
11470
|
+
updated: string | null;
|
|
11471
11471
|
objectType: "entry";
|
|
11472
11472
|
}[];
|
|
11473
11473
|
id: string;
|
|
11474
|
-
created:
|
|
11475
|
-
updated:
|
|
11474
|
+
created: string;
|
|
11475
|
+
updated: string | null;
|
|
11476
11476
|
objectType: "collection";
|
|
11477
11477
|
name: {
|
|
11478
11478
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -11663,8 +11663,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11663
11663
|
version: string;
|
|
11664
11664
|
status: "foo" | "bar" | "todo";
|
|
11665
11665
|
id: string;
|
|
11666
|
-
created:
|
|
11667
|
-
updated:
|
|
11666
|
+
created: string;
|
|
11667
|
+
updated: string | null;
|
|
11668
11668
|
objectType: "project";
|
|
11669
11669
|
name: string;
|
|
11670
11670
|
description: string;
|
|
@@ -11672,8 +11672,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11672
11672
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
11673
11673
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
11674
11674
|
id: string;
|
|
11675
|
-
created:
|
|
11676
|
-
updated:
|
|
11675
|
+
created: string;
|
|
11676
|
+
updated: string | null;
|
|
11677
11677
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
11678
11678
|
objectType: "asset";
|
|
11679
11679
|
name: string;
|
|
@@ -11706,8 +11706,8 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11706
11706
|
extension: "json" | "avif" | "gif" | "jpg" | "jpeg" | "png" | "svg" | "webp" | "pdf" | "zip" | "mp4" | "webm" | "flac";
|
|
11707
11707
|
mimeType: "image/avif" | "image/gif" | "image/jpeg" | "image/png" | "image/svg+xml" | "image/webp" | "application/pdf" | "application/zip" | "video/mp4" | "video/webm" | "audio/webm" | "audio/flac";
|
|
11708
11708
|
id: string;
|
|
11709
|
-
created:
|
|
11710
|
-
updated:
|
|
11709
|
+
created: string;
|
|
11710
|
+
updated: string | null;
|
|
11711
11711
|
language: "bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh";
|
|
11712
11712
|
objectType: "asset";
|
|
11713
11713
|
name: string;
|
|
@@ -11717,13 +11717,13 @@ declare const projectExportSchema: z$1.ZodObject<z$1.objectUtil.extendShape<z$1.
|
|
|
11717
11717
|
} | Entry)[]>>;
|
|
11718
11718
|
})[];
|
|
11719
11719
|
id: string;
|
|
11720
|
-
created:
|
|
11721
|
-
updated:
|
|
11720
|
+
created: string;
|
|
11721
|
+
updated: string | null;
|
|
11722
11722
|
objectType: "entry";
|
|
11723
11723
|
}[];
|
|
11724
11724
|
id: string;
|
|
11725
|
-
created:
|
|
11726
|
-
updated:
|
|
11725
|
+
created: string;
|
|
11726
|
+
updated: string | null;
|
|
11727
11727
|
objectType: "collection";
|
|
11728
11728
|
name: {
|
|
11729
11729
|
singular: Partial<Record<"bg" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "hu" | "it" | "ja" | "lt" | "lv" | "nl" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sv" | "zh", string>>;
|
|
@@ -12039,8 +12039,8 @@ declare const projectUpgradeSchema: z$1.ZodObject<{
|
|
|
12039
12039
|
*/
|
|
12040
12040
|
run: z$1.ZodFunction<z$1.ZodTuple<[z$1.ZodObject<z$1.objectUtil.extendShape<{
|
|
12041
12041
|
id: z$1.ZodReadonly<z$1.ZodString>;
|
|
12042
|
-
created: z$1.ZodReadonly<z$1.
|
|
12043
|
-
updated: z$1.ZodNullable<z$1.
|
|
12042
|
+
created: z$1.ZodReadonly<z$1.ZodString>;
|
|
12043
|
+
updated: z$1.ZodNullable<z$1.ZodString>;
|
|
12044
12044
|
}, {
|
|
12045
12045
|
objectType: z$1.ZodReadonly<z$1.ZodLiteral<"project">>;
|
|
12046
12046
|
coreVersion: z$1.ZodString;
|
|
@@ -12074,8 +12074,8 @@ declare const projectUpgradeSchema: z$1.ZodObject<{
|
|
|
12074
12074
|
version: string;
|
|
12075
12075
|
status: "foo" | "bar" | "todo";
|
|
12076
12076
|
id: string;
|
|
12077
|
-
created:
|
|
12078
|
-
updated:
|
|
12077
|
+
created: string;
|
|
12078
|
+
updated: string | null;
|
|
12079
12079
|
objectType: "project";
|
|
12080
12080
|
name: string;
|
|
12081
12081
|
description: string;
|
|
@@ -12090,8 +12090,8 @@ declare const projectUpgradeSchema: z$1.ZodObject<{
|
|
|
12090
12090
|
version: string;
|
|
12091
12091
|
status: "foo" | "bar" | "todo";
|
|
12092
12092
|
id: string;
|
|
12093
|
-
created:
|
|
12094
|
-
updated:
|
|
12093
|
+
created: string;
|
|
12094
|
+
updated: string | null;
|
|
12095
12095
|
objectType: "project";
|
|
12096
12096
|
name: string;
|
|
12097
12097
|
description: string;
|
|
@@ -12109,8 +12109,8 @@ declare const projectUpgradeSchema: z$1.ZodObject<{
|
|
|
12109
12109
|
version: string;
|
|
12110
12110
|
status: "foo" | "bar" | "todo";
|
|
12111
12111
|
id: string;
|
|
12112
|
-
created:
|
|
12113
|
-
updated:
|
|
12112
|
+
created: string;
|
|
12113
|
+
updated: string | null;
|
|
12114
12114
|
objectType: "project";
|
|
12115
12115
|
name: string;
|
|
12116
12116
|
description: string;
|
|
@@ -12128,8 +12128,8 @@ declare const projectUpgradeSchema: z$1.ZodObject<{
|
|
|
12128
12128
|
version: string;
|
|
12129
12129
|
status: "foo" | "bar" | "todo";
|
|
12130
12130
|
id: string;
|
|
12131
|
-
created:
|
|
12132
|
-
updated:
|
|
12131
|
+
created: string;
|
|
12132
|
+
updated: string | null;
|
|
12133
12133
|
objectType: "project";
|
|
12134
12134
|
name: string;
|
|
12135
12135
|
description: string;
|
|
@@ -12606,7 +12606,7 @@ declare class GitTagService extends AbstractCrudService implements ExtendedCrudS
|
|
|
12606
12606
|
/**
|
|
12607
12607
|
* Gets all local tags or filter them by pattern
|
|
12608
12608
|
*
|
|
12609
|
-
* They are sorted by authordate of the commit, not
|
|
12609
|
+
* They are sorted by authordate of the commit, not when the tag is created.
|
|
12610
12610
|
* This ensures tags are sorted correctly in the timeline of their commits.
|
|
12611
12611
|
*
|
|
12612
12612
|
* @see https://git-scm.com/docs/git-tag#Documentation/git-tag.txt---list
|
|
@@ -12894,35 +12894,6 @@ declare class GitService {
|
|
|
12894
12894
|
*/
|
|
12895
12895
|
log(path: string, options?: Partial<GitLogOptions>): Promise<GitCommit[]>;
|
|
12896
12896
|
refNameToTagName(refName: string): string | null;
|
|
12897
|
-
/**
|
|
12898
|
-
* Returns a timestamp of given files creation
|
|
12899
|
-
*
|
|
12900
|
-
* Git only returns the timestamp the file was added,
|
|
12901
|
-
* which could be different from the file being created.
|
|
12902
|
-
* But since file operations will always be committed
|
|
12903
|
-
* immediately, this is practically the same.
|
|
12904
|
-
*
|
|
12905
|
-
* @param path Path to the repository
|
|
12906
|
-
* @param file File to get timestamp from
|
|
12907
|
-
*/
|
|
12908
|
-
getFileCreatedTimestamp(path: string, file: string): Promise<number>;
|
|
12909
|
-
/**
|
|
12910
|
-
* Returns a timestamp of the files last modification
|
|
12911
|
-
*
|
|
12912
|
-
* @param path Path to the repository
|
|
12913
|
-
* @param file File to get timestamp from
|
|
12914
|
-
*/
|
|
12915
|
-
getFileLastUpdatedTimestamp(path: string, file: string): Promise<number>;
|
|
12916
|
-
/**
|
|
12917
|
-
* Returns created and updated timestamps from given file
|
|
12918
|
-
*
|
|
12919
|
-
* @param path Path to the project
|
|
12920
|
-
* @param file Path to the file
|
|
12921
|
-
*/
|
|
12922
|
-
getFileCreatedUpdatedMeta(path: string, file: string): Promise<{
|
|
12923
|
-
created: number;
|
|
12924
|
-
updated: number;
|
|
12925
|
-
}>;
|
|
12926
12897
|
/**
|
|
12927
12898
|
* Reads the currently used version of Git
|
|
12928
12899
|
*
|
|
@@ -13181,22 +13152,22 @@ declare class ProjectService extends AbstractCrudService implements ExtendedCrud
|
|
|
13181
13152
|
getChanges(props: GetChangesProjectProps): Promise<{
|
|
13182
13153
|
behind: {
|
|
13183
13154
|
message: string;
|
|
13155
|
+
datetime: string;
|
|
13184
13156
|
hash: string;
|
|
13185
13157
|
author: {
|
|
13186
13158
|
email: string;
|
|
13187
13159
|
name: string;
|
|
13188
13160
|
};
|
|
13189
|
-
timestamp: number;
|
|
13190
13161
|
tag: string | null;
|
|
13191
13162
|
}[];
|
|
13192
13163
|
ahead: {
|
|
13193
13164
|
message: string;
|
|
13165
|
+
datetime: string;
|
|
13194
13166
|
hash: string;
|
|
13195
13167
|
author: {
|
|
13196
13168
|
email: string;
|
|
13197
13169
|
name: string;
|
|
13198
13170
|
};
|
|
13199
|
-
timestamp: number;
|
|
13200
13171
|
tag: string | null;
|
|
13201
13172
|
}[];
|
|
13202
13173
|
}>;
|
|
@@ -13323,14 +13294,19 @@ declare namespace Util {
|
|
|
13323
13294
|
*/
|
|
13324
13295
|
declare function uuid(): Uuid;
|
|
13325
13296
|
/**
|
|
13326
|
-
* Returns
|
|
13297
|
+
* Returns a string representing date and time
|
|
13298
|
+
* in a simplified format based on ISO 8601.
|
|
13299
|
+
* The timezone is always UTC.
|
|
13300
|
+
*
|
|
13301
|
+
* - If value is not given, the current date and time is used
|
|
13302
|
+
* - If value is given, it's converted to above representation and UTC timezone
|
|
13303
|
+
*
|
|
13304
|
+
* @example 'YYYY-MM-DDTHH:mm:ss.sssZ'
|
|
13327
13305
|
*
|
|
13328
|
-
*
|
|
13329
|
-
*
|
|
13330
|
-
* `Date.now()` returns the time in milliseconds,
|
|
13331
|
-
* we need to convert this into seconds.
|
|
13306
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
|
|
13307
|
+
* @see https://en.wikipedia.org/wiki/ISO_8601
|
|
13332
13308
|
*/
|
|
13333
|
-
declare function
|
|
13309
|
+
declare function datetime(value?: number | string | Date): string;
|
|
13334
13310
|
/**
|
|
13335
13311
|
* Returns the slug of given string
|
|
13336
13312
|
*/
|
|
@@ -13381,4 +13357,4 @@ declare class ElekIoCore {
|
|
|
13381
13357
|
get entries(): EntryService;
|
|
13382
13358
|
}
|
|
13383
13359
|
|
|
13384
|
-
export { type Asset, type AssetExport, type AssetFile, type AssetValueDefinition, type BaseFile, type BaseFileWithLanguage, type BaseUser, BooleanValueDefinitionBaseSchema, type CloneProjectProps, type CloudUser, type Collection, type CollectionExport, type CollectionFile, type ConstructorElekIoCoreProps, type CountAssetsProps, type CountCollectionsProps, type CountEntriesProps, type CountGitTagsProps, type CreateAssetProps, type CreateCollectionProps, type CreateEntryProps, type CreateGitTagProps, type CreateProjectProps, type CrudService, type CurrentBranchProjectProps, type DateValueDefinition, type DatetimeValueDefinition, type DeleteAssetProps, type DeleteCollectionProps, type DeleteEntryProps, type DeleteGitTagProps, type DeleteProjectProps, type DirectBooleanValue, type DirectNumberValue, type DirectStringValue, type DirectValue, type ElekIoCoreOptions, type EmailValueDefinition, type Entry, type EntryExport, type EntryFile, type EntryValueDefinition, type Environment, type ExtendedCrudService, type FileReference, type GetChangesProjectProps, type GetRemoteOriginUrlProjectProps, type GitCloneOptions, type GitCommit, type GitCommitIcon, type GitInitOptions, type GitLogOptions, type GitSignature, type GitSwitchOptions, type GitTag, type IpValueDefinition, type ListAssetsProps, type ListBranchesProjectProps, type ListCollectionsProps, type ListEntriesProps, type ListGitTagsProps, type ListProjectsProps, type LocalUser, type NumberValueDefinition, NumberValueDefinitionBaseSchema, type ObjectType, type PaginatedList, type PaginationOptions, type Project, type ProjectExport, type ProjectFile, type ProjectFolder, type ProjectSettings, type ProjectStatus, type ProjectUpgrade, type RangeValueDefinition, type ReadAssetProps, type ReadCollectionProps, type ReadEntryProps, type ReadGitTagProps, type ReadProjectProps, ReferenceValueDefinitionBaseSchema, type ReferencedValue, type ResolvedReferencedValue, type ResolvedValue, type ResolvedValueContentReference, type SearchProjectProps, type ServiceType, type SetRemoteOriginUrlProjectProps, type SetUserProps, type StringValueDefinition, StringValueDefinitionBaseSchema, type SupportedAssetExtension, type SupportedAssetMimeType, type SupportedAssetType, type SupportedIcon, type SupportedLanguage, type SwitchBranchProjectProps, type SynchronizeProjectProps, type TelephoneValueDefinition, type TextValueDefinition, type TextareaValueDefinition, type TimeValueDefinition, type ToggleValueDefinition, type TranslatableBoolean, type TranslatableNumber, type TranslatableString, type UpdateAssetProps, type UpdateCollectionProps, type UpdateEntryProps, type UpdateProjectProps, type UpgradeProjectProps, type UrlValueDefinition, type User, type UserFile, UserTypeSchema, type Uuid, type Value, type ValueContentReference, type ValueContentReferenceToAsset, type ValueContentReferenceToCollection, type ValueContentReferenceToEntry, type ValueDefinition, type ValueDefinitionBase, ValueDefinitionBaseSchema, type ValueInputType, ValueInputTypeSchema, ValueInputWidthSchema, type ValueType, ValueTypeSchema, type Version, assetExportSchema, assetFileSchema, assetSchema, assetValueDefinitionSchema, baseFileSchema, baseFileWithLanguageSchema, baseUserSchema, cloneProjectSchema, cloudUserSchema, collectionExportSchema, collectionFileSchema, collectionSchema, constructorElekIoCoreSchema, countAssetsSchema, countCollectionsSchema, countEntriesSchema, countGitTagsSchema, createAssetSchema, createCollectionSchema, createEntrySchema, createGitTagSchema, createProjectSchema, currentBranchProjectSchema,
|
|
13360
|
+
export { type Asset, type AssetExport, type AssetFile, type AssetValueDefinition, type BaseFile, type BaseFileWithLanguage, type BaseUser, BooleanValueDefinitionBaseSchema, type CloneProjectProps, type CloudUser, type Collection, type CollectionExport, type CollectionFile, type ConstructorElekIoCoreProps, type CountAssetsProps, type CountCollectionsProps, type CountEntriesProps, type CountGitTagsProps, type CreateAssetProps, type CreateCollectionProps, type CreateEntryProps, type CreateGitTagProps, type CreateProjectProps, type CrudService, type CurrentBranchProjectProps, type DateValueDefinition, type DatetimeValueDefinition, type DeleteAssetProps, type DeleteCollectionProps, type DeleteEntryProps, type DeleteGitTagProps, type DeleteProjectProps, type DirectBooleanValue, type DirectNumberValue, type DirectStringValue, type DirectValue, type ElekIoCoreOptions, type EmailValueDefinition, type Entry, type EntryExport, type EntryFile, type EntryValueDefinition, type Environment, type ExtendedCrudService, type FileReference, type GetChangesProjectProps, type GetRemoteOriginUrlProjectProps, type GitCloneOptions, type GitCommit, type GitCommitIcon, type GitInitOptions, type GitLogOptions, type GitSignature, type GitSwitchOptions, type GitTag, type IpValueDefinition, type ListAssetsProps, type ListBranchesProjectProps, type ListCollectionsProps, type ListEntriesProps, type ListGitTagsProps, type ListProjectsProps, type LocalUser, type NumberValueDefinition, NumberValueDefinitionBaseSchema, type ObjectType, type PaginatedList, type PaginationOptions, type Project, type ProjectExport, type ProjectFile, type ProjectFolder, type ProjectSettings, type ProjectStatus, type ProjectUpgrade, type RangeValueDefinition, type ReadAssetProps, type ReadCollectionProps, type ReadEntryProps, type ReadGitTagProps, type ReadProjectProps, ReferenceValueDefinitionBaseSchema, type ReferencedValue, type ResolvedReferencedValue, type ResolvedValue, type ResolvedValueContentReference, type SearchProjectProps, type ServiceType, type SetRemoteOriginUrlProjectProps, type SetUserProps, type StringValueDefinition, StringValueDefinitionBaseSchema, type SupportedAssetExtension, type SupportedAssetMimeType, type SupportedAssetType, type SupportedIcon, type SupportedLanguage, type SwitchBranchProjectProps, type SynchronizeProjectProps, type TelephoneValueDefinition, type TextValueDefinition, type TextareaValueDefinition, type TimeValueDefinition, type ToggleValueDefinition, type TranslatableBoolean, type TranslatableNumber, type TranslatableString, type UpdateAssetProps, type UpdateCollectionProps, type UpdateEntryProps, type UpdateProjectProps, type UpgradeProjectProps, type UrlValueDefinition, type User, type UserFile, UserTypeSchema, type Uuid, type Value, type ValueContentReference, type ValueContentReferenceToAsset, type ValueContentReferenceToCollection, type ValueContentReferenceToEntry, type ValueDefinition, type ValueDefinitionBase, ValueDefinitionBaseSchema, type ValueInputType, ValueInputTypeSchema, ValueInputWidthSchema, type ValueType, ValueTypeSchema, type Version, assetExportSchema, assetFileSchema, assetSchema, assetValueDefinitionSchema, baseFileSchema, baseFileWithLanguageSchema, baseUserSchema, cloneProjectSchema, cloudUserSchema, collectionExportSchema, collectionFileSchema, collectionSchema, constructorElekIoCoreSchema, countAssetsSchema, countCollectionsSchema, countEntriesSchema, countGitTagsSchema, createAssetSchema, createCollectionSchema, createEntrySchema, createGitTagSchema, createProjectSchema, currentBranchProjectSchema, dateValueDefinitionSchema, datetime, datetimeValueDefinitionSchema, ElekIoCore as default, deleteAssetSchema, deleteCollectionSchema, deleteEntrySchema, deleteGitTagSchema, deleteProjectSchema, directBooleanValueSchema, directNumberValueSchema, directStringValueSchema, directValueBaseSchema, directValueSchema, elekIoCoreOptionsSchema, emailValueDefinitionSchema, entryExportSchema, entryFileSchema, entrySchema, entryValueDefinitionSchema, environmentSchema, fileReferenceSchema, getChangesProjectSchema, getRemoteOriginUrlProjectSchema, getValueContentSchemaFromDefinition, gitCloneOptionsSchema, gitCommitIconSchema, gitCommitSchema, gitInitOptionsSchema, gitLogOptionsSchema, gitRepositoryPathSchema, gitSignatureSchema, gitSwitchOptionsSchema, gitTagSchema, ipValueDefinitionSchema, listAssetsSchema, listBranchesProjectSchema, listCollectionsSchema, listEntriesSchema, listGitTagsSchema, listProjectsSchema, localUserSchema, numberValueDefinitionSchema, objectTypeSchema, projectExportSchema, projectFileSchema, projectFolderSchema, projectSchema, projectSettingsSchema, projectStatusSchema, projectUpgradeSchema, rangeValueDefinitionSchema, readAssetSchema, readCollectionSchema, readEntrySchema, readGitTagSchema, readProjectSchema, referencedValueSchema, resolvedReferencedValueSchema, resolvedValueContentReferenceSchema, resolvedValueSchema, searchProjectSchema, serviceTypeSchema, setRemoteOriginUrlProjectSchema, setUserSchema, slug, stringValueDefinitionSchema, supportedAssetExtensionSchema, supportedAssetMimeTypeSchema, supportedAssetTypeSchema, supportedIconSchema, supportedLanguageSchema, switchBranchProjectSchema, synchronizeProjectSchema, telephoneValueDefinitionSchema, textValueDefinitionSchema, textareaValueDefinitionSchema, timeValueDefinitionSchema, toggleValueDefinitionSchema, translatableArrayOf, translatableBooleanSchema, translatableNumberSchema, translatableStringSchema, updateAssetSchema, updateCollectionSchema, updateEntrySchema, updateProjectSchema, upgradeProjectSchema, urlValueDefinitionSchema, userFileSchema, userSchema, uuid, uuidSchema, valueContentReferenceBase, valueContentReferenceSchema, valueContentReferenceToAssetSchema, valueContentReferenceToCollectionSchema, valueContentReferenceToEntrySchema, valueContentReferenceWithLanguageBase, valueDefinitionSchema, valueSchema, versionSchema };
|