@elek-io/core 0.14.2 → 0.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.browser.d.ts +11846 -13515
- package/dist/browser/index.browser.js +93 -79
- package/dist/browser/index.browser.js.map +1 -1
- package/dist/node/index.node.d.ts +11845 -13514
- package/dist/node/index.node.js +135 -121
- package/dist/node/index.node.js.map +1 -1
- package/package.json +7 -7
|
@@ -67,21 +67,25 @@ var objectTypeSchema = z.enum([
|
|
|
67
67
|
]);
|
|
68
68
|
var logLevelSchema = z.enum(["error", "warn", "info", "debug"]);
|
|
69
69
|
var versionSchema = z.string();
|
|
70
|
-
var uuidSchema = z.
|
|
71
|
-
var translatableStringSchema = z.
|
|
70
|
+
var uuidSchema = z.uuid("shared.invalidUuid");
|
|
71
|
+
var translatableStringSchema = z.partialRecord(
|
|
72
72
|
supportedLanguageSchema,
|
|
73
73
|
z.string().trim().min(1, "shared.translatableStringRequired")
|
|
74
74
|
);
|
|
75
|
-
var translatableNumberSchema = z.
|
|
75
|
+
var translatableNumberSchema = z.partialRecord(
|
|
76
76
|
supportedLanguageSchema,
|
|
77
|
-
z.number({
|
|
77
|
+
z.number({
|
|
78
|
+
error: (error) => error.input === void 0 ? "shared.translatableNumberRequired" : "shared.translatableNumberNotANumber"
|
|
79
|
+
})
|
|
78
80
|
);
|
|
79
|
-
var translatableBooleanSchema = z.
|
|
81
|
+
var translatableBooleanSchema = z.partialRecord(
|
|
80
82
|
supportedLanguageSchema,
|
|
81
|
-
z.boolean({
|
|
83
|
+
z.boolean({
|
|
84
|
+
error: (error) => error.input === void 0 ? "shared.translatableBooleanRequired" : "shared.translatableBooleanNotABoolean"
|
|
85
|
+
})
|
|
82
86
|
);
|
|
83
87
|
function translatableArrayOf(schema) {
|
|
84
|
-
return z.
|
|
88
|
+
return z.partialRecord(supportedLanguageSchema, z.array(schema));
|
|
85
89
|
}
|
|
86
90
|
|
|
87
91
|
// src/schema/fileSchema.ts
|
|
@@ -231,7 +235,7 @@ var countGitTagsSchema = z3.object({
|
|
|
231
235
|
|
|
232
236
|
// src/schema/assetSchema.ts
|
|
233
237
|
var assetFileSchema = baseFileSchema.extend({
|
|
234
|
-
objectType: z4.literal(objectTypeSchema.
|
|
238
|
+
objectType: z4.literal(objectTypeSchema.enum.asset).readonly(),
|
|
235
239
|
name: z4.string(),
|
|
236
240
|
description: z4.string(),
|
|
237
241
|
extension: z4.string().readonly(),
|
|
@@ -312,13 +316,13 @@ var valueContentReferenceBase = z5.object({
|
|
|
312
316
|
id: uuidSchema
|
|
313
317
|
});
|
|
314
318
|
var valueContentReferenceToAssetSchema = valueContentReferenceBase.extend({
|
|
315
|
-
objectType: z5.literal(objectTypeSchema.
|
|
319
|
+
objectType: z5.literal(objectTypeSchema.enum.asset)
|
|
316
320
|
});
|
|
317
321
|
var valueContentReferenceToCollectionSchema = valueContentReferenceBase.extend({
|
|
318
|
-
objectType: z5.literal(objectTypeSchema.
|
|
322
|
+
objectType: z5.literal(objectTypeSchema.enum.collection)
|
|
319
323
|
});
|
|
320
324
|
var valueContentReferenceToEntrySchema = valueContentReferenceBase.extend({
|
|
321
|
-
objectType: z5.literal(objectTypeSchema.
|
|
325
|
+
objectType: z5.literal(objectTypeSchema.enum.entry)
|
|
322
326
|
});
|
|
323
327
|
var valueContentReferenceSchema = z5.union([
|
|
324
328
|
valueContentReferenceToAssetSchema,
|
|
@@ -327,19 +331,19 @@ var valueContentReferenceSchema = z5.union([
|
|
|
327
331
|
// valueContentReferenceToSharedValueSchema,
|
|
328
332
|
]);
|
|
329
333
|
var directValueBaseSchema = z5.object({
|
|
330
|
-
objectType: z5.literal(objectTypeSchema.
|
|
334
|
+
objectType: z5.literal(objectTypeSchema.enum.value).readonly(),
|
|
331
335
|
fieldDefinitionId: uuidSchema.readonly()
|
|
332
336
|
});
|
|
333
337
|
var directStringValueSchema = directValueBaseSchema.extend({
|
|
334
|
-
valueType: z5.literal(ValueTypeSchema.
|
|
338
|
+
valueType: z5.literal(ValueTypeSchema.enum.string).readonly(),
|
|
335
339
|
content: translatableStringSchema
|
|
336
340
|
});
|
|
337
341
|
var directNumberValueSchema = directValueBaseSchema.extend({
|
|
338
|
-
valueType: z5.literal(ValueTypeSchema.
|
|
342
|
+
valueType: z5.literal(ValueTypeSchema.enum.number).readonly(),
|
|
339
343
|
content: translatableNumberSchema
|
|
340
344
|
});
|
|
341
345
|
var directBooleanValueSchema = directValueBaseSchema.extend({
|
|
342
|
-
valueType: z5.literal(ValueTypeSchema.
|
|
346
|
+
valueType: z5.literal(ValueTypeSchema.enum.boolean).readonly(),
|
|
343
347
|
content: translatableBooleanSchema
|
|
344
348
|
});
|
|
345
349
|
var directValueSchema = z5.union([
|
|
@@ -348,16 +352,16 @@ var directValueSchema = z5.union([
|
|
|
348
352
|
directBooleanValueSchema
|
|
349
353
|
]);
|
|
350
354
|
var referencedValueSchema = z5.object({
|
|
351
|
-
objectType: z5.literal(objectTypeSchema.
|
|
355
|
+
objectType: z5.literal(objectTypeSchema.enum.value).readonly(),
|
|
352
356
|
fieldDefinitionId: uuidSchema.readonly(),
|
|
353
|
-
valueType: z5.literal(ValueTypeSchema.
|
|
357
|
+
valueType: z5.literal(ValueTypeSchema.enum.reference).readonly(),
|
|
354
358
|
content: translatableArrayOf(valueContentReferenceSchema)
|
|
355
359
|
});
|
|
356
360
|
var valueSchema = z5.union([directValueSchema, referencedValueSchema]);
|
|
357
361
|
|
|
358
362
|
// src/schema/entrySchema.ts
|
|
359
363
|
var entryFileSchema = baseFileSchema.extend({
|
|
360
|
-
objectType: z6.literal(objectTypeSchema.
|
|
364
|
+
objectType: z6.literal(objectTypeSchema.enum.entry).readonly(),
|
|
361
365
|
values: z6.array(valueSchema)
|
|
362
366
|
});
|
|
363
367
|
var entrySchema = entryFileSchema.extend({
|
|
@@ -406,7 +410,7 @@ var FieldTypeSchema = z7.enum([
|
|
|
406
410
|
"email",
|
|
407
411
|
// 'password', @todo maybe if there is a usecase
|
|
408
412
|
"url",
|
|
409
|
-
"
|
|
413
|
+
"ipv4",
|
|
410
414
|
"date",
|
|
411
415
|
"time",
|
|
412
416
|
"datetime",
|
|
@@ -433,60 +437,62 @@ var FieldDefinitionBaseSchema = z7.object({
|
|
|
433
437
|
});
|
|
434
438
|
var StringFieldDefinitionBaseSchema = FieldDefinitionBaseSchema.extend(
|
|
435
439
|
{
|
|
436
|
-
valueType: z7.literal(ValueTypeSchema.
|
|
440
|
+
valueType: z7.literal(ValueTypeSchema.enum.string),
|
|
437
441
|
defaultValue: z7.string().nullable()
|
|
438
442
|
}
|
|
439
443
|
);
|
|
440
444
|
var textFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend(
|
|
441
445
|
{
|
|
442
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
446
|
+
fieldType: z7.literal(FieldTypeSchema.enum.text),
|
|
443
447
|
min: z7.number().nullable(),
|
|
444
448
|
max: z7.number().nullable()
|
|
445
449
|
}
|
|
446
450
|
);
|
|
447
451
|
var textareaFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend({
|
|
448
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
452
|
+
fieldType: z7.literal(FieldTypeSchema.enum.textarea),
|
|
449
453
|
min: z7.number().nullable(),
|
|
450
454
|
max: z7.number().nullable()
|
|
451
455
|
});
|
|
452
456
|
var emailFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend({
|
|
453
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
454
|
-
defaultValue: z7.
|
|
457
|
+
fieldType: z7.literal(FieldTypeSchema.enum.email),
|
|
458
|
+
defaultValue: z7.email().nullable()
|
|
455
459
|
});
|
|
456
460
|
var urlFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend({
|
|
457
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
458
|
-
defaultValue: z7.
|
|
459
|
-
});
|
|
460
|
-
var ipFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend({
|
|
461
|
-
fieldType: z7.literal(FieldTypeSchema.Enum.ip),
|
|
462
|
-
defaultValue: z7.string().ip().nullable()
|
|
461
|
+
fieldType: z7.literal(FieldTypeSchema.enum.url),
|
|
462
|
+
defaultValue: z7.url().nullable()
|
|
463
463
|
});
|
|
464
|
+
var ipv4FieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend(
|
|
465
|
+
{
|
|
466
|
+
fieldType: z7.literal(FieldTypeSchema.enum.ipv4),
|
|
467
|
+
defaultValue: z7.ipv4().nullable()
|
|
468
|
+
}
|
|
469
|
+
);
|
|
464
470
|
var dateFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend(
|
|
465
471
|
{
|
|
466
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
467
|
-
defaultValue: z7.
|
|
472
|
+
fieldType: z7.literal(FieldTypeSchema.enum.date),
|
|
473
|
+
defaultValue: z7.iso.date().nullable()
|
|
468
474
|
}
|
|
469
475
|
);
|
|
470
476
|
var timeFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend(
|
|
471
477
|
{
|
|
472
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
473
|
-
defaultValue: z7.
|
|
478
|
+
fieldType: z7.literal(FieldTypeSchema.enum.time),
|
|
479
|
+
defaultValue: z7.iso.time().nullable()
|
|
474
480
|
}
|
|
475
481
|
);
|
|
476
482
|
var datetimeFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend({
|
|
477
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
478
|
-
defaultValue: z7.
|
|
483
|
+
fieldType: z7.literal(FieldTypeSchema.enum.datetime),
|
|
484
|
+
defaultValue: z7.iso.datetime().nullable()
|
|
479
485
|
});
|
|
480
486
|
var telephoneFieldDefinitionSchema = StringFieldDefinitionBaseSchema.extend({
|
|
481
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
482
|
-
|
|
487
|
+
fieldType: z7.literal(FieldTypeSchema.enum.telephone),
|
|
488
|
+
defaultValue: z7.e164().nullable()
|
|
483
489
|
});
|
|
484
490
|
var stringFieldDefinitionSchema = z7.union([
|
|
485
491
|
textFieldDefinitionSchema,
|
|
486
492
|
textareaFieldDefinitionSchema,
|
|
487
493
|
emailFieldDefinitionSchema,
|
|
488
494
|
urlFieldDefinitionSchema,
|
|
489
|
-
|
|
495
|
+
ipv4FieldDefinitionSchema,
|
|
490
496
|
dateFieldDefinitionSchema,
|
|
491
497
|
timeFieldDefinitionSchema,
|
|
492
498
|
datetimeFieldDefinitionSchema,
|
|
@@ -494,7 +500,7 @@ var stringFieldDefinitionSchema = z7.union([
|
|
|
494
500
|
]);
|
|
495
501
|
var NumberFieldDefinitionBaseSchema = FieldDefinitionBaseSchema.extend(
|
|
496
502
|
{
|
|
497
|
-
valueType: z7.literal(ValueTypeSchema.
|
|
503
|
+
valueType: z7.literal(ValueTypeSchema.enum.number),
|
|
498
504
|
min: z7.number().nullable(),
|
|
499
505
|
max: z7.number().nullable(),
|
|
500
506
|
isUnique: z7.literal(false),
|
|
@@ -502,10 +508,10 @@ var NumberFieldDefinitionBaseSchema = FieldDefinitionBaseSchema.extend(
|
|
|
502
508
|
}
|
|
503
509
|
);
|
|
504
510
|
var numberFieldDefinitionSchema = NumberFieldDefinitionBaseSchema.extend({
|
|
505
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
511
|
+
fieldType: z7.literal(FieldTypeSchema.enum.number)
|
|
506
512
|
});
|
|
507
513
|
var rangeFieldDefinitionSchema = NumberFieldDefinitionBaseSchema.extend({
|
|
508
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
514
|
+
fieldType: z7.literal(FieldTypeSchema.enum.range),
|
|
509
515
|
// Overwrite from nullable to required because a range needs min, max and default to work and is required, since it always returns a number
|
|
510
516
|
isRequired: z7.literal(true),
|
|
511
517
|
min: z7.number(),
|
|
@@ -513,25 +519,25 @@ var rangeFieldDefinitionSchema = NumberFieldDefinitionBaseSchema.extend({
|
|
|
513
519
|
defaultValue: z7.number()
|
|
514
520
|
});
|
|
515
521
|
var BooleanFieldDefinitionBaseSchema = FieldDefinitionBaseSchema.extend({
|
|
516
|
-
valueType: z7.literal(ValueTypeSchema.
|
|
522
|
+
valueType: z7.literal(ValueTypeSchema.enum.boolean),
|
|
517
523
|
// Overwrite from nullable to required because a boolean needs a default to work and is required, since it always is either true or false
|
|
518
524
|
isRequired: z7.literal(true),
|
|
519
525
|
defaultValue: z7.boolean(),
|
|
520
526
|
isUnique: z7.literal(false)
|
|
521
527
|
});
|
|
522
528
|
var toggleFieldDefinitionSchema = BooleanFieldDefinitionBaseSchema.extend({
|
|
523
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
529
|
+
fieldType: z7.literal(FieldTypeSchema.enum.toggle)
|
|
524
530
|
});
|
|
525
531
|
var ReferenceFieldDefinitionBaseSchema = FieldDefinitionBaseSchema.extend({
|
|
526
|
-
valueType: z7.literal(ValueTypeSchema.
|
|
532
|
+
valueType: z7.literal(ValueTypeSchema.enum.reference)
|
|
527
533
|
});
|
|
528
534
|
var assetFieldDefinitionSchema = ReferenceFieldDefinitionBaseSchema.extend({
|
|
529
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
535
|
+
fieldType: z7.literal(FieldTypeSchema.enum.asset),
|
|
530
536
|
min: z7.number().nullable(),
|
|
531
537
|
max: z7.number().nullable()
|
|
532
538
|
});
|
|
533
539
|
var entryFieldDefinitionSchema = ReferenceFieldDefinitionBaseSchema.extend({
|
|
534
|
-
fieldType: z7.literal(FieldTypeSchema.
|
|
540
|
+
fieldType: z7.literal(FieldTypeSchema.enum.entry),
|
|
535
541
|
ofCollections: z7.array(uuidSchema),
|
|
536
542
|
min: z7.number().nullable(),
|
|
537
543
|
max: z7.number().nullable()
|
|
@@ -547,13 +553,13 @@ var fieldDefinitionSchema = z7.union([
|
|
|
547
553
|
]);
|
|
548
554
|
function getValueContentSchemaFromFieldDefinition(fieldDefinition) {
|
|
549
555
|
switch (fieldDefinition.valueType) {
|
|
550
|
-
case ValueTypeSchema.
|
|
556
|
+
case ValueTypeSchema.enum.boolean:
|
|
551
557
|
return getBooleanValueContentSchema();
|
|
552
|
-
case ValueTypeSchema.
|
|
558
|
+
case ValueTypeSchema.enum.number:
|
|
553
559
|
return getNumberValueContentSchema(fieldDefinition);
|
|
554
|
-
case ValueTypeSchema.
|
|
560
|
+
case ValueTypeSchema.enum.string:
|
|
555
561
|
return getStringValueContentSchema(fieldDefinition);
|
|
556
|
-
case ValueTypeSchema.
|
|
562
|
+
case ValueTypeSchema.enum.reference:
|
|
557
563
|
return getReferenceValueContentSchema(fieldDefinition);
|
|
558
564
|
default:
|
|
559
565
|
throw new Error(
|
|
@@ -579,35 +585,40 @@ function getNumberValueContentSchema(definition) {
|
|
|
579
585
|
return schema;
|
|
580
586
|
}
|
|
581
587
|
function getStringValueContentSchema(definition) {
|
|
582
|
-
let schema =
|
|
583
|
-
if ("min" in definition && definition.min) {
|
|
584
|
-
schema = schema.min(definition.min);
|
|
585
|
-
}
|
|
586
|
-
if ("max" in definition && definition.max) {
|
|
587
|
-
schema = schema.max(definition.max);
|
|
588
|
-
}
|
|
588
|
+
let schema = null;
|
|
589
589
|
switch (definition.fieldType) {
|
|
590
|
-
case FieldTypeSchema.
|
|
591
|
-
schema =
|
|
590
|
+
case FieldTypeSchema.enum.email:
|
|
591
|
+
schema = z7.email();
|
|
592
|
+
break;
|
|
593
|
+
case FieldTypeSchema.enum.url:
|
|
594
|
+
schema = z7.url();
|
|
592
595
|
break;
|
|
593
|
-
case FieldTypeSchema.
|
|
594
|
-
schema =
|
|
596
|
+
case FieldTypeSchema.enum.ipv4:
|
|
597
|
+
schema = z7.ipv4();
|
|
595
598
|
break;
|
|
596
|
-
case FieldTypeSchema.
|
|
597
|
-
schema =
|
|
599
|
+
case FieldTypeSchema.enum.date:
|
|
600
|
+
schema = z7.iso.date();
|
|
598
601
|
break;
|
|
599
|
-
case FieldTypeSchema.
|
|
600
|
-
schema =
|
|
602
|
+
case FieldTypeSchema.enum.time:
|
|
603
|
+
schema = z7.iso.time();
|
|
601
604
|
break;
|
|
602
|
-
case FieldTypeSchema.
|
|
603
|
-
schema =
|
|
605
|
+
case FieldTypeSchema.enum.datetime:
|
|
606
|
+
schema = z7.iso.datetime();
|
|
604
607
|
break;
|
|
605
|
-
case FieldTypeSchema.
|
|
606
|
-
schema =
|
|
608
|
+
case FieldTypeSchema.enum.telephone:
|
|
609
|
+
schema = z7.e164();
|
|
607
610
|
break;
|
|
608
|
-
case FieldTypeSchema.
|
|
611
|
+
case FieldTypeSchema.enum.text:
|
|
612
|
+
case FieldTypeSchema.enum.textarea:
|
|
613
|
+
schema = z7.string().trim();
|
|
609
614
|
break;
|
|
610
615
|
}
|
|
616
|
+
if ("min" in definition && definition.min) {
|
|
617
|
+
schema = schema.min(definition.min);
|
|
618
|
+
}
|
|
619
|
+
if ("max" in definition && definition.max) {
|
|
620
|
+
schema = schema.max(definition.max);
|
|
621
|
+
}
|
|
611
622
|
if (definition.isRequired === false) {
|
|
612
623
|
return schema.nullable();
|
|
613
624
|
}
|
|
@@ -616,12 +627,12 @@ function getStringValueContentSchema(definition) {
|
|
|
616
627
|
function getReferenceValueContentSchema(definition) {
|
|
617
628
|
let schema;
|
|
618
629
|
switch (definition.fieldType) {
|
|
619
|
-
case FieldTypeSchema.
|
|
630
|
+
case FieldTypeSchema.enum.asset:
|
|
620
631
|
{
|
|
621
632
|
schema = z7.array(valueContentReferenceToAssetSchema);
|
|
622
633
|
}
|
|
623
634
|
break;
|
|
624
|
-
case FieldTypeSchema.
|
|
635
|
+
case FieldTypeSchema.enum.entry:
|
|
625
636
|
{
|
|
626
637
|
schema = z7.array(valueContentReferenceToEntrySchema);
|
|
627
638
|
}
|
|
@@ -641,7 +652,7 @@ function getReferenceValueContentSchema(definition) {
|
|
|
641
652
|
|
|
642
653
|
// src/schema/collectionSchema.ts
|
|
643
654
|
var collectionFileSchema = baseFileSchema.extend({
|
|
644
|
-
objectType: z8.literal(objectTypeSchema.
|
|
655
|
+
objectType: z8.literal(objectTypeSchema.enum.collection).readonly(),
|
|
645
656
|
name: z8.object({
|
|
646
657
|
singular: translatableStringSchema,
|
|
647
658
|
plural: translatableStringSchema
|
|
@@ -736,7 +747,7 @@ var projectFolderSchema = z10.enum([
|
|
|
736
747
|
]);
|
|
737
748
|
var projectBranchSchema = z10.enum(["production", "work"]);
|
|
738
749
|
var projectFileSchema = baseFileSchema.extend({
|
|
739
|
-
objectType: z10.literal(objectTypeSchema.
|
|
750
|
+
objectType: z10.literal(objectTypeSchema.enum.project).readonly(),
|
|
740
751
|
coreVersion: versionSchema,
|
|
741
752
|
name: z10.string().trim().min(1, "shared.projectNameRequired"),
|
|
742
753
|
description: z10.string().trim().min(1, "shared.projectDescriptionRequired"),
|
|
@@ -804,7 +815,10 @@ var projectUpgradeSchema = z10.object({
|
|
|
804
815
|
/**
|
|
805
816
|
* Function that will be executed in the process of upgrading a Project
|
|
806
817
|
*/
|
|
807
|
-
run: z10.function(
|
|
818
|
+
run: z10.function({
|
|
819
|
+
input: [projectFileSchema],
|
|
820
|
+
output: z10.promise(z10.void())
|
|
821
|
+
})
|
|
808
822
|
});
|
|
809
823
|
var cloneProjectSchema = z10.object({
|
|
810
824
|
url: z10.string()
|
|
@@ -897,10 +911,10 @@ var baseUserSchema = gitSignatureSchema.extend({
|
|
|
897
911
|
})
|
|
898
912
|
});
|
|
899
913
|
var localUserSchema = baseUserSchema.extend({
|
|
900
|
-
userType: z12.literal(UserTypeSchema.
|
|
914
|
+
userType: z12.literal(UserTypeSchema.enum.local)
|
|
901
915
|
});
|
|
902
916
|
var cloudUserSchema = baseUserSchema.extend({
|
|
903
|
-
userType: z12.literal(UserTypeSchema.
|
|
917
|
+
userType: z12.literal(UserTypeSchema.enum.cloud),
|
|
904
918
|
id: uuidSchema
|
|
905
919
|
});
|
|
906
920
|
var userFileSchema = z12.union([localUserSchema, cloudUserSchema]);
|
|
@@ -991,7 +1005,7 @@ export {
|
|
|
991
1005
|
gitSignatureSchema,
|
|
992
1006
|
gitSwitchOptionsSchema,
|
|
993
1007
|
gitTagSchema,
|
|
994
|
-
|
|
1008
|
+
ipv4FieldDefinitionSchema,
|
|
995
1009
|
listAssetsSchema,
|
|
996
1010
|
listBranchesProjectSchema,
|
|
997
1011
|
listCollectionsSchema,
|