@strapi/core 5.18.1 → 5.20.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.
Files changed (93) hide show
  1. package/dist/core-api/routes/index.d.ts +4 -22
  2. package/dist/core-api/routes/index.d.ts.map +1 -1
  3. package/dist/core-api/routes/index.js +150 -8
  4. package/dist/core-api/routes/index.js.map +1 -1
  5. package/dist/core-api/routes/index.mjs +131 -8
  6. package/dist/core-api/routes/index.mjs.map +1 -1
  7. package/dist/core-api/routes/validation/attributes.d.ts +244 -0
  8. package/dist/core-api/routes/validation/attributes.d.ts.map +1 -0
  9. package/dist/core-api/routes/validation/attributes.js +560 -0
  10. package/dist/core-api/routes/validation/attributes.js.map +1 -0
  11. package/dist/core-api/routes/validation/attributes.mjs +521 -0
  12. package/dist/core-api/routes/validation/attributes.mjs.map +1 -0
  13. package/dist/core-api/routes/validation/common.d.ts +105 -0
  14. package/dist/core-api/routes/validation/common.d.ts.map +1 -0
  15. package/dist/core-api/routes/validation/common.js +116 -0
  16. package/dist/core-api/routes/validation/common.js.map +1 -0
  17. package/dist/core-api/routes/validation/common.mjs +95 -0
  18. package/dist/core-api/routes/validation/common.mjs.map +1 -0
  19. package/dist/core-api/routes/validation/component.d.ts +34 -0
  20. package/dist/core-api/routes/validation/component.d.ts.map +1 -0
  21. package/dist/core-api/routes/validation/component.js +45 -0
  22. package/dist/core-api/routes/validation/component.js.map +1 -0
  23. package/dist/core-api/routes/validation/component.mjs +43 -0
  24. package/dist/core-api/routes/validation/component.mjs.map +1 -0
  25. package/dist/core-api/routes/validation/constants.d.ts +8 -0
  26. package/dist/core-api/routes/validation/constants.d.ts.map +1 -0
  27. package/dist/core-api/routes/validation/constants.js +18 -0
  28. package/dist/core-api/routes/validation/constants.js.map +1 -0
  29. package/dist/core-api/routes/validation/constants.mjs +16 -0
  30. package/dist/core-api/routes/validation/constants.mjs.map +1 -0
  31. package/dist/core-api/routes/validation/content-type.d.ts +128 -0
  32. package/dist/core-api/routes/validation/content-type.d.ts.map +1 -0
  33. package/dist/core-api/routes/validation/content-type.js +201 -0
  34. package/dist/core-api/routes/validation/content-type.js.map +1 -0
  35. package/dist/core-api/routes/validation/content-type.mjs +180 -0
  36. package/dist/core-api/routes/validation/content-type.mjs.map +1 -0
  37. package/dist/core-api/routes/validation/index.d.ts +5 -0
  38. package/dist/core-api/routes/validation/index.d.ts.map +1 -0
  39. package/dist/core-api/routes/validation/mappers.d.ts +105 -0
  40. package/dist/core-api/routes/validation/mappers.d.ts.map +1 -0
  41. package/dist/core-api/routes/validation/mappers.js +238 -0
  42. package/dist/core-api/routes/validation/mappers.js.map +1 -0
  43. package/dist/core-api/routes/validation/mappers.mjs +214 -0
  44. package/dist/core-api/routes/validation/mappers.mjs.map +1 -0
  45. package/dist/core-api/routes/validation/utils.d.ts +47 -0
  46. package/dist/core-api/routes/validation/utils.d.ts.map +1 -0
  47. package/dist/core-api/routes/validation/utils.js +112 -0
  48. package/dist/core-api/routes/validation/utils.js.map +1 -0
  49. package/dist/core-api/routes/validation/utils.mjs +90 -0
  50. package/dist/core-api/routes/validation/utils.mjs.map +1 -0
  51. package/dist/domain/module/index.d.ts.map +1 -1
  52. package/dist/domain/module/index.js +3 -0
  53. package/dist/domain/module/index.js.map +1 -1
  54. package/dist/domain/module/index.mjs +3 -0
  55. package/dist/domain/module/index.mjs.map +1 -1
  56. package/dist/factories.d.ts +3 -1
  57. package/dist/factories.d.ts.map +1 -1
  58. package/dist/factories.js +10 -2
  59. package/dist/factories.js.map +1 -1
  60. package/dist/factories.mjs +10 -3
  61. package/dist/factories.mjs.map +1 -1
  62. package/dist/middlewares/cors.d.ts +9 -1
  63. package/dist/middlewares/cors.d.ts.map +1 -1
  64. package/dist/middlewares/cors.js +39 -17
  65. package/dist/middlewares/cors.js.map +1 -1
  66. package/dist/middlewares/cors.mjs +39 -18
  67. package/dist/middlewares/cors.mjs.map +1 -1
  68. package/dist/package.json.js +13 -12
  69. package/dist/package.json.js.map +1 -1
  70. package/dist/package.json.mjs +13 -12
  71. package/dist/package.json.mjs.map +1 -1
  72. package/dist/services/metrics/index.d.ts +1 -1
  73. package/dist/services/metrics/index.d.ts.map +1 -1
  74. package/dist/services/metrics/index.js +9 -8
  75. package/dist/services/metrics/index.js.map +1 -1
  76. package/dist/services/metrics/index.mjs +9 -8
  77. package/dist/services/metrics/index.mjs.map +1 -1
  78. package/dist/services/metrics/sender.d.ts.map +1 -1
  79. package/dist/services/metrics/sender.js +2 -2
  80. package/dist/services/metrics/sender.js.map +1 -1
  81. package/dist/services/metrics/sender.mjs +2 -2
  82. package/dist/services/metrics/sender.mjs.map +1 -1
  83. package/dist/services/server/register-routes.js +22 -2
  84. package/dist/services/server/register-routes.js.map +1 -1
  85. package/dist/services/server/register-routes.mjs +22 -2
  86. package/dist/services/server/register-routes.mjs.map +1 -1
  87. package/dist/services/server/routing.d.ts +10 -0
  88. package/dist/services/server/routing.d.ts.map +1 -1
  89. package/dist/services/server/routing.js +7 -1
  90. package/dist/services/server/routing.js.map +1 -1
  91. package/dist/services/server/routing.mjs +7 -1
  92. package/dist/services/server/routing.mjs.map +1 -1
  93. package/package.json +13 -12
@@ -0,0 +1,244 @@
1
+ /**
2
+ * @file This module provides a set of functions to convert Strapi schema attributes into Zod schemas.
3
+ * It handles various attribute types, including primitive types, components, dynamic zones, media, and relations.
4
+ * The module also provides functions to create input schemas for these attributes, which are used for validation
5
+ * of incoming data.
6
+ */
7
+ import { type Schema, UID } from '@strapi/types';
8
+ import { z } from 'zod/v4';
9
+ /**
10
+ * Converts a BigInteger attribute to a Zod schema.
11
+ * @param attribute - The BigInteger attribute object from the Strapi schema.
12
+ * @returns A Zod schema representing the BigInteger field.
13
+ */
14
+ export declare const bigIntegerToSchema: (attribute: Schema.Attribute.BigInteger) => z.Schema;
15
+ /**
16
+ * Converts a blocks attribute to a Zod schema.
17
+ * @returns A Zod schema representing the blocks field.
18
+ */
19
+ export declare const blocksToSchema: () => z.Schema;
20
+ /**
21
+ * Converts a boolean attribute to a Zod schema.
22
+ * @param attribute - The Boolean attribute object from the Strapi schema.
23
+ * @returns A Zod schema representing the boolean field.
24
+ */
25
+ export declare const booleanToSchema: (attribute: Schema.Attribute.Boolean) => z.Schema;
26
+ /**
27
+ * Converts a component attribute to a Zod schema.
28
+ * @param attribute - The Component attribute object from the Strapi schema.
29
+ * @returns A Zod schema representing the component field.
30
+ */
31
+ export declare const componentToSchema: (attribute: Schema.Attribute.Component<UID.Component, boolean>) => z.Schema;
32
+ /**
33
+ * Converts a date attribute to a Zod schema.
34
+ * @param attribute - The Date attribute object from the Strapi schema.
35
+ * @returns A Zod schema representing the date field.
36
+ */
37
+ export declare const dateToSchema: (attribute: Schema.Attribute.Date) => z.Schema;
38
+ /**
39
+ * Converts a datetime attribute to a Zod schema.
40
+ * @param attribute - The DateTime attribute object from the Strapi schema.
41
+ * @returns A Zod schema representing the datetime field.
42
+ */
43
+ export declare const datetimeToSchema: (attribute: Schema.Attribute.DateTime) => z.Schema;
44
+ /**
45
+ * Converts a decimal attribute to a Zod schema.
46
+ * @param attribute - The Decimal attribute object from the Strapi schema.
47
+ * @returns A Zod schema representing the decimal field.
48
+ */
49
+ export declare const decimalToSchema: (attribute: Schema.Attribute.Decimal) => z.Schema;
50
+ /**
51
+ * Converts a dynamic zone attribute to a Zod schema.
52
+ * @param attribute - The DynamicZone attribute object from the Strapi schema.
53
+ * @returns A Zod schema representing the dynamic zone field.
54
+ */
55
+ export declare const dynamicZoneToSchema: (attribute: Schema.Attribute.DynamicZone) => z.Schema;
56
+ /**
57
+ * Converts an email attribute to a Zod schema.
58
+ * @param attribute - The Email attribute object from the Strapi schema.
59
+ * @returns A Zod schema representing the email field.
60
+ */
61
+ export declare const emailToSchema: (attribute: Schema.Attribute.Email) => z.Schema;
62
+ /**
63
+ * Converts an enumeration attribute to a Zod schema.
64
+ * @param attribute - The Enumeration attribute object from the Strapi schema.
65
+ * @returns A Zod schema representing the enumeration field.
66
+ */
67
+ export declare const enumToSchema: (attribute: Schema.Attribute.Enumeration<string[]>) => z.Schema;
68
+ /**
69
+ * Converts a float attribute to a Zod schema.
70
+ * @param attribute - The Float attribute object from the Strapi schema.
71
+ * @returns A Zod schema representing the float field.
72
+ */
73
+ export declare const floatToSchema: (attribute: Schema.Attribute.Float) => z.Schema;
74
+ /**
75
+ * Converts an integer attribute to a Zod schema.
76
+ * @param attribute - The Integer attribute object from the Strapi schema.
77
+ * @returns A Zod schema representing the integer field.
78
+ */
79
+ export declare const integerToSchema: (attribute: Schema.Attribute.Integer) => z.Schema;
80
+ /**
81
+ * Converts a JSON attribute to a Zod schema.
82
+ * @param attribute - The JSON attribute object from the Strapi schema.
83
+ * @returns A Zod schema representing the JSON field.
84
+ */
85
+ export declare const jsonToSchema: (attribute: Schema.Attribute.JSON) => z.Schema;
86
+ /**
87
+ * Converts a media attribute to a Zod schema.
88
+ * @param attribute - The Media attribute object from the Strapi schema.
89
+ * @returns A Zod schema representing the media field.
90
+ */
91
+ export declare const mediaToSchema: (attribute: Schema.Attribute.Media<Schema.Attribute.MediaKind | undefined, boolean>) => z.Schema;
92
+ /**
93
+ * Converts a relation attribute to a Zod schema.
94
+ * @param attribute - The Relation attribute object from the Strapi schema.
95
+ * @returns A Zod schema representing the relational field.
96
+ */
97
+ export declare const relationToSchema: (attribute: Schema.Attribute.Relation) => z.Schema;
98
+ /**
99
+ * Converts a string, text, rich text, or password attribute to a Zod schema.
100
+ * @param attribute - The String, Text, RichText, or Password attribute object from the Strapi schema.
101
+ * @returns A Zod schema representing the field.
102
+ */
103
+ export declare const stringToSchema: (attribute: Schema.Attribute.String | Schema.Attribute.Text | Schema.Attribute.RichText | Schema.Attribute.Password) => z.Schema;
104
+ /**
105
+ * Converts a time attribute to a Zod schema.
106
+ * @param attribute - The Time attribute object from the Strapi schema.
107
+ * @returns A Zod schema representing the time field.
108
+ */
109
+ export declare const timeToSchema: (attribute: Schema.Attribute.Time) => z.Schema;
110
+ /**
111
+ * Converts a timestamp attribute to a Zod schema.
112
+ * @param attribute - The Timestamp attribute object from the Strapi schema.
113
+ * @returns A Zod schema representing the timestamp field.
114
+ */
115
+ export declare const timestampToSchema: (attribute: Schema.Attribute.Timestamp) => z.Schema;
116
+ /**
117
+ * Converts a UID attribute to a Zod schema.
118
+ * @param attribute - The UID attribute object from the Strapi schema.
119
+ * @returns A Zod schema representing the UID field.
120
+ */
121
+ export declare const uidToSchema: (attribute: Schema.Attribute.UID) => z.Schema;
122
+ /**
123
+ * Converts a BigInteger attribute to a Zod schema for input validation.
124
+ * @param attribute - The BigInteger attribute object from the Strapi schema.
125
+ * @returns A Zod schema for input validation of the BigInteger field.
126
+ */
127
+ export declare const bigIntegerToInputSchema: (attribute: Schema.Attribute.BigInteger) => z.ZodString;
128
+ /**
129
+ * Converts a blocks attribute to a Zod schema for input validation.
130
+ * @returns A Zod schema for input validation of the blocks field.
131
+ */
132
+ export declare const blocksToInputSchema: () => z.ZodArray<z.ZodAny>;
133
+ /**
134
+ * Converts a boolean attribute to a Zod schema for input validation.
135
+ * @param attribute - The Boolean attribute object from the Strapi schema.
136
+ * @returns A Zod schema for input validation of the boolean field.
137
+ */
138
+ export declare const booleanToInputSchema: (attribute: Schema.Attribute.Boolean) => z.ZodEnum<{
139
+ 0: "0";
140
+ t: "t";
141
+ 1: "1";
142
+ true: "true";
143
+ f: "f";
144
+ false: "false";
145
+ }>;
146
+ /**
147
+ * Converts a component attribute to a Zod schema for input validation.
148
+ * @param attribute - The Component attribute object from the Strapi schema.
149
+ * @returns A Zod schema for input validation of the component field.
150
+ */
151
+ export declare const componentToInputSchema: (attribute: Schema.Attribute.Component<UID.Component, boolean>) => z.ZodAny | z.ZodArray<z.ZodAny>;
152
+ /**
153
+ * Converts a date attribute to a Zod schema for input validation.
154
+ * @param attribute - The Date attribute object from the Strapi schema.
155
+ * @returns A Zod schema for input validation of the date field.
156
+ */
157
+ export declare const dateToInputSchema: (attribute: Schema.Attribute.Date) => z.ZodString;
158
+ /**
159
+ * Converts a datetime attribute to a Zod schema for input validation.
160
+ * @param attribute - The DateTime attribute object from the Strapi schema.
161
+ * @returns A Zod schema for input validation of the datetime field.
162
+ */
163
+ export declare const datetimeToInputSchema: (attribute: Schema.Attribute.DateTime) => z.ZodString;
164
+ /**
165
+ * Converts a decimal attribute to a Zod schema for input validation.
166
+ * @param attribute - The Decimal attribute object from the Strapi schema.
167
+ * @returns A Zod schema for input validation of the decimal field.
168
+ */
169
+ export declare const decimalToInputSchema: (attribute: Schema.Attribute.Decimal) => z.ZodNumber;
170
+ /**
171
+ * Converts a dynamic zone attribute to a Zod schema for input validation.
172
+ * @param attribute - The DynamicZone attribute object from the Strapi schema.
173
+ * @returns A Zod schema for input validation of the dynamic zone field.
174
+ */
175
+ export declare const dynamicZoneToInputSchema: (attribute: Schema.Attribute.DynamicZone) => z.ZodArray<z.ZodAny>;
176
+ /**
177
+ * Converts an email attribute to a Zod schema for input validation.
178
+ * @param attribute - The Email attribute object from the Strapi schema.
179
+ * @returns A Zod schema for input validation of the email field.
180
+ */
181
+ export declare const emailToInputSchema: (attribute: Schema.Attribute.Email) => z.ZodEmail;
182
+ /**
183
+ * Converts an enumeration attribute to a Zod schema for input validation.
184
+ * @param attribute - The Enumeration attribute object from the Strapi schema.
185
+ * @returns A Zod schema for input validation of the enumeration field.
186
+ */
187
+ export declare const enumerationToInputSchema: (attribute: Schema.Attribute.Enumeration<string[]>) => z.ZodEnum<{
188
+ [x: string]: string;
189
+ }>;
190
+ /**
191
+ * Converts a float attribute to a Zod schema for input validation.
192
+ * @param attribute - The Float attribute object from the Strapi schema.
193
+ * @returns A Zod schema for input validation of the float field.
194
+ */
195
+ export declare const floatToInputSchema: (attribute: Schema.Attribute.Float) => z.ZodNumber;
196
+ /**
197
+ * Converts an integer attribute to a Zod schema for input validation.
198
+ * @param attribute - The Integer attribute object from the Strapi schema.
199
+ * @returns A Zod schema for input validation of the integer field.
200
+ */
201
+ export declare const integerToInputSchema: (attribute: Schema.Attribute.Integer) => z.ZodNumber;
202
+ /**
203
+ * Converts a JSON attribute to a Zod schema for input validation.
204
+ * @param attribute - The JSON attribute object from the Strapi schema.
205
+ * @returns A Zod schema for input validation of the JSON field.
206
+ */
207
+ export declare const jsonToInputSchema: (attribute: Schema.Attribute.JSON) => z.ZodAny;
208
+ /**
209
+ * Converts a media attribute to a Zod schema for input validation.
210
+ * @param attribute - The Media attribute object from the Strapi schema.
211
+ * @returns A Zod schema for input validation of the media field.
212
+ */
213
+ export declare const mediaToInputSchema: (attribute: Schema.Attribute.Media<Schema.Attribute.MediaKind | undefined, boolean>) => z.ZodAny | z.ZodArray<z.ZodAny>;
214
+ /**
215
+ * Converts a relation attribute to a Zod schema for input validation.
216
+ * @param attribute - The Relation attribute object from the Strapi schema.
217
+ * @returns A Zod schema for input validation of the relational field.
218
+ */
219
+ export declare const relationToInputSchema: (attribute: Schema.Attribute.Relation) => z.ZodString | z.ZodArray<z.ZodString>;
220
+ /**
221
+ * Converts a string, text, rich text, or password attribute to a Zod schema for input validation.
222
+ * @param attribute - The String, Text, RichText, or Password attribute object from the Strapi schema.
223
+ * @returns A Zod schema for input validation of the field.
224
+ */
225
+ export declare const textToInputSchema: (attribute: Schema.Attribute.String | Schema.Attribute.Text | Schema.Attribute.RichText | Schema.Attribute.Password) => z.ZodString;
226
+ /**
227
+ * Converts a time attribute to a Zod schema for input validation.
228
+ * @param attribute - The Time attribute object from the Strapi schema.
229
+ * @returns A Zod schema for input validation of the time field.
230
+ */
231
+ export declare const timeToInputSchema: (attribute: Schema.Attribute.Time) => z.ZodString;
232
+ /**
233
+ * Converts a timestamp attribute to a Zod schema for input validation.
234
+ * @param attribute - The Timestamp attribute object from the Strapi schema.
235
+ * @returns A Zod schema for input validation of the timestamp field.
236
+ */
237
+ export declare const timestampToInputSchema: (attribute: Schema.Attribute.Timestamp) => z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
238
+ /**
239
+ * Converts a UID attribute to a Zod schema for input validation.
240
+ * @param attribute - The UID attribute object from the Strapi schema.
241
+ * @returns A Zod schema for input validation of the UID field.
242
+ */
243
+ export declare const uidToInputSchema: (attribute: Schema.Attribute.UID) => z.ZodString;
244
+ //# sourceMappingURL=attributes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attributes.d.ts","sourceRoot":"","sources":["../../../../src/core-api/routes/validation/attributes.ts"],"names":[],"mappings":"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"}