@datocms/cma-client 5.1.12 → 5.1.13
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/README.md +284 -143
- package/dist/cjs/generated/Client.js +1 -1
- package/dist/cjs/utilities/buildBlockRecord.js.map +1 -1
- package/dist/cjs/utilities/duplicateBlockRecord.js +2 -1
- package/dist/cjs/utilities/duplicateBlockRecord.js.map +1 -1
- package/dist/esm/fieldTypes/schema.d.ts +1 -1
- package/dist/esm/fieldTypes/single_block.d.ts +1 -1
- package/dist/esm/generated/ApiTypes.d.ts +4 -0
- package/dist/esm/generated/Client.js +1 -1
- package/dist/esm/generated/RawApiTypes.d.ts +4 -0
- package/dist/esm/generated/resources/Field.d.ts +100 -100
- package/dist/esm/utilities/buildBlockRecord.d.ts +10 -2
- package/dist/esm/utilities/buildBlockRecord.js.map +1 -1
- package/dist/esm/utilities/duplicateBlockRecord.js +2 -1
- package/dist/esm/utilities/duplicateBlockRecord.js.map +1 -1
- package/dist/types/fieldTypes/schema.d.ts +1 -1
- package/dist/types/fieldTypes/single_block.d.ts +1 -1
- package/dist/types/generated/ApiTypes.d.ts +4 -0
- package/dist/types/generated/RawApiTypes.d.ts +4 -0
- package/dist/types/generated/resources/Field.d.ts +100 -100
- package/dist/types/utilities/buildBlockRecord.d.ts +10 -2
- package/package.json +4 -4
- package/src/fieldTypes/schema.ts +1 -1
- package/src/fieldTypes/single_block.ts +1 -1
- package/src/generated/ApiTypes.ts +4 -0
- package/src/generated/Client.ts +1 -1
- package/src/generated/RawApiTypes.ts +4 -0
- package/src/utilities/buildBlockRecord.ts +18 -2
- package/src/utilities/duplicateBlockRecord.ts +2 -1
|
@@ -35,7 +35,7 @@ export default class Field extends BaseResource {
|
|
|
35
35
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
36
36
|
field_type: "boolean";
|
|
37
37
|
localized: true;
|
|
38
|
-
default_value:
|
|
38
|
+
default_value: Record<string, import("../..").BooleanFieldValue>;
|
|
39
39
|
validators: import("../..").BooleanFieldValidators;
|
|
40
40
|
appearance: import("../..").BooleanFieldAppearance & Omit<{
|
|
41
41
|
[k: string]: unknown;
|
|
@@ -77,7 +77,7 @@ export default class Field extends BaseResource {
|
|
|
77
77
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
78
78
|
field_type: "color";
|
|
79
79
|
localized: true;
|
|
80
|
-
default_value:
|
|
80
|
+
default_value: Record<string, import("../..").ColorFieldValue>;
|
|
81
81
|
validators: import("../..").ColorFieldValidators;
|
|
82
82
|
appearance: import("../..").ColorFieldAppearance & Omit<{
|
|
83
83
|
[k: string]: unknown;
|
|
@@ -119,7 +119,7 @@ export default class Field extends BaseResource {
|
|
|
119
119
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
120
120
|
field_type: "date";
|
|
121
121
|
localized: true;
|
|
122
|
-
default_value:
|
|
122
|
+
default_value: Record<string, import("../..").DateFieldValue>;
|
|
123
123
|
validators: import("../..").DateFieldValidators;
|
|
124
124
|
appearance: import("../..").DateFieldAppearance & Omit<{
|
|
125
125
|
[k: string]: unknown;
|
|
@@ -161,7 +161,7 @@ export default class Field extends BaseResource {
|
|
|
161
161
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
162
162
|
field_type: "date_time";
|
|
163
163
|
localized: true;
|
|
164
|
-
default_value:
|
|
164
|
+
default_value: Record<string, import("../..").DateTimeFieldValue>;
|
|
165
165
|
validators: import("../..").DateTimeFieldValidators;
|
|
166
166
|
appearance: import("../..").DateTimeFieldAppearance & Omit<{
|
|
167
167
|
[k: string]: unknown;
|
|
@@ -203,7 +203,7 @@ export default class Field extends BaseResource {
|
|
|
203
203
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
204
204
|
field_type: "file";
|
|
205
205
|
localized: true;
|
|
206
|
-
default_value: Record<string, null
|
|
206
|
+
default_value: Record<string, null>;
|
|
207
207
|
validators: import("../..").FileFieldValidators;
|
|
208
208
|
appearance: import("../..").FileFieldAppearance & Omit<{
|
|
209
209
|
[k: string]: unknown;
|
|
@@ -245,7 +245,7 @@ export default class Field extends BaseResource {
|
|
|
245
245
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
246
246
|
field_type: "float";
|
|
247
247
|
localized: true;
|
|
248
|
-
default_value:
|
|
248
|
+
default_value: Record<string, import("../..").FloatFieldValue>;
|
|
249
249
|
validators: import("../..").FloatFieldValidators;
|
|
250
250
|
appearance: import("../..").FloatFieldAppearance & Omit<{
|
|
251
251
|
[k: string]: unknown;
|
|
@@ -287,7 +287,7 @@ export default class Field extends BaseResource {
|
|
|
287
287
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
288
288
|
field_type: "gallery";
|
|
289
289
|
localized: true;
|
|
290
|
-
default_value: Record<string, null
|
|
290
|
+
default_value: Record<string, null>;
|
|
291
291
|
validators: import("../..").GalleryFieldValidators;
|
|
292
292
|
appearance: import("../..").GalleryFieldAppearance & Omit<{
|
|
293
293
|
[k: string]: unknown;
|
|
@@ -329,7 +329,7 @@ export default class Field extends BaseResource {
|
|
|
329
329
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
330
330
|
field_type: "integer";
|
|
331
331
|
localized: true;
|
|
332
|
-
default_value:
|
|
332
|
+
default_value: Record<string, import("../..").IntegerFieldValue>;
|
|
333
333
|
validators: import("../..").IntegerFieldValidators;
|
|
334
334
|
appearance: import("../..").IntegerFieldAppearance & Omit<{
|
|
335
335
|
[k: string]: unknown;
|
|
@@ -371,7 +371,7 @@ export default class Field extends BaseResource {
|
|
|
371
371
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
372
372
|
field_type: "json";
|
|
373
373
|
localized: true;
|
|
374
|
-
default_value:
|
|
374
|
+
default_value: Record<string, import("../..").JsonFieldValue>;
|
|
375
375
|
validators: import("../..").JsonFieldValidators;
|
|
376
376
|
appearance: import("../..").JsonFieldAppearance & Omit<{
|
|
377
377
|
[k: string]: unknown;
|
|
@@ -413,7 +413,7 @@ export default class Field extends BaseResource {
|
|
|
413
413
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
414
414
|
field_type: "lat_lon";
|
|
415
415
|
localized: true;
|
|
416
|
-
default_value:
|
|
416
|
+
default_value: Record<string, import("../..").LatLonFieldValue>;
|
|
417
417
|
validators: import("../..").LatLonFieldValidators;
|
|
418
418
|
appearance: import("../..").LatLonFieldAppearance & Omit<{
|
|
419
419
|
[k: string]: unknown;
|
|
@@ -455,7 +455,7 @@ export default class Field extends BaseResource {
|
|
|
455
455
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
456
456
|
field_type: "link";
|
|
457
457
|
localized: true;
|
|
458
|
-
default_value: Record<string, null
|
|
458
|
+
default_value: Record<string, null>;
|
|
459
459
|
validators: import("../..").LinkFieldValidators;
|
|
460
460
|
appearance: import("../..").LinkFieldAppearance & Omit<{
|
|
461
461
|
[k: string]: unknown;
|
|
@@ -497,7 +497,7 @@ export default class Field extends BaseResource {
|
|
|
497
497
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
498
498
|
field_type: "links";
|
|
499
499
|
localized: true;
|
|
500
|
-
default_value: Record<string, null
|
|
500
|
+
default_value: Record<string, null>;
|
|
501
501
|
validators: import("../..").LinksFieldValidators;
|
|
502
502
|
appearance: import("../..").LinksFieldAppearance & Omit<{
|
|
503
503
|
[k: string]: unknown;
|
|
@@ -539,7 +539,7 @@ export default class Field extends BaseResource {
|
|
|
539
539
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
540
540
|
field_type: "rich_text";
|
|
541
541
|
localized: true;
|
|
542
|
-
default_value: Record<string, null
|
|
542
|
+
default_value: Record<string, null>;
|
|
543
543
|
validators: import("../..").RichTextFieldValidators;
|
|
544
544
|
appearance: import("../..").RichTextFieldAppearance & Omit<{
|
|
545
545
|
[k: string]: unknown;
|
|
@@ -581,7 +581,7 @@ export default class Field extends BaseResource {
|
|
|
581
581
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
582
582
|
field_type: "seo";
|
|
583
583
|
localized: true;
|
|
584
|
-
default_value: Record<string, null
|
|
584
|
+
default_value: Record<string, null>;
|
|
585
585
|
validators: import("../..").SeoFieldValidators;
|
|
586
586
|
appearance: import("../..").SeoFieldAppearance & Omit<{
|
|
587
587
|
[k: string]: unknown;
|
|
@@ -623,7 +623,7 @@ export default class Field extends BaseResource {
|
|
|
623
623
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
624
624
|
field_type: "single_block";
|
|
625
625
|
localized: true;
|
|
626
|
-
default_value: Record<string, null
|
|
626
|
+
default_value: Record<string, null>;
|
|
627
627
|
validators: import("../..").SingleBlockFieldValidators;
|
|
628
628
|
appearance: import("../..").SingleBlockFieldAppearance & Omit<{
|
|
629
629
|
[k: string]: unknown;
|
|
@@ -665,7 +665,7 @@ export default class Field extends BaseResource {
|
|
|
665
665
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
666
666
|
field_type: "slug";
|
|
667
667
|
localized: true;
|
|
668
|
-
default_value: Record<string, null
|
|
668
|
+
default_value: Record<string, null>;
|
|
669
669
|
validators: import("../..").SlugFieldValidators;
|
|
670
670
|
appearance: import("../..").SlugFieldAppearance & Omit<{
|
|
671
671
|
[k: string]: unknown;
|
|
@@ -707,7 +707,7 @@ export default class Field extends BaseResource {
|
|
|
707
707
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
708
708
|
field_type: "string";
|
|
709
709
|
localized: true;
|
|
710
|
-
default_value:
|
|
710
|
+
default_value: Record<string, import("../..").StringFieldValue>;
|
|
711
711
|
validators: import("../..").StringFieldValidators;
|
|
712
712
|
appearance: import("../..").StringFieldAppearance & Omit<{
|
|
713
713
|
[k: string]: unknown;
|
|
@@ -749,7 +749,7 @@ export default class Field extends BaseResource {
|
|
|
749
749
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
750
750
|
field_type: "structured_text";
|
|
751
751
|
localized: true;
|
|
752
|
-
default_value: Record<string, null
|
|
752
|
+
default_value: Record<string, null>;
|
|
753
753
|
validators: import("../..").StructuredTextFieldValidators;
|
|
754
754
|
appearance: import("../..").StructuredTextFieldAppearance & Omit<{
|
|
755
755
|
[k: string]: unknown;
|
|
@@ -791,7 +791,7 @@ export default class Field extends BaseResource {
|
|
|
791
791
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
792
792
|
field_type: "text";
|
|
793
793
|
localized: true;
|
|
794
|
-
default_value:
|
|
794
|
+
default_value: Record<string, import("../..").TextFieldValue>;
|
|
795
795
|
validators: import("../..").TextFieldValidators;
|
|
796
796
|
appearance: import("../..").TextFieldAppearance & Omit<{
|
|
797
797
|
[k: string]: unknown;
|
|
@@ -833,7 +833,7 @@ export default class Field extends BaseResource {
|
|
|
833
833
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
834
834
|
field_type: "video";
|
|
835
835
|
localized: true;
|
|
836
|
-
default_value: Record<string, null
|
|
836
|
+
default_value: Record<string, null>;
|
|
837
837
|
validators: import("../..").VideoFieldValidators;
|
|
838
838
|
appearance: import("../..").VideoFieldAppearance & Omit<{
|
|
839
839
|
[k: string]: unknown;
|
|
@@ -893,7 +893,7 @@ export default class Field extends BaseResource {
|
|
|
893
893
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
894
894
|
field_type: "boolean";
|
|
895
895
|
localized: true;
|
|
896
|
-
default_value:
|
|
896
|
+
default_value: Record<string, import("../..").BooleanFieldValue>;
|
|
897
897
|
validators: import("../..").BooleanFieldValidators;
|
|
898
898
|
appearance: import("../..").BooleanFieldAppearance & Omit<{
|
|
899
899
|
[k: string]: unknown;
|
|
@@ -935,7 +935,7 @@ export default class Field extends BaseResource {
|
|
|
935
935
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
936
936
|
field_type: "color";
|
|
937
937
|
localized: true;
|
|
938
|
-
default_value:
|
|
938
|
+
default_value: Record<string, import("../..").ColorFieldValue>;
|
|
939
939
|
validators: import("../..").ColorFieldValidators;
|
|
940
940
|
appearance: import("../..").ColorFieldAppearance & Omit<{
|
|
941
941
|
[k: string]: unknown;
|
|
@@ -977,7 +977,7 @@ export default class Field extends BaseResource {
|
|
|
977
977
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
978
978
|
field_type: "date";
|
|
979
979
|
localized: true;
|
|
980
|
-
default_value:
|
|
980
|
+
default_value: Record<string, import("../..").DateFieldValue>;
|
|
981
981
|
validators: import("../..").DateFieldValidators;
|
|
982
982
|
appearance: import("../..").DateFieldAppearance & Omit<{
|
|
983
983
|
[k: string]: unknown;
|
|
@@ -1019,7 +1019,7 @@ export default class Field extends BaseResource {
|
|
|
1019
1019
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1020
1020
|
field_type: "date_time";
|
|
1021
1021
|
localized: true;
|
|
1022
|
-
default_value:
|
|
1022
|
+
default_value: Record<string, import("../..").DateTimeFieldValue>;
|
|
1023
1023
|
validators: import("../..").DateTimeFieldValidators;
|
|
1024
1024
|
appearance: import("../..").DateTimeFieldAppearance & Omit<{
|
|
1025
1025
|
[k: string]: unknown;
|
|
@@ -1061,7 +1061,7 @@ export default class Field extends BaseResource {
|
|
|
1061
1061
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1062
1062
|
field_type: "file";
|
|
1063
1063
|
localized: true;
|
|
1064
|
-
default_value: Record<string, null
|
|
1064
|
+
default_value: Record<string, null>;
|
|
1065
1065
|
validators: import("../..").FileFieldValidators;
|
|
1066
1066
|
appearance: import("../..").FileFieldAppearance & Omit<{
|
|
1067
1067
|
[k: string]: unknown;
|
|
@@ -1103,7 +1103,7 @@ export default class Field extends BaseResource {
|
|
|
1103
1103
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1104
1104
|
field_type: "float";
|
|
1105
1105
|
localized: true;
|
|
1106
|
-
default_value:
|
|
1106
|
+
default_value: Record<string, import("../..").FloatFieldValue>;
|
|
1107
1107
|
validators: import("../..").FloatFieldValidators;
|
|
1108
1108
|
appearance: import("../..").FloatFieldAppearance & Omit<{
|
|
1109
1109
|
[k: string]: unknown;
|
|
@@ -1145,7 +1145,7 @@ export default class Field extends BaseResource {
|
|
|
1145
1145
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1146
1146
|
field_type: "gallery";
|
|
1147
1147
|
localized: true;
|
|
1148
|
-
default_value: Record<string, null
|
|
1148
|
+
default_value: Record<string, null>;
|
|
1149
1149
|
validators: import("../..").GalleryFieldValidators;
|
|
1150
1150
|
appearance: import("../..").GalleryFieldAppearance & Omit<{
|
|
1151
1151
|
[k: string]: unknown;
|
|
@@ -1187,7 +1187,7 @@ export default class Field extends BaseResource {
|
|
|
1187
1187
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1188
1188
|
field_type: "integer";
|
|
1189
1189
|
localized: true;
|
|
1190
|
-
default_value:
|
|
1190
|
+
default_value: Record<string, import("../..").IntegerFieldValue>;
|
|
1191
1191
|
validators: import("../..").IntegerFieldValidators;
|
|
1192
1192
|
appearance: import("../..").IntegerFieldAppearance & Omit<{
|
|
1193
1193
|
[k: string]: unknown;
|
|
@@ -1229,7 +1229,7 @@ export default class Field extends BaseResource {
|
|
|
1229
1229
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1230
1230
|
field_type: "json";
|
|
1231
1231
|
localized: true;
|
|
1232
|
-
default_value:
|
|
1232
|
+
default_value: Record<string, import("../..").JsonFieldValue>;
|
|
1233
1233
|
validators: import("../..").JsonFieldValidators;
|
|
1234
1234
|
appearance: import("../..").JsonFieldAppearance & Omit<{
|
|
1235
1235
|
[k: string]: unknown;
|
|
@@ -1271,7 +1271,7 @@ export default class Field extends BaseResource {
|
|
|
1271
1271
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1272
1272
|
field_type: "lat_lon";
|
|
1273
1273
|
localized: true;
|
|
1274
|
-
default_value:
|
|
1274
|
+
default_value: Record<string, import("../..").LatLonFieldValue>;
|
|
1275
1275
|
validators: import("../..").LatLonFieldValidators;
|
|
1276
1276
|
appearance: import("../..").LatLonFieldAppearance & Omit<{
|
|
1277
1277
|
[k: string]: unknown;
|
|
@@ -1313,7 +1313,7 @@ export default class Field extends BaseResource {
|
|
|
1313
1313
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1314
1314
|
field_type: "link";
|
|
1315
1315
|
localized: true;
|
|
1316
|
-
default_value: Record<string, null
|
|
1316
|
+
default_value: Record<string, null>;
|
|
1317
1317
|
validators: import("../..").LinkFieldValidators;
|
|
1318
1318
|
appearance: import("../..").LinkFieldAppearance & Omit<{
|
|
1319
1319
|
[k: string]: unknown;
|
|
@@ -1355,7 +1355,7 @@ export default class Field extends BaseResource {
|
|
|
1355
1355
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1356
1356
|
field_type: "links";
|
|
1357
1357
|
localized: true;
|
|
1358
|
-
default_value: Record<string, null
|
|
1358
|
+
default_value: Record<string, null>;
|
|
1359
1359
|
validators: import("../..").LinksFieldValidators;
|
|
1360
1360
|
appearance: import("../..").LinksFieldAppearance & Omit<{
|
|
1361
1361
|
[k: string]: unknown;
|
|
@@ -1397,7 +1397,7 @@ export default class Field extends BaseResource {
|
|
|
1397
1397
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1398
1398
|
field_type: "rich_text";
|
|
1399
1399
|
localized: true;
|
|
1400
|
-
default_value: Record<string, null
|
|
1400
|
+
default_value: Record<string, null>;
|
|
1401
1401
|
validators: import("../..").RichTextFieldValidators;
|
|
1402
1402
|
appearance: import("../..").RichTextFieldAppearance & Omit<{
|
|
1403
1403
|
[k: string]: unknown;
|
|
@@ -1439,7 +1439,7 @@ export default class Field extends BaseResource {
|
|
|
1439
1439
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1440
1440
|
field_type: "seo";
|
|
1441
1441
|
localized: true;
|
|
1442
|
-
default_value: Record<string, null
|
|
1442
|
+
default_value: Record<string, null>;
|
|
1443
1443
|
validators: import("../..").SeoFieldValidators;
|
|
1444
1444
|
appearance: import("../..").SeoFieldAppearance & Omit<{
|
|
1445
1445
|
[k: string]: unknown;
|
|
@@ -1481,7 +1481,7 @@ export default class Field extends BaseResource {
|
|
|
1481
1481
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1482
1482
|
field_type: "single_block";
|
|
1483
1483
|
localized: true;
|
|
1484
|
-
default_value: Record<string, null
|
|
1484
|
+
default_value: Record<string, null>;
|
|
1485
1485
|
validators: import("../..").SingleBlockFieldValidators;
|
|
1486
1486
|
appearance: import("../..").SingleBlockFieldAppearance & Omit<{
|
|
1487
1487
|
[k: string]: unknown;
|
|
@@ -1523,7 +1523,7 @@ export default class Field extends BaseResource {
|
|
|
1523
1523
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1524
1524
|
field_type: "slug";
|
|
1525
1525
|
localized: true;
|
|
1526
|
-
default_value: Record<string, null
|
|
1526
|
+
default_value: Record<string, null>;
|
|
1527
1527
|
validators: import("../..").SlugFieldValidators;
|
|
1528
1528
|
appearance: import("../..").SlugFieldAppearance & Omit<{
|
|
1529
1529
|
[k: string]: unknown;
|
|
@@ -1565,7 +1565,7 @@ export default class Field extends BaseResource {
|
|
|
1565
1565
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1566
1566
|
field_type: "string";
|
|
1567
1567
|
localized: true;
|
|
1568
|
-
default_value:
|
|
1568
|
+
default_value: Record<string, import("../..").StringFieldValue>;
|
|
1569
1569
|
validators: import("../..").StringFieldValidators;
|
|
1570
1570
|
appearance: import("../..").StringFieldAppearance & Omit<{
|
|
1571
1571
|
[k: string]: unknown;
|
|
@@ -1607,7 +1607,7 @@ export default class Field extends BaseResource {
|
|
|
1607
1607
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1608
1608
|
field_type: "structured_text";
|
|
1609
1609
|
localized: true;
|
|
1610
|
-
default_value: Record<string, null
|
|
1610
|
+
default_value: Record<string, null>;
|
|
1611
1611
|
validators: import("../..").StructuredTextFieldValidators;
|
|
1612
1612
|
appearance: import("../..").StructuredTextFieldAppearance & Omit<{
|
|
1613
1613
|
[k: string]: unknown;
|
|
@@ -1649,7 +1649,7 @@ export default class Field extends BaseResource {
|
|
|
1649
1649
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1650
1650
|
field_type: "text";
|
|
1651
1651
|
localized: true;
|
|
1652
|
-
default_value:
|
|
1652
|
+
default_value: Record<string, import("../..").TextFieldValue>;
|
|
1653
1653
|
validators: import("../..").TextFieldValidators;
|
|
1654
1654
|
appearance: import("../..").TextFieldAppearance & Omit<{
|
|
1655
1655
|
[k: string]: unknown;
|
|
@@ -1691,7 +1691,7 @@ export default class Field extends BaseResource {
|
|
|
1691
1691
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1692
1692
|
field_type: "video";
|
|
1693
1693
|
localized: true;
|
|
1694
|
-
default_value: Record<string, null
|
|
1694
|
+
default_value: Record<string, null>;
|
|
1695
1695
|
validators: import("../..").VideoFieldValidators;
|
|
1696
1696
|
appearance: import("../..").VideoFieldAppearance & Omit<{
|
|
1697
1697
|
[k: string]: unknown;
|
|
@@ -1813,7 +1813,7 @@ export default class Field extends BaseResource {
|
|
|
1813
1813
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1814
1814
|
field_type: "boolean";
|
|
1815
1815
|
localized: true;
|
|
1816
|
-
default_value:
|
|
1816
|
+
default_value: Record<string, import("../..").BooleanFieldValue>;
|
|
1817
1817
|
validators: import("../..").BooleanFieldValidators;
|
|
1818
1818
|
appearance: import("../..").BooleanFieldAppearance & Omit<{
|
|
1819
1819
|
[k: string]: unknown;
|
|
@@ -1855,7 +1855,7 @@ export default class Field extends BaseResource {
|
|
|
1855
1855
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1856
1856
|
field_type: "color";
|
|
1857
1857
|
localized: true;
|
|
1858
|
-
default_value:
|
|
1858
|
+
default_value: Record<string, import("../..").ColorFieldValue>;
|
|
1859
1859
|
validators: import("../..").ColorFieldValidators;
|
|
1860
1860
|
appearance: import("../..").ColorFieldAppearance & Omit<{
|
|
1861
1861
|
[k: string]: unknown;
|
|
@@ -1897,7 +1897,7 @@ export default class Field extends BaseResource {
|
|
|
1897
1897
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1898
1898
|
field_type: "date";
|
|
1899
1899
|
localized: true;
|
|
1900
|
-
default_value:
|
|
1900
|
+
default_value: Record<string, import("../..").DateFieldValue>;
|
|
1901
1901
|
validators: import("../..").DateFieldValidators;
|
|
1902
1902
|
appearance: import("../..").DateFieldAppearance & Omit<{
|
|
1903
1903
|
[k: string]: unknown;
|
|
@@ -1939,7 +1939,7 @@ export default class Field extends BaseResource {
|
|
|
1939
1939
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1940
1940
|
field_type: "date_time";
|
|
1941
1941
|
localized: true;
|
|
1942
|
-
default_value:
|
|
1942
|
+
default_value: Record<string, import("../..").DateTimeFieldValue>;
|
|
1943
1943
|
validators: import("../..").DateTimeFieldValidators;
|
|
1944
1944
|
appearance: import("../..").DateTimeFieldAppearance & Omit<{
|
|
1945
1945
|
[k: string]: unknown;
|
|
@@ -1981,7 +1981,7 @@ export default class Field extends BaseResource {
|
|
|
1981
1981
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
1982
1982
|
field_type: "file";
|
|
1983
1983
|
localized: true;
|
|
1984
|
-
default_value: Record<string, null
|
|
1984
|
+
default_value: Record<string, null>;
|
|
1985
1985
|
validators: import("../..").FileFieldValidators;
|
|
1986
1986
|
appearance: import("../..").FileFieldAppearance & Omit<{
|
|
1987
1987
|
[k: string]: unknown;
|
|
@@ -2023,7 +2023,7 @@ export default class Field extends BaseResource {
|
|
|
2023
2023
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2024
2024
|
field_type: "float";
|
|
2025
2025
|
localized: true;
|
|
2026
|
-
default_value:
|
|
2026
|
+
default_value: Record<string, import("../..").FloatFieldValue>;
|
|
2027
2027
|
validators: import("../..").FloatFieldValidators;
|
|
2028
2028
|
appearance: import("../..").FloatFieldAppearance & Omit<{
|
|
2029
2029
|
[k: string]: unknown;
|
|
@@ -2065,7 +2065,7 @@ export default class Field extends BaseResource {
|
|
|
2065
2065
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2066
2066
|
field_type: "gallery";
|
|
2067
2067
|
localized: true;
|
|
2068
|
-
default_value: Record<string, null
|
|
2068
|
+
default_value: Record<string, null>;
|
|
2069
2069
|
validators: import("../..").GalleryFieldValidators;
|
|
2070
2070
|
appearance: import("../..").GalleryFieldAppearance & Omit<{
|
|
2071
2071
|
[k: string]: unknown;
|
|
@@ -2107,7 +2107,7 @@ export default class Field extends BaseResource {
|
|
|
2107
2107
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2108
2108
|
field_type: "integer";
|
|
2109
2109
|
localized: true;
|
|
2110
|
-
default_value:
|
|
2110
|
+
default_value: Record<string, import("../..").IntegerFieldValue>;
|
|
2111
2111
|
validators: import("../..").IntegerFieldValidators;
|
|
2112
2112
|
appearance: import("../..").IntegerFieldAppearance & Omit<{
|
|
2113
2113
|
[k: string]: unknown;
|
|
@@ -2149,7 +2149,7 @@ export default class Field extends BaseResource {
|
|
|
2149
2149
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2150
2150
|
field_type: "json";
|
|
2151
2151
|
localized: true;
|
|
2152
|
-
default_value:
|
|
2152
|
+
default_value: Record<string, import("../..").JsonFieldValue>;
|
|
2153
2153
|
validators: import("../..").JsonFieldValidators;
|
|
2154
2154
|
appearance: import("../..").JsonFieldAppearance & Omit<{
|
|
2155
2155
|
[k: string]: unknown;
|
|
@@ -2191,7 +2191,7 @@ export default class Field extends BaseResource {
|
|
|
2191
2191
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2192
2192
|
field_type: "lat_lon";
|
|
2193
2193
|
localized: true;
|
|
2194
|
-
default_value:
|
|
2194
|
+
default_value: Record<string, import("../..").LatLonFieldValue>;
|
|
2195
2195
|
validators: import("../..").LatLonFieldValidators;
|
|
2196
2196
|
appearance: import("../..").LatLonFieldAppearance & Omit<{
|
|
2197
2197
|
[k: string]: unknown;
|
|
@@ -2233,7 +2233,7 @@ export default class Field extends BaseResource {
|
|
|
2233
2233
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2234
2234
|
field_type: "link";
|
|
2235
2235
|
localized: true;
|
|
2236
|
-
default_value: Record<string, null
|
|
2236
|
+
default_value: Record<string, null>;
|
|
2237
2237
|
validators: import("../..").LinkFieldValidators;
|
|
2238
2238
|
appearance: import("../..").LinkFieldAppearance & Omit<{
|
|
2239
2239
|
[k: string]: unknown;
|
|
@@ -2275,7 +2275,7 @@ export default class Field extends BaseResource {
|
|
|
2275
2275
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2276
2276
|
field_type: "links";
|
|
2277
2277
|
localized: true;
|
|
2278
|
-
default_value: Record<string, null
|
|
2278
|
+
default_value: Record<string, null>;
|
|
2279
2279
|
validators: import("../..").LinksFieldValidators;
|
|
2280
2280
|
appearance: import("../..").LinksFieldAppearance & Omit<{
|
|
2281
2281
|
[k: string]: unknown;
|
|
@@ -2317,7 +2317,7 @@ export default class Field extends BaseResource {
|
|
|
2317
2317
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2318
2318
|
field_type: "rich_text";
|
|
2319
2319
|
localized: true;
|
|
2320
|
-
default_value: Record<string, null
|
|
2320
|
+
default_value: Record<string, null>;
|
|
2321
2321
|
validators: import("../..").RichTextFieldValidators;
|
|
2322
2322
|
appearance: import("../..").RichTextFieldAppearance & Omit<{
|
|
2323
2323
|
[k: string]: unknown;
|
|
@@ -2359,7 +2359,7 @@ export default class Field extends BaseResource {
|
|
|
2359
2359
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2360
2360
|
field_type: "seo";
|
|
2361
2361
|
localized: true;
|
|
2362
|
-
default_value: Record<string, null
|
|
2362
|
+
default_value: Record<string, null>;
|
|
2363
2363
|
validators: import("../..").SeoFieldValidators;
|
|
2364
2364
|
appearance: import("../..").SeoFieldAppearance & Omit<{
|
|
2365
2365
|
[k: string]: unknown;
|
|
@@ -2401,7 +2401,7 @@ export default class Field extends BaseResource {
|
|
|
2401
2401
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2402
2402
|
field_type: "single_block";
|
|
2403
2403
|
localized: true;
|
|
2404
|
-
default_value: Record<string, null
|
|
2404
|
+
default_value: Record<string, null>;
|
|
2405
2405
|
validators: import("../..").SingleBlockFieldValidators;
|
|
2406
2406
|
appearance: import("../..").SingleBlockFieldAppearance & Omit<{
|
|
2407
2407
|
[k: string]: unknown;
|
|
@@ -2443,7 +2443,7 @@ export default class Field extends BaseResource {
|
|
|
2443
2443
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2444
2444
|
field_type: "slug";
|
|
2445
2445
|
localized: true;
|
|
2446
|
-
default_value: Record<string, null
|
|
2446
|
+
default_value: Record<string, null>;
|
|
2447
2447
|
validators: import("../..").SlugFieldValidators;
|
|
2448
2448
|
appearance: import("../..").SlugFieldAppearance & Omit<{
|
|
2449
2449
|
[k: string]: unknown;
|
|
@@ -2485,7 +2485,7 @@ export default class Field extends BaseResource {
|
|
|
2485
2485
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2486
2486
|
field_type: "string";
|
|
2487
2487
|
localized: true;
|
|
2488
|
-
default_value:
|
|
2488
|
+
default_value: Record<string, import("../..").StringFieldValue>;
|
|
2489
2489
|
validators: import("../..").StringFieldValidators;
|
|
2490
2490
|
appearance: import("../..").StringFieldAppearance & Omit<{
|
|
2491
2491
|
[k: string]: unknown;
|
|
@@ -2527,7 +2527,7 @@ export default class Field extends BaseResource {
|
|
|
2527
2527
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2528
2528
|
field_type: "structured_text";
|
|
2529
2529
|
localized: true;
|
|
2530
|
-
default_value: Record<string, null
|
|
2530
|
+
default_value: Record<string, null>;
|
|
2531
2531
|
validators: import("../..").StructuredTextFieldValidators;
|
|
2532
2532
|
appearance: import("../..").StructuredTextFieldAppearance & Omit<{
|
|
2533
2533
|
[k: string]: unknown;
|
|
@@ -2569,7 +2569,7 @@ export default class Field extends BaseResource {
|
|
|
2569
2569
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2570
2570
|
field_type: "text";
|
|
2571
2571
|
localized: true;
|
|
2572
|
-
default_value:
|
|
2572
|
+
default_value: Record<string, import("../..").TextFieldValue>;
|
|
2573
2573
|
validators: import("../..").TextFieldValidators;
|
|
2574
2574
|
appearance: import("../..").TextFieldAppearance & Omit<{
|
|
2575
2575
|
[k: string]: unknown;
|
|
@@ -2611,7 +2611,7 @@ export default class Field extends BaseResource {
|
|
|
2611
2611
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2612
2612
|
field_type: "video";
|
|
2613
2613
|
localized: true;
|
|
2614
|
-
default_value: Record<string, null
|
|
2614
|
+
default_value: Record<string, null>;
|
|
2615
2615
|
validators: import("../..").VideoFieldValidators;
|
|
2616
2616
|
appearance: import("../..").VideoFieldAppearance & Omit<{
|
|
2617
2617
|
[k: string]: unknown;
|
|
@@ -2671,7 +2671,7 @@ export default class Field extends BaseResource {
|
|
|
2671
2671
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2672
2672
|
field_type: "boolean";
|
|
2673
2673
|
localized: true;
|
|
2674
|
-
default_value:
|
|
2674
|
+
default_value: Record<string, import("../..").BooleanFieldValue>;
|
|
2675
2675
|
validators: import("../..").BooleanFieldValidators;
|
|
2676
2676
|
appearance: import("../..").BooleanFieldAppearance & Omit<{
|
|
2677
2677
|
[k: string]: unknown;
|
|
@@ -2713,7 +2713,7 @@ export default class Field extends BaseResource {
|
|
|
2713
2713
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2714
2714
|
field_type: "color";
|
|
2715
2715
|
localized: true;
|
|
2716
|
-
default_value:
|
|
2716
|
+
default_value: Record<string, import("../..").ColorFieldValue>;
|
|
2717
2717
|
validators: import("../..").ColorFieldValidators;
|
|
2718
2718
|
appearance: import("../..").ColorFieldAppearance & Omit<{
|
|
2719
2719
|
[k: string]: unknown;
|
|
@@ -2755,7 +2755,7 @@ export default class Field extends BaseResource {
|
|
|
2755
2755
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2756
2756
|
field_type: "date";
|
|
2757
2757
|
localized: true;
|
|
2758
|
-
default_value:
|
|
2758
|
+
default_value: Record<string, import("../..").DateFieldValue>;
|
|
2759
2759
|
validators: import("../..").DateFieldValidators;
|
|
2760
2760
|
appearance: import("../..").DateFieldAppearance & Omit<{
|
|
2761
2761
|
[k: string]: unknown;
|
|
@@ -2797,7 +2797,7 @@ export default class Field extends BaseResource {
|
|
|
2797
2797
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2798
2798
|
field_type: "date_time";
|
|
2799
2799
|
localized: true;
|
|
2800
|
-
default_value:
|
|
2800
|
+
default_value: Record<string, import("../..").DateTimeFieldValue>;
|
|
2801
2801
|
validators: import("../..").DateTimeFieldValidators;
|
|
2802
2802
|
appearance: import("../..").DateTimeFieldAppearance & Omit<{
|
|
2803
2803
|
[k: string]: unknown;
|
|
@@ -2839,7 +2839,7 @@ export default class Field extends BaseResource {
|
|
|
2839
2839
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2840
2840
|
field_type: "file";
|
|
2841
2841
|
localized: true;
|
|
2842
|
-
default_value: Record<string, null
|
|
2842
|
+
default_value: Record<string, null>;
|
|
2843
2843
|
validators: import("../..").FileFieldValidators;
|
|
2844
2844
|
appearance: import("../..").FileFieldAppearance & Omit<{
|
|
2845
2845
|
[k: string]: unknown;
|
|
@@ -2881,7 +2881,7 @@ export default class Field extends BaseResource {
|
|
|
2881
2881
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2882
2882
|
field_type: "float";
|
|
2883
2883
|
localized: true;
|
|
2884
|
-
default_value:
|
|
2884
|
+
default_value: Record<string, import("../..").FloatFieldValue>;
|
|
2885
2885
|
validators: import("../..").FloatFieldValidators;
|
|
2886
2886
|
appearance: import("../..").FloatFieldAppearance & Omit<{
|
|
2887
2887
|
[k: string]: unknown;
|
|
@@ -2923,7 +2923,7 @@ export default class Field extends BaseResource {
|
|
|
2923
2923
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2924
2924
|
field_type: "gallery";
|
|
2925
2925
|
localized: true;
|
|
2926
|
-
default_value: Record<string, null
|
|
2926
|
+
default_value: Record<string, null>;
|
|
2927
2927
|
validators: import("../..").GalleryFieldValidators;
|
|
2928
2928
|
appearance: import("../..").GalleryFieldAppearance & Omit<{
|
|
2929
2929
|
[k: string]: unknown;
|
|
@@ -2965,7 +2965,7 @@ export default class Field extends BaseResource {
|
|
|
2965
2965
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
2966
2966
|
field_type: "integer";
|
|
2967
2967
|
localized: true;
|
|
2968
|
-
default_value:
|
|
2968
|
+
default_value: Record<string, import("../..").IntegerFieldValue>;
|
|
2969
2969
|
validators: import("../..").IntegerFieldValidators;
|
|
2970
2970
|
appearance: import("../..").IntegerFieldAppearance & Omit<{
|
|
2971
2971
|
[k: string]: unknown;
|
|
@@ -3007,7 +3007,7 @@ export default class Field extends BaseResource {
|
|
|
3007
3007
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3008
3008
|
field_type: "json";
|
|
3009
3009
|
localized: true;
|
|
3010
|
-
default_value:
|
|
3010
|
+
default_value: Record<string, import("../..").JsonFieldValue>;
|
|
3011
3011
|
validators: import("../..").JsonFieldValidators;
|
|
3012
3012
|
appearance: import("../..").JsonFieldAppearance & Omit<{
|
|
3013
3013
|
[k: string]: unknown;
|
|
@@ -3049,7 +3049,7 @@ export default class Field extends BaseResource {
|
|
|
3049
3049
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3050
3050
|
field_type: "lat_lon";
|
|
3051
3051
|
localized: true;
|
|
3052
|
-
default_value:
|
|
3052
|
+
default_value: Record<string, import("../..").LatLonFieldValue>;
|
|
3053
3053
|
validators: import("../..").LatLonFieldValidators;
|
|
3054
3054
|
appearance: import("../..").LatLonFieldAppearance & Omit<{
|
|
3055
3055
|
[k: string]: unknown;
|
|
@@ -3091,7 +3091,7 @@ export default class Field extends BaseResource {
|
|
|
3091
3091
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3092
3092
|
field_type: "link";
|
|
3093
3093
|
localized: true;
|
|
3094
|
-
default_value: Record<string, null
|
|
3094
|
+
default_value: Record<string, null>;
|
|
3095
3095
|
validators: import("../..").LinkFieldValidators;
|
|
3096
3096
|
appearance: import("../..").LinkFieldAppearance & Omit<{
|
|
3097
3097
|
[k: string]: unknown;
|
|
@@ -3133,7 +3133,7 @@ export default class Field extends BaseResource {
|
|
|
3133
3133
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3134
3134
|
field_type: "links";
|
|
3135
3135
|
localized: true;
|
|
3136
|
-
default_value: Record<string, null
|
|
3136
|
+
default_value: Record<string, null>;
|
|
3137
3137
|
validators: import("../..").LinksFieldValidators;
|
|
3138
3138
|
appearance: import("../..").LinksFieldAppearance & Omit<{
|
|
3139
3139
|
[k: string]: unknown;
|
|
@@ -3175,7 +3175,7 @@ export default class Field extends BaseResource {
|
|
|
3175
3175
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3176
3176
|
field_type: "rich_text";
|
|
3177
3177
|
localized: true;
|
|
3178
|
-
default_value: Record<string, null
|
|
3178
|
+
default_value: Record<string, null>;
|
|
3179
3179
|
validators: import("../..").RichTextFieldValidators;
|
|
3180
3180
|
appearance: import("../..").RichTextFieldAppearance & Omit<{
|
|
3181
3181
|
[k: string]: unknown;
|
|
@@ -3217,7 +3217,7 @@ export default class Field extends BaseResource {
|
|
|
3217
3217
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3218
3218
|
field_type: "seo";
|
|
3219
3219
|
localized: true;
|
|
3220
|
-
default_value: Record<string, null
|
|
3220
|
+
default_value: Record<string, null>;
|
|
3221
3221
|
validators: import("../..").SeoFieldValidators;
|
|
3222
3222
|
appearance: import("../..").SeoFieldAppearance & Omit<{
|
|
3223
3223
|
[k: string]: unknown;
|
|
@@ -3259,7 +3259,7 @@ export default class Field extends BaseResource {
|
|
|
3259
3259
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3260
3260
|
field_type: "single_block";
|
|
3261
3261
|
localized: true;
|
|
3262
|
-
default_value: Record<string, null
|
|
3262
|
+
default_value: Record<string, null>;
|
|
3263
3263
|
validators: import("../..").SingleBlockFieldValidators;
|
|
3264
3264
|
appearance: import("../..").SingleBlockFieldAppearance & Omit<{
|
|
3265
3265
|
[k: string]: unknown;
|
|
@@ -3301,7 +3301,7 @@ export default class Field extends BaseResource {
|
|
|
3301
3301
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3302
3302
|
field_type: "slug";
|
|
3303
3303
|
localized: true;
|
|
3304
|
-
default_value: Record<string, null
|
|
3304
|
+
default_value: Record<string, null>;
|
|
3305
3305
|
validators: import("../..").SlugFieldValidators;
|
|
3306
3306
|
appearance: import("../..").SlugFieldAppearance & Omit<{
|
|
3307
3307
|
[k: string]: unknown;
|
|
@@ -3343,7 +3343,7 @@ export default class Field extends BaseResource {
|
|
|
3343
3343
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3344
3344
|
field_type: "string";
|
|
3345
3345
|
localized: true;
|
|
3346
|
-
default_value:
|
|
3346
|
+
default_value: Record<string, import("../..").StringFieldValue>;
|
|
3347
3347
|
validators: import("../..").StringFieldValidators;
|
|
3348
3348
|
appearance: import("../..").StringFieldAppearance & Omit<{
|
|
3349
3349
|
[k: string]: unknown;
|
|
@@ -3385,7 +3385,7 @@ export default class Field extends BaseResource {
|
|
|
3385
3385
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3386
3386
|
field_type: "structured_text";
|
|
3387
3387
|
localized: true;
|
|
3388
|
-
default_value: Record<string, null
|
|
3388
|
+
default_value: Record<string, null>;
|
|
3389
3389
|
validators: import("../..").StructuredTextFieldValidators;
|
|
3390
3390
|
appearance: import("../..").StructuredTextFieldAppearance & Omit<{
|
|
3391
3391
|
[k: string]: unknown;
|
|
@@ -3427,7 +3427,7 @@ export default class Field extends BaseResource {
|
|
|
3427
3427
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3428
3428
|
field_type: "text";
|
|
3429
3429
|
localized: true;
|
|
3430
|
-
default_value:
|
|
3430
|
+
default_value: Record<string, import("../..").TextFieldValue>;
|
|
3431
3431
|
validators: import("../..").TextFieldValidators;
|
|
3432
3432
|
appearance: import("../..").TextFieldAppearance & Omit<{
|
|
3433
3433
|
[k: string]: unknown;
|
|
@@ -3469,7 +3469,7 @@ export default class Field extends BaseResource {
|
|
|
3469
3469
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3470
3470
|
field_type: "video";
|
|
3471
3471
|
localized: true;
|
|
3472
|
-
default_value: Record<string, null
|
|
3472
|
+
default_value: Record<string, null>;
|
|
3473
3473
|
validators: import("../..").VideoFieldValidators;
|
|
3474
3474
|
appearance: import("../..").VideoFieldAppearance & Omit<{
|
|
3475
3475
|
[k: string]: unknown;
|
|
@@ -3529,7 +3529,7 @@ export default class Field extends BaseResource {
|
|
|
3529
3529
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3530
3530
|
field_type: "boolean";
|
|
3531
3531
|
localized: true;
|
|
3532
|
-
default_value:
|
|
3532
|
+
default_value: Record<string, import("../..").BooleanFieldValue>;
|
|
3533
3533
|
validators: import("../..").BooleanFieldValidators;
|
|
3534
3534
|
appearance: import("../..").BooleanFieldAppearance & Omit<{
|
|
3535
3535
|
[k: string]: unknown;
|
|
@@ -3571,7 +3571,7 @@ export default class Field extends BaseResource {
|
|
|
3571
3571
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3572
3572
|
field_type: "color";
|
|
3573
3573
|
localized: true;
|
|
3574
|
-
default_value:
|
|
3574
|
+
default_value: Record<string, import("../..").ColorFieldValue>;
|
|
3575
3575
|
validators: import("../..").ColorFieldValidators;
|
|
3576
3576
|
appearance: import("../..").ColorFieldAppearance & Omit<{
|
|
3577
3577
|
[k: string]: unknown;
|
|
@@ -3613,7 +3613,7 @@ export default class Field extends BaseResource {
|
|
|
3613
3613
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3614
3614
|
field_type: "date";
|
|
3615
3615
|
localized: true;
|
|
3616
|
-
default_value:
|
|
3616
|
+
default_value: Record<string, import("../..").DateFieldValue>;
|
|
3617
3617
|
validators: import("../..").DateFieldValidators;
|
|
3618
3618
|
appearance: import("../..").DateFieldAppearance & Omit<{
|
|
3619
3619
|
[k: string]: unknown;
|
|
@@ -3655,7 +3655,7 @@ export default class Field extends BaseResource {
|
|
|
3655
3655
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3656
3656
|
field_type: "date_time";
|
|
3657
3657
|
localized: true;
|
|
3658
|
-
default_value:
|
|
3658
|
+
default_value: Record<string, import("../..").DateTimeFieldValue>;
|
|
3659
3659
|
validators: import("../..").DateTimeFieldValidators;
|
|
3660
3660
|
appearance: import("../..").DateTimeFieldAppearance & Omit<{
|
|
3661
3661
|
[k: string]: unknown;
|
|
@@ -3697,7 +3697,7 @@ export default class Field extends BaseResource {
|
|
|
3697
3697
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3698
3698
|
field_type: "file";
|
|
3699
3699
|
localized: true;
|
|
3700
|
-
default_value: Record<string, null
|
|
3700
|
+
default_value: Record<string, null>;
|
|
3701
3701
|
validators: import("../..").FileFieldValidators;
|
|
3702
3702
|
appearance: import("../..").FileFieldAppearance & Omit<{
|
|
3703
3703
|
[k: string]: unknown;
|
|
@@ -3739,7 +3739,7 @@ export default class Field extends BaseResource {
|
|
|
3739
3739
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3740
3740
|
field_type: "float";
|
|
3741
3741
|
localized: true;
|
|
3742
|
-
default_value:
|
|
3742
|
+
default_value: Record<string, import("../..").FloatFieldValue>;
|
|
3743
3743
|
validators: import("../..").FloatFieldValidators;
|
|
3744
3744
|
appearance: import("../..").FloatFieldAppearance & Omit<{
|
|
3745
3745
|
[k: string]: unknown;
|
|
@@ -3781,7 +3781,7 @@ export default class Field extends BaseResource {
|
|
|
3781
3781
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3782
3782
|
field_type: "gallery";
|
|
3783
3783
|
localized: true;
|
|
3784
|
-
default_value: Record<string, null
|
|
3784
|
+
default_value: Record<string, null>;
|
|
3785
3785
|
validators: import("../..").GalleryFieldValidators;
|
|
3786
3786
|
appearance: import("../..").GalleryFieldAppearance & Omit<{
|
|
3787
3787
|
[k: string]: unknown;
|
|
@@ -3823,7 +3823,7 @@ export default class Field extends BaseResource {
|
|
|
3823
3823
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3824
3824
|
field_type: "integer";
|
|
3825
3825
|
localized: true;
|
|
3826
|
-
default_value:
|
|
3826
|
+
default_value: Record<string, import("../..").IntegerFieldValue>;
|
|
3827
3827
|
validators: import("../..").IntegerFieldValidators;
|
|
3828
3828
|
appearance: import("../..").IntegerFieldAppearance & Omit<{
|
|
3829
3829
|
[k: string]: unknown;
|
|
@@ -3865,7 +3865,7 @@ export default class Field extends BaseResource {
|
|
|
3865
3865
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3866
3866
|
field_type: "json";
|
|
3867
3867
|
localized: true;
|
|
3868
|
-
default_value:
|
|
3868
|
+
default_value: Record<string, import("../..").JsonFieldValue>;
|
|
3869
3869
|
validators: import("../..").JsonFieldValidators;
|
|
3870
3870
|
appearance: import("../..").JsonFieldAppearance & Omit<{
|
|
3871
3871
|
[k: string]: unknown;
|
|
@@ -3907,7 +3907,7 @@ export default class Field extends BaseResource {
|
|
|
3907
3907
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3908
3908
|
field_type: "lat_lon";
|
|
3909
3909
|
localized: true;
|
|
3910
|
-
default_value:
|
|
3910
|
+
default_value: Record<string, import("../..").LatLonFieldValue>;
|
|
3911
3911
|
validators: import("../..").LatLonFieldValidators;
|
|
3912
3912
|
appearance: import("../..").LatLonFieldAppearance & Omit<{
|
|
3913
3913
|
[k: string]: unknown;
|
|
@@ -3949,7 +3949,7 @@ export default class Field extends BaseResource {
|
|
|
3949
3949
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3950
3950
|
field_type: "link";
|
|
3951
3951
|
localized: true;
|
|
3952
|
-
default_value: Record<string, null
|
|
3952
|
+
default_value: Record<string, null>;
|
|
3953
3953
|
validators: import("../..").LinkFieldValidators;
|
|
3954
3954
|
appearance: import("../..").LinkFieldAppearance & Omit<{
|
|
3955
3955
|
[k: string]: unknown;
|
|
@@ -3991,7 +3991,7 @@ export default class Field extends BaseResource {
|
|
|
3991
3991
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
3992
3992
|
field_type: "links";
|
|
3993
3993
|
localized: true;
|
|
3994
|
-
default_value: Record<string, null
|
|
3994
|
+
default_value: Record<string, null>;
|
|
3995
3995
|
validators: import("../..").LinksFieldValidators;
|
|
3996
3996
|
appearance: import("../..").LinksFieldAppearance & Omit<{
|
|
3997
3997
|
[k: string]: unknown;
|
|
@@ -4033,7 +4033,7 @@ export default class Field extends BaseResource {
|
|
|
4033
4033
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
4034
4034
|
field_type: "rich_text";
|
|
4035
4035
|
localized: true;
|
|
4036
|
-
default_value: Record<string, null
|
|
4036
|
+
default_value: Record<string, null>;
|
|
4037
4037
|
validators: import("../..").RichTextFieldValidators;
|
|
4038
4038
|
appearance: import("../..").RichTextFieldAppearance & Omit<{
|
|
4039
4039
|
[k: string]: unknown;
|
|
@@ -4075,7 +4075,7 @@ export default class Field extends BaseResource {
|
|
|
4075
4075
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
4076
4076
|
field_type: "seo";
|
|
4077
4077
|
localized: true;
|
|
4078
|
-
default_value: Record<string, null
|
|
4078
|
+
default_value: Record<string, null>;
|
|
4079
4079
|
validators: import("../..").SeoFieldValidators;
|
|
4080
4080
|
appearance: import("../..").SeoFieldAppearance & Omit<{
|
|
4081
4081
|
[k: string]: unknown;
|
|
@@ -4117,7 +4117,7 @@ export default class Field extends BaseResource {
|
|
|
4117
4117
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
4118
4118
|
field_type: "single_block";
|
|
4119
4119
|
localized: true;
|
|
4120
|
-
default_value: Record<string, null
|
|
4120
|
+
default_value: Record<string, null>;
|
|
4121
4121
|
validators: import("../..").SingleBlockFieldValidators;
|
|
4122
4122
|
appearance: import("../..").SingleBlockFieldAppearance & Omit<{
|
|
4123
4123
|
[k: string]: unknown;
|
|
@@ -4159,7 +4159,7 @@ export default class Field extends BaseResource {
|
|
|
4159
4159
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
4160
4160
|
field_type: "slug";
|
|
4161
4161
|
localized: true;
|
|
4162
|
-
default_value: Record<string, null
|
|
4162
|
+
default_value: Record<string, null>;
|
|
4163
4163
|
validators: import("../..").SlugFieldValidators;
|
|
4164
4164
|
appearance: import("../..").SlugFieldAppearance & Omit<{
|
|
4165
4165
|
[k: string]: unknown;
|
|
@@ -4201,7 +4201,7 @@ export default class Field extends BaseResource {
|
|
|
4201
4201
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
4202
4202
|
field_type: "string";
|
|
4203
4203
|
localized: true;
|
|
4204
|
-
default_value:
|
|
4204
|
+
default_value: Record<string, import("../..").StringFieldValue>;
|
|
4205
4205
|
validators: import("../..").StringFieldValidators;
|
|
4206
4206
|
appearance: import("../..").StringFieldAppearance & Omit<{
|
|
4207
4207
|
[k: string]: unknown;
|
|
@@ -4243,7 +4243,7 @@ export default class Field extends BaseResource {
|
|
|
4243
4243
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
4244
4244
|
field_type: "structured_text";
|
|
4245
4245
|
localized: true;
|
|
4246
|
-
default_value: Record<string, null
|
|
4246
|
+
default_value: Record<string, null>;
|
|
4247
4247
|
validators: import("../..").StructuredTextFieldValidators;
|
|
4248
4248
|
appearance: import("../..").StructuredTextFieldAppearance & Omit<{
|
|
4249
4249
|
[k: string]: unknown;
|
|
@@ -4285,7 +4285,7 @@ export default class Field extends BaseResource {
|
|
|
4285
4285
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
4286
4286
|
field_type: "text";
|
|
4287
4287
|
localized: true;
|
|
4288
|
-
default_value:
|
|
4288
|
+
default_value: Record<string, import("../..").TextFieldValue>;
|
|
4289
4289
|
validators: import("../..").TextFieldValidators;
|
|
4290
4290
|
appearance: import("../..").TextFieldAppearance & Omit<{
|
|
4291
4291
|
[k: string]: unknown;
|
|
@@ -4327,7 +4327,7 @@ export default class Field extends BaseResource {
|
|
|
4327
4327
|
}) | (Omit<ApiTypes.FieldStableShell, "localized" | "field_type" | "default_value" | "validators" | "appearance"> & {
|
|
4328
4328
|
field_type: "video";
|
|
4329
4329
|
localized: true;
|
|
4330
|
-
default_value: Record<string, null
|
|
4330
|
+
default_value: Record<string, null>;
|
|
4331
4331
|
validators: import("../..").VideoFieldValidators;
|
|
4332
4332
|
appearance: import("../..").VideoFieldAppearance & Omit<{
|
|
4333
4333
|
[k: string]: unknown;
|