@elek-io/core 0.15.3 → 0.16.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/astro/index.astro.d.mts +60 -0
- package/dist/astro/index.astro.mjs +3864 -0
- package/dist/astro/index.astro.mjs.map +1 -0
- package/dist/browser/index.browser.d.ts +158 -45
- package/dist/browser/index.browser.js +1 -1
- package/dist/browser/index.browser.js.map +1 -1
- package/dist/cli/{index.cli.js → index.cli.mjs} +292 -148
- package/dist/node/chunk-DQk6qfdC.mjs +18 -0
- package/dist/node/{index.node.d.ts → index.node.d.mts} +149 -36
- package/dist/node/{index.node.js → index.node.mjs} +122 -98
- package/dist/node/index.node.mjs.map +1 -0
- package/package.json +44 -30
- package/dist/node/chunk-Bp6m_JJh.js +0 -13
- package/dist/node/index.node.js.map +0 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __exportAll = (all, no_symbols) => {
|
|
4
|
+
let target = {};
|
|
5
|
+
for (var name in all) {
|
|
6
|
+
__defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: true
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
if (!no_symbols) {
|
|
12
|
+
__defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
13
|
+
}
|
|
14
|
+
return target;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
//#endregion
|
|
18
|
+
export { __exportAll as t };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Fs from "fs-extra";
|
|
2
2
|
import { z } from "@hono/zod-openapi";
|
|
3
3
|
import { z as z$1 } from "zod";
|
|
4
|
-
import { ExecFileOptions } from "child_process";
|
|
4
|
+
import { ExecFileOptions } from "node:child_process";
|
|
5
5
|
|
|
6
6
|
//#region src/schema/assetSchema.d.ts
|
|
7
7
|
declare const assetFileSchema: z.ZodObject<{
|
|
@@ -6569,9 +6569,9 @@ type CountEntriesProps = z.infer<typeof countEntriesSchema>;
|
|
|
6569
6569
|
//#region src/schema/fieldSchema.d.ts
|
|
6570
6570
|
declare const FieldTypeSchema: z.ZodEnum<{
|
|
6571
6571
|
number: "number";
|
|
6572
|
-
date: "date";
|
|
6573
6572
|
asset: "asset";
|
|
6574
6573
|
entry: "entry";
|
|
6574
|
+
date: "date";
|
|
6575
6575
|
datetime: "datetime";
|
|
6576
6576
|
email: "email";
|
|
6577
6577
|
text: "text";
|
|
@@ -11613,6 +11613,116 @@ declare const searchProjectSchema: z.ZodObject<{
|
|
|
11613
11613
|
type SearchProjectProps = z.infer<typeof searchProjectSchema>;
|
|
11614
11614
|
//#endregion
|
|
11615
11615
|
//#region src/schema/schemaFromFieldDefinition.d.ts
|
|
11616
|
+
declare function getTranslatableStringValueContentSchemaFromFieldDefinition(fieldDefinition: StringFieldDefinition): z.ZodRecord<z.ZodEnum<{
|
|
11617
|
+
bg: "bg";
|
|
11618
|
+
cs: "cs";
|
|
11619
|
+
da: "da";
|
|
11620
|
+
de: "de";
|
|
11621
|
+
el: "el";
|
|
11622
|
+
en: "en";
|
|
11623
|
+
es: "es";
|
|
11624
|
+
et: "et";
|
|
11625
|
+
fi: "fi";
|
|
11626
|
+
fr: "fr";
|
|
11627
|
+
hu: "hu";
|
|
11628
|
+
it: "it";
|
|
11629
|
+
ja: "ja";
|
|
11630
|
+
lt: "lt";
|
|
11631
|
+
lv: "lv";
|
|
11632
|
+
nl: "nl";
|
|
11633
|
+
pl: "pl";
|
|
11634
|
+
pt: "pt";
|
|
11635
|
+
ro: "ro";
|
|
11636
|
+
ru: "ru";
|
|
11637
|
+
sk: "sk";
|
|
11638
|
+
sl: "sl";
|
|
11639
|
+
sv: "sv";
|
|
11640
|
+
zh: "zh";
|
|
11641
|
+
}> & z.core.$partial, z.ZodString | z.ZodNullable<z.ZodString> | z.ZodEmail | z.ZodNullable<z.ZodEmail> | z.ZodURL | z.ZodNullable<z.ZodURL> | z.ZodIPv4 | z.ZodNullable<z.ZodIPv4> | z.ZodISODate | z.ZodNullable<z.ZodISODate> | z.ZodISOTime | z.ZodNullable<z.ZodISOTime> | z.ZodISODateTime | z.ZodNullable<z.ZodISODateTime> | z.ZodE164 | z.ZodNullable<z.ZodE164>>;
|
|
11642
|
+
declare function getTranslatableNumberValueContentSchemaFromFieldDefinition(fieldDefinition: NumberFieldDefinition | RangeFieldDefinition): z.ZodRecord<z.ZodEnum<{
|
|
11643
|
+
bg: "bg";
|
|
11644
|
+
cs: "cs";
|
|
11645
|
+
da: "da";
|
|
11646
|
+
de: "de";
|
|
11647
|
+
el: "el";
|
|
11648
|
+
en: "en";
|
|
11649
|
+
es: "es";
|
|
11650
|
+
et: "et";
|
|
11651
|
+
fi: "fi";
|
|
11652
|
+
fr: "fr";
|
|
11653
|
+
hu: "hu";
|
|
11654
|
+
it: "it";
|
|
11655
|
+
ja: "ja";
|
|
11656
|
+
lt: "lt";
|
|
11657
|
+
lv: "lv";
|
|
11658
|
+
nl: "nl";
|
|
11659
|
+
pl: "pl";
|
|
11660
|
+
pt: "pt";
|
|
11661
|
+
ro: "ro";
|
|
11662
|
+
ru: "ru";
|
|
11663
|
+
sk: "sk";
|
|
11664
|
+
sl: "sl";
|
|
11665
|
+
sv: "sv";
|
|
11666
|
+
zh: "zh";
|
|
11667
|
+
}> & z.core.$partial, z.ZodNumber | z.ZodNullable<z.ZodNumber>>;
|
|
11668
|
+
declare function getTranslatableBooleanValueContentSchemaFromFieldDefinition(): z.ZodRecord<z.ZodEnum<{
|
|
11669
|
+
bg: "bg";
|
|
11670
|
+
cs: "cs";
|
|
11671
|
+
da: "da";
|
|
11672
|
+
de: "de";
|
|
11673
|
+
el: "el";
|
|
11674
|
+
en: "en";
|
|
11675
|
+
es: "es";
|
|
11676
|
+
et: "et";
|
|
11677
|
+
fi: "fi";
|
|
11678
|
+
fr: "fr";
|
|
11679
|
+
hu: "hu";
|
|
11680
|
+
it: "it";
|
|
11681
|
+
ja: "ja";
|
|
11682
|
+
lt: "lt";
|
|
11683
|
+
lv: "lv";
|
|
11684
|
+
nl: "nl";
|
|
11685
|
+
pl: "pl";
|
|
11686
|
+
pt: "pt";
|
|
11687
|
+
ro: "ro";
|
|
11688
|
+
ru: "ru";
|
|
11689
|
+
sk: "sk";
|
|
11690
|
+
sl: "sl";
|
|
11691
|
+
sv: "sv";
|
|
11692
|
+
zh: "zh";
|
|
11693
|
+
}> & z.core.$partial, z.ZodBoolean>;
|
|
11694
|
+
declare function getTranslatableReferenceValueContentSchemaFromFieldDefinition(fieldDefinition: AssetFieldDefinition | EntryFieldDefinition): z.ZodRecord<z.ZodEnum<{
|
|
11695
|
+
bg: "bg";
|
|
11696
|
+
cs: "cs";
|
|
11697
|
+
da: "da";
|
|
11698
|
+
de: "de";
|
|
11699
|
+
el: "el";
|
|
11700
|
+
en: "en";
|
|
11701
|
+
es: "es";
|
|
11702
|
+
et: "et";
|
|
11703
|
+
fi: "fi";
|
|
11704
|
+
fr: "fr";
|
|
11705
|
+
hu: "hu";
|
|
11706
|
+
it: "it";
|
|
11707
|
+
ja: "ja";
|
|
11708
|
+
lt: "lt";
|
|
11709
|
+
lv: "lv";
|
|
11710
|
+
nl: "nl";
|
|
11711
|
+
pl: "pl";
|
|
11712
|
+
pt: "pt";
|
|
11713
|
+
ro: "ro";
|
|
11714
|
+
ru: "ru";
|
|
11715
|
+
sk: "sk";
|
|
11716
|
+
sl: "sl";
|
|
11717
|
+
sv: "sv";
|
|
11718
|
+
zh: "zh";
|
|
11719
|
+
}> & z.core.$partial, z.ZodArray<z.ZodObject<{
|
|
11720
|
+
id: z.ZodUUID;
|
|
11721
|
+
objectType: z.ZodLiteral<"asset">;
|
|
11722
|
+
}, z.core.$strip>> | z.ZodArray<z.ZodObject<{
|
|
11723
|
+
id: z.ZodUUID;
|
|
11724
|
+
objectType: z.ZodLiteral<"entry">;
|
|
11725
|
+
}, z.core.$strip>>>;
|
|
11616
11726
|
/**
|
|
11617
11727
|
* Generates a zod schema to check a Value based on given Field definition
|
|
11618
11728
|
*/
|
|
@@ -12567,8 +12677,8 @@ declare function getUpdateEntrySchemaFromFieldDefinitions(fieldDefinitions: Fiel
|
|
|
12567
12677
|
//#region src/schema/serviceSchema.d.ts
|
|
12568
12678
|
declare const serviceTypeSchema: z.ZodEnum<{
|
|
12569
12679
|
Asset: "Asset";
|
|
12570
|
-
Entry: "Entry";
|
|
12571
12680
|
Collection: "Collection";
|
|
12681
|
+
Entry: "Entry";
|
|
12572
12682
|
Project: "Project";
|
|
12573
12683
|
Git: "Git";
|
|
12574
12684
|
GitTag: "GitTag";
|
|
@@ -13421,9 +13531,12 @@ type ApiStartProps = z$1.infer<typeof apiStartSchema>;
|
|
|
13421
13531
|
declare const exportSchema: z$1.ZodObject<{
|
|
13422
13532
|
outDir: z$1.ZodDefault<z$1.ZodString>;
|
|
13423
13533
|
projects: z$1.ZodPipe<z$1.ZodDefault<z$1.ZodString>, z$1.ZodTransform<string[] | "all", string>>;
|
|
13534
|
+
template: z$1.ZodDefault<z$1.ZodEnum<{
|
|
13535
|
+
nested: "nested";
|
|
13536
|
+
separate: "separate";
|
|
13537
|
+
}>>;
|
|
13424
13538
|
options: z$1.ZodObject<{
|
|
13425
13539
|
watch: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
13426
|
-
separate: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
13427
13540
|
}, z$1.core.$strip>;
|
|
13428
13541
|
}, z$1.core.$strip>;
|
|
13429
13542
|
type ExportProps = z$1.infer<typeof exportSchema>;
|
|
@@ -14051,32 +14164,6 @@ declare class CollectionService extends AbstractCrudService implements CrudServi
|
|
|
14051
14164
|
description: 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>>;
|
|
14052
14165
|
icon: "home" | "plus" | "foobar";
|
|
14053
14166
|
fieldDefinitions: ({
|
|
14054
|
-
id: string;
|
|
14055
|
-
label: 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>>;
|
|
14056
|
-
description: 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>> | null;
|
|
14057
|
-
isRequired: boolean;
|
|
14058
|
-
isDisabled: boolean;
|
|
14059
|
-
inputWidth: "3" | "4" | "6" | "12";
|
|
14060
|
-
valueType: "number";
|
|
14061
|
-
min: number | null;
|
|
14062
|
-
max: number | null;
|
|
14063
|
-
isUnique: false;
|
|
14064
|
-
defaultValue: number | null;
|
|
14065
|
-
fieldType: "number";
|
|
14066
|
-
} | {
|
|
14067
|
-
id: string;
|
|
14068
|
-
label: 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>>;
|
|
14069
|
-
description: 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>> | null;
|
|
14070
|
-
isDisabled: boolean;
|
|
14071
|
-
inputWidth: "3" | "4" | "6" | "12";
|
|
14072
|
-
valueType: "number";
|
|
14073
|
-
isUnique: false;
|
|
14074
|
-
fieldType: "range";
|
|
14075
|
-
isRequired: true;
|
|
14076
|
-
min: number;
|
|
14077
|
-
max: number;
|
|
14078
|
-
defaultValue: number;
|
|
14079
|
-
} | {
|
|
14080
14167
|
id: string;
|
|
14081
14168
|
label: 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>>;
|
|
14082
14169
|
description: 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>> | null;
|
|
@@ -14183,13 +14270,28 @@ declare class CollectionService extends AbstractCrudService implements CrudServi
|
|
|
14183
14270
|
id: string;
|
|
14184
14271
|
label: 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>>;
|
|
14185
14272
|
description: 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>> | null;
|
|
14273
|
+
isRequired: boolean;
|
|
14186
14274
|
isDisabled: boolean;
|
|
14187
14275
|
inputWidth: "3" | "4" | "6" | "12";
|
|
14188
|
-
valueType: "
|
|
14189
|
-
|
|
14190
|
-
|
|
14276
|
+
valueType: "number";
|
|
14277
|
+
min: number | null;
|
|
14278
|
+
max: number | null;
|
|
14191
14279
|
isUnique: false;
|
|
14192
|
-
|
|
14280
|
+
defaultValue: number | null;
|
|
14281
|
+
fieldType: "number";
|
|
14282
|
+
} | {
|
|
14283
|
+
id: string;
|
|
14284
|
+
label: 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>>;
|
|
14285
|
+
description: 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>> | null;
|
|
14286
|
+
isDisabled: boolean;
|
|
14287
|
+
inputWidth: "3" | "4" | "6" | "12";
|
|
14288
|
+
valueType: "number";
|
|
14289
|
+
isUnique: false;
|
|
14290
|
+
fieldType: "range";
|
|
14291
|
+
isRequired: true;
|
|
14292
|
+
min: number;
|
|
14293
|
+
max: number;
|
|
14294
|
+
defaultValue: number;
|
|
14193
14295
|
} | {
|
|
14194
14296
|
id: string;
|
|
14195
14297
|
label: 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>>;
|
|
@@ -14215,6 +14317,17 @@ declare class CollectionService extends AbstractCrudService implements CrudServi
|
|
|
14215
14317
|
ofCollections: string[];
|
|
14216
14318
|
min: number | null;
|
|
14217
14319
|
max: number | null;
|
|
14320
|
+
} | {
|
|
14321
|
+
id: string;
|
|
14322
|
+
label: 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>>;
|
|
14323
|
+
description: 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>> | null;
|
|
14324
|
+
isDisabled: boolean;
|
|
14325
|
+
inputWidth: "3" | "4" | "6" | "12";
|
|
14326
|
+
valueType: "boolean";
|
|
14327
|
+
isRequired: true;
|
|
14328
|
+
defaultValue: boolean;
|
|
14329
|
+
isUnique: false;
|
|
14330
|
+
fieldType: "toggle";
|
|
14218
14331
|
})[];
|
|
14219
14332
|
};
|
|
14220
14333
|
/**
|
|
@@ -14723,5 +14836,5 @@ declare class ElekIoCore {
|
|
|
14723
14836
|
get api(): LocalApi;
|
|
14724
14837
|
}
|
|
14725
14838
|
//#endregion
|
|
14726
|
-
export { ApiStartProps, Asset, AssetExport, AssetFieldDefinition, AssetFile, BaseFile, BaseUser, BooleanFieldDefinitionBaseSchema, CloneProjectProps, CloudUser, Collection, CollectionExport, CollectionFile, ConstructorElekIoCoreProps, CountAssetsProps, CountCollectionsProps, CountEntriesProps, CountGitTagsProps, CreateAssetProps, CreateCollectionProps, CreateEntryProps, CreateGitTagProps, CreateProjectProps, CrudService, CrudServiceWithListCount, CurrentBranchProjectProps, DateFieldDefinition, DatetimeFieldDefinition, DeleteAssetProps, DeleteCollectionProps, DeleteEntryProps, DeleteGitTagProps, DeleteProjectProps, DirectBooleanValue, DirectNumberValue, DirectStringValue, DirectValue, ElekIoCoreOptions, EmailFieldDefinition, Entry, EntryExport, EntryFieldDefinition, EntryFile, ExportProps, FieldDefinition, FieldDefinitionBase, FieldDefinitionBaseSchema, FieldType, FieldTypeSchema, FieldWidthSchema, FileReference, GenerateApiClientProps, GetChangesProjectProps, GetRemoteOriginUrlProjectProps, GitCloneOptions, GitCommit, GitInitOptions, GitLogOptions, GitMergeOptions, GitMessage, GitSignature, GitSwitchOptions, GitTag, Ipv4FieldDefinition, ListAssetsProps, ListBranchesProjectProps, ListCollectionsProps, ListEntriesProps, ListGitTagsProps, ListProjectsProps, LocalUser, LogConsoleTransportProps, LogProps, LogSource, MigrateProjectProps, NumberFieldDefinition, NumberFieldDefinitionBaseSchema, ObjectType, PaginatedList, PaginationOptions, Project, ProjectBranch, ProjectExport, ProjectFile, ProjectFolder, ProjectSettings, ProjectStatus, ProjectUpgrade, RangeFieldDefinition, ReadAssetProps, ReadCollectionProps, ReadEntryProps, ReadGitTagProps, ReadProjectProps, ReferenceFieldDefinitionBaseSchema, ReferencedValue, SaveAssetProps, SearchProjectProps, ServiceType, SetRemoteOriginUrlProjectProps, SetUserProps, StringFieldDefinition, StringFieldDefinitionBaseSchema, SupportedIcon, SupportedLanguage, SwitchBranchProjectProps, SynchronizeProjectProps, TelephoneFieldDefinition, TextFieldDefinition, TextareaFieldDefinition, TimeFieldDefinition, ToggleFieldDefinition, TranslatableBoolean, TranslatableNumber, TranslatableString, UpdateAssetProps, UpdateCollectionProps, UpdateEntryProps, UpdateProjectProps, UpgradeProjectProps, UrlFieldDefinition, User, UserFile, UserTypeSchema, Uuid, Value, ValueContentReference, ValueContentReferenceToAsset, ValueContentReferenceToCollection, ValueContentReferenceToEntry, ValueType, ValueTypeSchema, Version, apiStartSchema, assetExportSchema, assetFieldDefinitionSchema, assetFileSchema, assetSchema, baseFileSchema, baseUserSchema, cloneProjectSchema, cloudUserSchema, collectionExportSchema, collectionFileSchema, collectionSchema, constructorElekIoCoreSchema, countAssetsSchema, countCollectionsSchema, countEntriesSchema, countGitTagsSchema, createAssetSchema, createCollectionSchema, createEntrySchema, createGitTagSchema, createProjectSchema, currentBranchProjectSchema, dateFieldDefinitionSchema, datetime, datetimeFieldDefinitionSchema, ElekIoCore as default, deleteAssetSchema, deleteCollectionSchema, deleteEntrySchema, deleteGitTagSchema, deleteProjectSchema, directBooleanValueSchema, directNumberValueSchema, directStringValueSchema, directValueBaseSchema, directValueSchema, elekIoCoreOptionsSchema, emailFieldDefinitionSchema, entryExportSchema, entryFieldDefinitionSchema, entryFileSchema, entrySchema, exportSchema, fieldDefinitionSchema, fileReferenceSchema, generateApiClientSchema, getChangesProjectSchema, getCreateEntrySchemaFromFieldDefinitions, getEntrySchemaFromFieldDefinitions, getRemoteOriginUrlProjectSchema, getUpdateEntrySchemaFromFieldDefinitions, getValueSchemaFromFieldDefinition, gitCloneOptionsSchema, gitCommitSchema, gitInitOptionsSchema, gitLogOptionsSchema, gitMergeOptionsSchema, gitMessageSchema, gitSignatureSchema, gitSwitchOptionsSchema, gitTagSchema, ipv4FieldDefinitionSchema, listAssetsSchema, listBranchesProjectSchema, listCollectionsSchema, listEntriesSchema, listGitTagsSchema, listProjectsSchema, localUserSchema, logConsoleTransportSchema, logLevelSchema, logSchema, logSourceSchema, migrateProjectSchema, numberFieldDefinitionSchema, objectTypeSchema, paginatedListOf, projectBranchSchema, projectExportSchema, projectFileSchema, projectFolderSchema, projectSchema, projectSettingsSchema, projectStatusSchema, projectUpgradeSchema, rangeFieldDefinitionSchema, readAssetSchema, readCollectionSchema, readEntrySchema, readGitTagSchema, readProjectSchema, referencedValueSchema, saveAssetSchema, searchProjectSchema, serviceTypeSchema, setRemoteOriginUrlProjectSchema, setUserSchema, slug, stringFieldDefinitionSchema, supportedIconSchema, supportedLanguageSchema, switchBranchProjectSchema, synchronizeProjectSchema, telephoneFieldDefinitionSchema, textFieldDefinitionSchema, textareaFieldDefinitionSchema, timeFieldDefinitionSchema, toggleFieldDefinitionSchema, translatableArrayOf, translatableBooleanSchema, translatableNumberSchema, translatableStringSchema, updateAssetSchema, updateCollectionSchema, updateEntrySchema, updateProjectSchema, upgradeProjectSchema, urlFieldDefinitionSchema, userFileSchema, userSchema, uuid, uuidSchema, valueContentReferenceBase, valueContentReferenceSchema, valueContentReferenceToAssetSchema, valueContentReferenceToCollectionSchema, valueContentReferenceToEntrySchema, valueSchema, versionSchema };
|
|
14727
|
-
//# sourceMappingURL=index.node.d.
|
|
14839
|
+
export { ApiStartProps, Asset, AssetExport, AssetFieldDefinition, AssetFile, BaseFile, BaseUser, BooleanFieldDefinitionBaseSchema, CloneProjectProps, CloudUser, Collection, CollectionExport, CollectionFile, ConstructorElekIoCoreProps, CountAssetsProps, CountCollectionsProps, CountEntriesProps, CountGitTagsProps, CreateAssetProps, CreateCollectionProps, CreateEntryProps, CreateGitTagProps, CreateProjectProps, CrudService, CrudServiceWithListCount, CurrentBranchProjectProps, DateFieldDefinition, DatetimeFieldDefinition, DeleteAssetProps, DeleteCollectionProps, DeleteEntryProps, DeleteGitTagProps, DeleteProjectProps, DirectBooleanValue, DirectNumberValue, DirectStringValue, DirectValue, ElekIoCoreOptions, EmailFieldDefinition, Entry, EntryExport, EntryFieldDefinition, EntryFile, ExportProps, FieldDefinition, FieldDefinitionBase, FieldDefinitionBaseSchema, FieldType, FieldTypeSchema, FieldWidthSchema, FileReference, GenerateApiClientProps, GetChangesProjectProps, GetRemoteOriginUrlProjectProps, GitCloneOptions, GitCommit, GitInitOptions, GitLogOptions, GitMergeOptions, GitMessage, GitSignature, GitSwitchOptions, GitTag, Ipv4FieldDefinition, ListAssetsProps, ListBranchesProjectProps, ListCollectionsProps, ListEntriesProps, ListGitTagsProps, ListProjectsProps, LocalUser, LogConsoleTransportProps, LogProps, LogSource, MigrateProjectProps, NumberFieldDefinition, NumberFieldDefinitionBaseSchema, ObjectType, PaginatedList, PaginationOptions, Project, ProjectBranch, ProjectExport, ProjectFile, ProjectFolder, ProjectSettings, ProjectStatus, ProjectUpgrade, RangeFieldDefinition, ReadAssetProps, ReadCollectionProps, ReadEntryProps, ReadGitTagProps, ReadProjectProps, ReferenceFieldDefinitionBaseSchema, ReferencedValue, SaveAssetProps, SearchProjectProps, ServiceType, SetRemoteOriginUrlProjectProps, SetUserProps, StringFieldDefinition, StringFieldDefinitionBaseSchema, SupportedIcon, SupportedLanguage, SwitchBranchProjectProps, SynchronizeProjectProps, TelephoneFieldDefinition, TextFieldDefinition, TextareaFieldDefinition, TimeFieldDefinition, ToggleFieldDefinition, TranslatableBoolean, TranslatableNumber, TranslatableString, UpdateAssetProps, UpdateCollectionProps, UpdateEntryProps, UpdateProjectProps, UpgradeProjectProps, UrlFieldDefinition, User, UserFile, UserTypeSchema, Uuid, Value, ValueContentReference, ValueContentReferenceToAsset, ValueContentReferenceToCollection, ValueContentReferenceToEntry, ValueType, ValueTypeSchema, Version, apiStartSchema, assetExportSchema, assetFieldDefinitionSchema, assetFileSchema, assetSchema, baseFileSchema, baseUserSchema, cloneProjectSchema, cloudUserSchema, collectionExportSchema, collectionFileSchema, collectionSchema, constructorElekIoCoreSchema, countAssetsSchema, countCollectionsSchema, countEntriesSchema, countGitTagsSchema, createAssetSchema, createCollectionSchema, createEntrySchema, createGitTagSchema, createProjectSchema, currentBranchProjectSchema, dateFieldDefinitionSchema, datetime, datetimeFieldDefinitionSchema, ElekIoCore as default, deleteAssetSchema, deleteCollectionSchema, deleteEntrySchema, deleteGitTagSchema, deleteProjectSchema, directBooleanValueSchema, directNumberValueSchema, directStringValueSchema, directValueBaseSchema, directValueSchema, elekIoCoreOptionsSchema, emailFieldDefinitionSchema, entryExportSchema, entryFieldDefinitionSchema, entryFileSchema, entrySchema, exportSchema, fieldDefinitionSchema, fileReferenceSchema, generateApiClientSchema, getChangesProjectSchema, getCreateEntrySchemaFromFieldDefinitions, getEntrySchemaFromFieldDefinitions, getRemoteOriginUrlProjectSchema, getTranslatableBooleanValueContentSchemaFromFieldDefinition, getTranslatableNumberValueContentSchemaFromFieldDefinition, getTranslatableReferenceValueContentSchemaFromFieldDefinition, getTranslatableStringValueContentSchemaFromFieldDefinition, getUpdateEntrySchemaFromFieldDefinitions, getValueSchemaFromFieldDefinition, gitCloneOptionsSchema, gitCommitSchema, gitInitOptionsSchema, gitLogOptionsSchema, gitMergeOptionsSchema, gitMessageSchema, gitSignatureSchema, gitSwitchOptionsSchema, gitTagSchema, ipv4FieldDefinitionSchema, listAssetsSchema, listBranchesProjectSchema, listCollectionsSchema, listEntriesSchema, listGitTagsSchema, listProjectsSchema, localUserSchema, logConsoleTransportSchema, logLevelSchema, logSchema, logSourceSchema, migrateProjectSchema, numberFieldDefinitionSchema, objectTypeSchema, paginatedListOf, projectBranchSchema, projectExportSchema, projectFileSchema, projectFolderSchema, projectSchema, projectSettingsSchema, projectStatusSchema, projectUpgradeSchema, rangeFieldDefinitionSchema, readAssetSchema, readCollectionSchema, readEntrySchema, readGitTagSchema, readProjectSchema, referencedValueSchema, saveAssetSchema, searchProjectSchema, serviceTypeSchema, setRemoteOriginUrlProjectSchema, setUserSchema, slug, stringFieldDefinitionSchema, supportedIconSchema, supportedLanguageSchema, switchBranchProjectSchema, synchronizeProjectSchema, telephoneFieldDefinitionSchema, textFieldDefinitionSchema, textareaFieldDefinitionSchema, timeFieldDefinitionSchema, toggleFieldDefinitionSchema, translatableArrayOf, translatableBooleanSchema, translatableNumberSchema, translatableStringSchema, updateAssetSchema, updateCollectionSchema, updateEntrySchema, updateProjectSchema, upgradeProjectSchema, urlFieldDefinitionSchema, userFileSchema, userSchema, uuid, uuidSchema, valueContentReferenceBase, valueContentReferenceSchema, valueContentReferenceToAssetSchema, valueContentReferenceToCollectionSchema, valueContentReferenceToEntrySchema, valueSchema, versionSchema };
|
|
14840
|
+
//# sourceMappingURL=index.node.d.mts.map
|