@directus/api 9.25.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 (855) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +89 -0
  3. package/dist/app.d.ts +2 -0
  4. package/dist/app.js +223 -0
  5. package/dist/app.test.d.ts +1 -0
  6. package/dist/auth/auth.d.ts +46 -0
  7. package/dist/auth/auth.js +36 -0
  8. package/dist/auth/drivers/index.d.ts +5 -0
  9. package/dist/auth/drivers/index.js +5 -0
  10. package/dist/auth/drivers/ldap.d.ts +20 -0
  11. package/dist/auth/drivers/ldap.js +330 -0
  12. package/dist/auth/drivers/local.d.ts +9 -0
  13. package/dist/auth/drivers/local.js +83 -0
  14. package/dist/auth/drivers/oauth2.d.ts +19 -0
  15. package/dist/auth/drivers/oauth2.js +293 -0
  16. package/dist/auth/drivers/openid.d.ts +19 -0
  17. package/dist/auth/drivers/openid.js +316 -0
  18. package/dist/auth/drivers/saml.d.ts +15 -0
  19. package/dist/auth/drivers/saml.js +145 -0
  20. package/dist/auth.d.ts +3 -0
  21. package/dist/auth.js +62 -0
  22. package/dist/cache.d.ts +20 -0
  23. package/dist/cache.js +138 -0
  24. package/dist/cli/commands/bootstrap/index.d.ts +3 -0
  25. package/dist/cli/commands/bootstrap/index.js +71 -0
  26. package/dist/cli/commands/count/index.d.ts +1 -0
  27. package/dist/cli/commands/count/index.js +21 -0
  28. package/dist/cli/commands/database/install.d.ts +1 -0
  29. package/dist/cli/commands/database/install.js +16 -0
  30. package/dist/cli/commands/database/migrate.d.ts +1 -0
  31. package/dist/cli/commands/database/migrate.js +23 -0
  32. package/dist/cli/commands/init/index.d.ts +1 -0
  33. package/dist/cli/commands/init/index.js +102 -0
  34. package/dist/cli/commands/init/questions.d.ts +20 -0
  35. package/dist/cli/commands/init/questions.js +65 -0
  36. package/dist/cli/commands/roles/create.d.ts +4 -0
  37. package/dist/cli/commands/roles/create.js +23 -0
  38. package/dist/cli/commands/schema/apply.d.ts +4 -0
  39. package/dist/cli/commands/schema/apply.js +153 -0
  40. package/dist/cli/commands/schema/snapshot.d.ts +4 -0
  41. package/dist/cli/commands/schema/snapshot.js +56 -0
  42. package/dist/cli/commands/security/key.d.ts +1 -0
  43. package/dist/cli/commands/security/key.js +5 -0
  44. package/dist/cli/commands/security/secret.d.ts +1 -0
  45. package/dist/cli/commands/security/secret.js +5 -0
  46. package/dist/cli/commands/users/create.d.ts +5 -0
  47. package/dist/cli/commands/users/create.js +23 -0
  48. package/dist/cli/commands/users/passwd.d.ts +4 -0
  49. package/dist/cli/commands/users/passwd.js +35 -0
  50. package/dist/cli/index.d.ts +2 -0
  51. package/dist/cli/index.js +89 -0
  52. package/dist/cli/run.d.ts +1 -0
  53. package/dist/cli/run.js +8 -0
  54. package/dist/cli/utils/create-db-connection.d.ts +13 -0
  55. package/dist/cli/utils/create-db-connection.js +58 -0
  56. package/dist/cli/utils/create-env/env-stub.liquid +328 -0
  57. package/dist/cli/utils/create-env/index.d.ts +3 -0
  58. package/dist/cli/utils/create-env/index.js +41 -0
  59. package/dist/cli/utils/defaults.d.ts +11 -0
  60. package/dist/cli/utils/defaults.js +11 -0
  61. package/dist/cli/utils/drivers.d.ts +3 -0
  62. package/dist/cli/utils/drivers.js +15 -0
  63. package/dist/constants.d.ts +17 -0
  64. package/dist/constants.js +70 -0
  65. package/dist/controllers/activity.d.ts +2 -0
  66. package/dist/controllers/activity.js +131 -0
  67. package/dist/controllers/assets.d.ts +2 -0
  68. package/dist/controllers/assets.js +194 -0
  69. package/dist/controllers/auth.d.ts +2 -0
  70. package/dist/controllers/auth.js +163 -0
  71. package/dist/controllers/collections.d.ts +2 -0
  72. package/dist/controllers/collections.js +101 -0
  73. package/dist/controllers/dashboards.d.ts +2 -0
  74. package/dist/controllers/dashboards.js +140 -0
  75. package/dist/controllers/extensions.d.ts +2 -0
  76. package/dist/controllers/extensions.js +42 -0
  77. package/dist/controllers/fields.d.ts +2 -0
  78. package/dist/controllers/fields.js +155 -0
  79. package/dist/controllers/files.d.ts +4 -0
  80. package/dist/controllers/files.js +267 -0
  81. package/dist/controllers/files.test.d.ts +1 -0
  82. package/dist/controllers/flows.d.ts +2 -0
  83. package/dist/controllers/flows.js +159 -0
  84. package/dist/controllers/folders.d.ts +2 -0
  85. package/dist/controllers/folders.js +149 -0
  86. package/dist/controllers/graphql.d.ts +2 -0
  87. package/dist/controllers/graphql.js +31 -0
  88. package/dist/controllers/items.d.ts +2 -0
  89. package/dist/controllers/items.js +179 -0
  90. package/dist/controllers/not-found.d.ts +14 -0
  91. package/dist/controllers/not-found.js +31 -0
  92. package/dist/controllers/notifications.d.ts +2 -0
  93. package/dist/controllers/notifications.js +149 -0
  94. package/dist/controllers/operations.d.ts +2 -0
  95. package/dist/controllers/operations.js +140 -0
  96. package/dist/controllers/panels.d.ts +2 -0
  97. package/dist/controllers/panels.js +140 -0
  98. package/dist/controllers/permissions.d.ts +2 -0
  99. package/dist/controllers/permissions.js +151 -0
  100. package/dist/controllers/presets.d.ts +2 -0
  101. package/dist/controllers/presets.js +149 -0
  102. package/dist/controllers/relations.d.ts +2 -0
  103. package/dist/controllers/relations.js +112 -0
  104. package/dist/controllers/revisions.d.ts +2 -0
  105. package/dist/controllers/revisions.js +35 -0
  106. package/dist/controllers/roles.d.ts +2 -0
  107. package/dist/controllers/roles.js +140 -0
  108. package/dist/controllers/schema.d.ts +2 -0
  109. package/dist/controllers/schema.js +93 -0
  110. package/dist/controllers/server.d.ts +2 -0
  111. package/dist/controllers/server.js +57 -0
  112. package/dist/controllers/settings.d.ts +2 -0
  113. package/dist/controllers/settings.js +36 -0
  114. package/dist/controllers/shares.d.ts +2 -0
  115. package/dist/controllers/shares.js +213 -0
  116. package/dist/controllers/users.d.ts +2 -0
  117. package/dist/controllers/users.js +357 -0
  118. package/dist/controllers/utils.d.ts +2 -0
  119. package/dist/controllers/utils.js +118 -0
  120. package/dist/controllers/webhooks.d.ts +2 -0
  121. package/dist/controllers/webhooks.js +137 -0
  122. package/dist/database/helpers/date/dialects/default.d.ts +3 -0
  123. package/dist/database/helpers/date/dialects/default.js +3 -0
  124. package/dist/database/helpers/date/dialects/mssql.d.ts +4 -0
  125. package/dist/database/helpers/date/dialects/mssql.js +8 -0
  126. package/dist/database/helpers/date/dialects/mysql.d.ts +5 -0
  127. package/dist/database/helpers/date/dialects/mysql.js +12 -0
  128. package/dist/database/helpers/date/dialects/oracle.d.ts +4 -0
  129. package/dist/database/helpers/date/dialects/oracle.js +11 -0
  130. package/dist/database/helpers/date/dialects/sqlite.d.ts +5 -0
  131. package/dist/database/helpers/date/dialects/sqlite.js +26 -0
  132. package/dist/database/helpers/date/index.d.ts +7 -0
  133. package/dist/database/helpers/date/index.js +7 -0
  134. package/dist/database/helpers/date/types.d.ts +7 -0
  135. package/dist/database/helpers/date/types.js +20 -0
  136. package/dist/database/helpers/fn/dialects/mssql.d.ts +13 -0
  137. package/dist/database/helpers/fn/dialects/mssql.js +44 -0
  138. package/dist/database/helpers/fn/dialects/mysql.d.ts +13 -0
  139. package/dist/database/helpers/fn/dialects/mysql.js +38 -0
  140. package/dist/database/helpers/fn/dialects/oracle.d.ts +13 -0
  141. package/dist/database/helpers/fn/dialects/oracle.js +44 -0
  142. package/dist/database/helpers/fn/dialects/postgres.d.ts +13 -0
  143. package/dist/database/helpers/fn/dialects/postgres.js +48 -0
  144. package/dist/database/helpers/fn/dialects/sqlite.d.ts +13 -0
  145. package/dist/database/helpers/fn/dialects/sqlite.js +68 -0
  146. package/dist/database/helpers/fn/index.d.ts +7 -0
  147. package/dist/database/helpers/fn/index.js +7 -0
  148. package/dist/database/helpers/fn/types.d.ts +22 -0
  149. package/dist/database/helpers/fn/types.js +26 -0
  150. package/dist/database/helpers/geometry/dialects/mssql.d.ts +14 -0
  151. package/dist/database/helpers/geometry/dialects/mssql.js +32 -0
  152. package/dist/database/helpers/geometry/dialects/mysql.d.ts +7 -0
  153. package/dist/database/helpers/geometry/dialects/mysql.js +12 -0
  154. package/dist/database/helpers/geometry/dialects/oracle.d.ts +15 -0
  155. package/dist/database/helpers/geometry/dialects/oracle.js +35 -0
  156. package/dist/database/helpers/geometry/dialects/postgres.d.ts +10 -0
  157. package/dist/database/helpers/geometry/dialects/postgres.js +18 -0
  158. package/dist/database/helpers/geometry/dialects/redshift.d.ts +7 -0
  159. package/dist/database/helpers/geometry/dialects/redshift.js +12 -0
  160. package/dist/database/helpers/geometry/dialects/sqlite.d.ts +6 -0
  161. package/dist/database/helpers/geometry/dialects/sqlite.js +10 -0
  162. package/dist/database/helpers/geometry/index.d.ts +7 -0
  163. package/dist/database/helpers/geometry/index.js +7 -0
  164. package/dist/database/helpers/geometry/types.d.ts +20 -0
  165. package/dist/database/helpers/geometry/types.js +49 -0
  166. package/dist/database/helpers/index.d.ts +13 -0
  167. package/dist/database/helpers/index.js +17 -0
  168. package/dist/database/helpers/schema/dialects/cockroachdb.d.ts +6 -0
  169. package/dist/database/helpers/schema/dialects/cockroachdb.js +17 -0
  170. package/dist/database/helpers/schema/dialects/default.d.ts +3 -0
  171. package/dist/database/helpers/schema/dialects/default.js +3 -0
  172. package/dist/database/helpers/schema/dialects/mssql.d.ts +7 -0
  173. package/dist/database/helpers/schema/dialects/mssql.js +20 -0
  174. package/dist/database/helpers/schema/dialects/mysql.d.ts +5 -0
  175. package/dist/database/helpers/schema/dialects/mysql.js +14 -0
  176. package/dist/database/helpers/schema/dialects/oracle.d.ts +9 -0
  177. package/dist/database/helpers/schema/dialects/oracle.js +32 -0
  178. package/dist/database/helpers/schema/dialects/sqlite.d.ts +5 -0
  179. package/dist/database/helpers/schema/dialects/sqlite.js +13 -0
  180. package/dist/database/helpers/schema/index.d.ts +7 -0
  181. package/dist/database/helpers/schema/index.js +7 -0
  182. package/dist/database/helpers/schema/types.d.ts +26 -0
  183. package/dist/database/helpers/schema/types.js +91 -0
  184. package/dist/database/helpers/types.d.ts +5 -0
  185. package/dist/database/helpers/types.js +6 -0
  186. package/dist/database/index.d.ts +20 -0
  187. package/dist/database/index.js +267 -0
  188. package/dist/database/migrations/20201028A-remove-collection-foreign-keys.d.ts +3 -0
  189. package/dist/database/migrations/20201028A-remove-collection-foreign-keys.js +42 -0
  190. package/dist/database/migrations/20201029A-remove-system-relations.d.ts +3 -0
  191. package/dist/database/migrations/20201029A-remove-system-relations.js +122 -0
  192. package/dist/database/migrations/20201029B-remove-system-collections.d.ts +3 -0
  193. package/dist/database/migrations/20201029B-remove-system-collections.js +93 -0
  194. package/dist/database/migrations/20201029C-remove-system-fields.d.ts +3 -0
  195. package/dist/database/migrations/20201029C-remove-system-fields.js +1643 -0
  196. package/dist/database/migrations/20201105A-add-cascade-system-relations.d.ts +8 -0
  197. package/dist/database/migrations/20201105A-add-cascade-system-relations.js +131 -0
  198. package/dist/database/migrations/20201105B-change-webhook-url-type.d.ts +3 -0
  199. package/dist/database/migrations/20201105B-change-webhook-url-type.js +12 -0
  200. package/dist/database/migrations/20210225A-add-relations-sort-field.d.ts +3 -0
  201. package/dist/database/migrations/20210225A-add-relations-sort-field.js +28 -0
  202. package/dist/database/migrations/20210304A-remove-locked-fields.d.ts +3 -0
  203. package/dist/database/migrations/20210304A-remove-locked-fields.js +10 -0
  204. package/dist/database/migrations/20210312A-webhooks-collections-text.d.ts +3 -0
  205. package/dist/database/migrations/20210312A-webhooks-collections-text.js +12 -0
  206. package/dist/database/migrations/20210331A-add-refresh-interval.d.ts +3 -0
  207. package/dist/database/migrations/20210331A-add-refresh-interval.js +10 -0
  208. package/dist/database/migrations/20210415A-make-filesize-nullable.d.ts +3 -0
  209. package/dist/database/migrations/20210415A-make-filesize-nullable.js +15 -0
  210. package/dist/database/migrations/20210416A-add-collections-accountability.d.ts +3 -0
  211. package/dist/database/migrations/20210416A-add-collections-accountability.js +11 -0
  212. package/dist/database/migrations/20210422A-remove-files-interface.d.ts +3 -0
  213. package/dist/database/migrations/20210422A-remove-files-interface.js +6 -0
  214. package/dist/database/migrations/20210506A-rename-interfaces.d.ts +3 -0
  215. package/dist/database/migrations/20210506A-rename-interfaces.js +74 -0
  216. package/dist/database/migrations/20210510A-restructure-relations.d.ts +3 -0
  217. package/dist/database/migrations/20210510A-restructure-relations.js +27 -0
  218. package/dist/database/migrations/20210518A-add-foreign-key-constraints.d.ts +3 -0
  219. package/dist/database/migrations/20210518A-add-foreign-key-constraints.js +106 -0
  220. package/dist/database/migrations/20210519A-add-system-fk-triggers.d.ts +3 -0
  221. package/dist/database/migrations/20210519A-add-system-fk-triggers.js +164 -0
  222. package/dist/database/migrations/20210521A-add-collections-icon-color.d.ts +3 -0
  223. package/dist/database/migrations/20210521A-add-collections-icon-color.js +10 -0
  224. package/dist/database/migrations/20210525A-add-insights.d.ts +3 -0
  225. package/dist/database/migrations/20210525A-add-insights.js +31 -0
  226. package/dist/database/migrations/20210608A-add-deep-clone-config.d.ts +3 -0
  227. package/dist/database/migrations/20210608A-add-deep-clone-config.js +10 -0
  228. package/dist/database/migrations/20210626A-change-filesize-bigint.d.ts +3 -0
  229. package/dist/database/migrations/20210626A-change-filesize-bigint.js +19 -0
  230. package/dist/database/migrations/20210716A-add-conditions-to-fields.d.ts +3 -0
  231. package/dist/database/migrations/20210716A-add-conditions-to-fields.js +10 -0
  232. package/dist/database/migrations/20210721A-add-default-folder.d.ts +3 -0
  233. package/dist/database/migrations/20210721A-add-default-folder.js +18 -0
  234. package/dist/database/migrations/20210802A-replace-groups.d.ts +3 -0
  235. package/dist/database/migrations/20210802A-replace-groups.js +45 -0
  236. package/dist/database/migrations/20210803A-add-required-to-fields.d.ts +3 -0
  237. package/dist/database/migrations/20210803A-add-required-to-fields.js +10 -0
  238. package/dist/database/migrations/20210805A-update-groups.d.ts +3 -0
  239. package/dist/database/migrations/20210805A-update-groups.js +29 -0
  240. package/dist/database/migrations/20210805B-change-image-metadata-structure.d.ts +3 -0
  241. package/dist/database/migrations/20210805B-change-image-metadata-structure.js +84 -0
  242. package/dist/database/migrations/20210811A-add-geometry-config.d.ts +3 -0
  243. package/dist/database/migrations/20210811A-add-geometry-config.js +12 -0
  244. package/dist/database/migrations/20210831A-remove-limit-column.d.ts +3 -0
  245. package/dist/database/migrations/20210831A-remove-limit-column.js +10 -0
  246. package/dist/database/migrations/20210903A-add-auth-provider.d.ts +3 -0
  247. package/dist/database/migrations/20210903A-add-auth-provider.js +35 -0
  248. package/dist/database/migrations/20210907A-webhooks-collections-not-null.d.ts +3 -0
  249. package/dist/database/migrations/20210907A-webhooks-collections-not-null.js +13 -0
  250. package/dist/database/migrations/20210910A-move-module-setup.d.ts +3 -0
  251. package/dist/database/migrations/20210910A-move-module-setup.js +16 -0
  252. package/dist/database/migrations/20210920A-webhooks-url-not-null.d.ts +3 -0
  253. package/dist/database/migrations/20210920A-webhooks-url-not-null.js +21 -0
  254. package/dist/database/migrations/20210924A-add-collection-organization.d.ts +3 -0
  255. package/dist/database/migrations/20210924A-add-collection-organization.js +14 -0
  256. package/dist/database/migrations/20210927A-replace-fields-group.d.ts +3 -0
  257. package/dist/database/migrations/20210927A-replace-fields-group.js +48 -0
  258. package/dist/database/migrations/20210927B-replace-m2m-interface.d.ts +3 -0
  259. package/dist/database/migrations/20210927B-replace-m2m-interface.js +16 -0
  260. package/dist/database/migrations/20210929A-rename-login-action.d.ts +3 -0
  261. package/dist/database/migrations/20210929A-rename-login-action.js +14 -0
  262. package/dist/database/migrations/20211007A-update-presets.d.ts +3 -0
  263. package/dist/database/migrations/20211007A-update-presets.js +98 -0
  264. package/dist/database/migrations/20211009A-add-auth-data.d.ts +3 -0
  265. package/dist/database/migrations/20211009A-add-auth-data.js +10 -0
  266. package/dist/database/migrations/20211016A-add-webhook-headers.d.ts +3 -0
  267. package/dist/database/migrations/20211016A-add-webhook-headers.js +10 -0
  268. package/dist/database/migrations/20211103A-set-unique-to-user-token.d.ts +3 -0
  269. package/dist/database/migrations/20211103A-set-unique-to-user-token.js +10 -0
  270. package/dist/database/migrations/20211103B-update-special-geometry.d.ts +3 -0
  271. package/dist/database/migrations/20211103B-update-special-geometry.js +20 -0
  272. package/dist/database/migrations/20211104A-remove-collections-listing.d.ts +3 -0
  273. package/dist/database/migrations/20211104A-remove-collections-listing.js +10 -0
  274. package/dist/database/migrations/20211118A-add-notifications.d.ts +3 -0
  275. package/dist/database/migrations/20211118A-add-notifications.js +23 -0
  276. package/dist/database/migrations/20211211A-add-shares.d.ts +3 -0
  277. package/dist/database/migrations/20211211A-add-shares.js +33 -0
  278. package/dist/database/migrations/20211230A-add-project-descriptor.d.ts +3 -0
  279. package/dist/database/migrations/20211230A-add-project-descriptor.js +10 -0
  280. package/dist/database/migrations/20220303A-remove-default-project-color.d.ts +3 -0
  281. package/dist/database/migrations/20220303A-remove-default-project-color.js +17 -0
  282. package/dist/database/migrations/20220308A-add-bookmark-icon-and-color.d.ts +3 -0
  283. package/dist/database/migrations/20220308A-add-bookmark-icon-and-color.js +12 -0
  284. package/dist/database/migrations/20220314A-add-translation-strings.d.ts +3 -0
  285. package/dist/database/migrations/20220314A-add-translation-strings.js +10 -0
  286. package/dist/database/migrations/20220322A-rename-field-typecast-flags.d.ts +3 -0
  287. package/dist/database/migrations/20220322A-rename-field-typecast-flags.js +72 -0
  288. package/dist/database/migrations/20220323A-add-field-validation.d.ts +3 -0
  289. package/dist/database/migrations/20220323A-add-field-validation.js +12 -0
  290. package/dist/database/migrations/20220325A-fix-typecast-flags.d.ts +3 -0
  291. package/dist/database/migrations/20220325A-fix-typecast-flags.js +44 -0
  292. package/dist/database/migrations/20220325B-add-default-language.d.ts +3 -0
  293. package/dist/database/migrations/20220325B-add-default-language.js +23 -0
  294. package/dist/database/migrations/20220402A-remove-default-value-panel-icon.d.ts +3 -0
  295. package/dist/database/migrations/20220402A-remove-default-value-panel-icon.js +17 -0
  296. package/dist/database/migrations/20220429A-add-flows.d.ts +3 -0
  297. package/dist/database/migrations/20220429A-add-flows.js +77 -0
  298. package/dist/database/migrations/20220429B-add-color-to-insights-icon.d.ts +3 -0
  299. package/dist/database/migrations/20220429B-add-color-to-insights-icon.js +10 -0
  300. package/dist/database/migrations/20220429C-drop-non-null-from-ip-of-activity.d.ts +3 -0
  301. package/dist/database/migrations/20220429C-drop-non-null-from-ip-of-activity.js +10 -0
  302. package/dist/database/migrations/20220429D-drop-non-null-from-sender-of-notifications.d.ts +3 -0
  303. package/dist/database/migrations/20220429D-drop-non-null-from-sender-of-notifications.js +10 -0
  304. package/dist/database/migrations/20220614A-rename-hook-trigger-to-event.d.ts +3 -0
  305. package/dist/database/migrations/20220614A-rename-hook-trigger-to-event.js +6 -0
  306. package/dist/database/migrations/20220801A-update-notifications-timestamp-column.d.ts +3 -0
  307. package/dist/database/migrations/20220801A-update-notifications-timestamp-column.js +14 -0
  308. package/dist/database/migrations/20220802A-add-custom-aspect-ratios.d.ts +3 -0
  309. package/dist/database/migrations/20220802A-add-custom-aspect-ratios.js +10 -0
  310. package/dist/database/migrations/20220826A-add-origin-to-accountability.d.ts +3 -0
  311. package/dist/database/migrations/20220826A-add-origin-to-accountability.js +16 -0
  312. package/dist/database/migrations/20230401A-update-material-icons.d.ts +3 -0
  313. package/dist/database/migrations/20230401A-update-material-icons.js +19 -0
  314. package/dist/database/migrations/run.d.ts +2 -0
  315. package/dist/database/migrations/run.js +91 -0
  316. package/dist/database/migrations/run.test.d.ts +1 -0
  317. package/dist/database/run-ast.d.ts +26 -0
  318. package/dist/database/run-ast.js +445 -0
  319. package/dist/database/seeds/01-collections.yaml +42 -0
  320. package/dist/database/seeds/02-roles.yaml +36 -0
  321. package/dist/database/seeds/03-users.yaml +63 -0
  322. package/dist/database/seeds/04-fields.yaml +58 -0
  323. package/dist/database/seeds/05-activity.yaml +35 -0
  324. package/dist/database/seeds/06-folders.yaml +16 -0
  325. package/dist/database/seeds/07-files.yaml +74 -0
  326. package/dist/database/seeds/08-permissions.yaml +32 -0
  327. package/dist/database/seeds/09-presets.yaml +37 -0
  328. package/dist/database/seeds/10-relations.yaml +40 -0
  329. package/dist/database/seeds/11-revisions.yaml +33 -0
  330. package/dist/database/seeds/12-sessions.yaml +23 -0
  331. package/dist/database/seeds/13-settings.yaml +49 -0
  332. package/dist/database/seeds/14-webhooks.yaml +35 -0
  333. package/dist/database/seeds/15-migrations.yaml +14 -0
  334. package/dist/database/seeds/run.d.ts +2 -0
  335. package/dist/database/seeds/run.js +73 -0
  336. package/dist/database/system-data/app-access-permissions/app-access-permissions.yaml +102 -0
  337. package/dist/database/system-data/app-access-permissions/index.d.ts +3 -0
  338. package/dist/database/system-data/app-access-permissions/index.js +17 -0
  339. package/dist/database/system-data/app-access-permissions/schema-access-permissions.yaml +17 -0
  340. package/dist/database/system-data/collections/collections.yaml +74 -0
  341. package/dist/database/system-data/collections/index.d.ts +2 -0
  342. package/dist/database/system-data/collections/index.js +9 -0
  343. package/dist/database/system-data/fields/_defaults.yaml +16 -0
  344. package/dist/database/system-data/fields/activity.yaml +83 -0
  345. package/dist/database/system-data/fields/collections.yaml +214 -0
  346. package/dist/database/system-data/fields/dashboards.yaml +20 -0
  347. package/dist/database/system-data/fields/fields.yaml +104 -0
  348. package/dist/database/system-data/fields/files.yaml +144 -0
  349. package/dist/database/system-data/fields/flows.yaml +26 -0
  350. package/dist/database/system-data/fields/folders.yaml +14 -0
  351. package/dist/database/system-data/fields/index.d.ts +2 -0
  352. package/dist/database/system-data/fields/index.js +33 -0
  353. package/dist/database/system-data/fields/migrations.yaml +10 -0
  354. package/dist/database/system-data/fields/notifications.yaml +15 -0
  355. package/dist/database/system-data/fields/operations.yaml +23 -0
  356. package/dist/database/system-data/fields/panels.yaml +29 -0
  357. package/dist/database/system-data/fields/permissions.yaml +37 -0
  358. package/dist/database/system-data/fields/presets.yaml +56 -0
  359. package/dist/database/system-data/fields/relations.yaml +34 -0
  360. package/dist/database/system-data/fields/revisions.yaml +27 -0
  361. package/dist/database/system-data/fields/roles.yaml +61 -0
  362. package/dist/database/system-data/fields/sessions.yaml +16 -0
  363. package/dist/database/system-data/fields/settings.yaml +417 -0
  364. package/dist/database/system-data/fields/shares.yaml +83 -0
  365. package/dist/database/system-data/fields/users.yaml +182 -0
  366. package/dist/database/system-data/fields/webhooks.yaml +141 -0
  367. package/dist/database/system-data/relations/index.d.ts +2 -0
  368. package/dist/database/system-data/relations/index.js +9 -0
  369. package/dist/database/system-data/relations/relations.yaml +125 -0
  370. package/dist/emitter.d.ts +19 -0
  371. package/dist/emitter.js +79 -0
  372. package/dist/env.d.ts +15 -0
  373. package/dist/env.js +465 -0
  374. package/dist/env.test.d.ts +1 -0
  375. package/dist/exceptions/database/contains-null-values.d.ts +9 -0
  376. package/dist/exceptions/database/contains-null-values.js +6 -0
  377. package/dist/exceptions/database/dialects/mssql.d.ts +2 -0
  378. package/dist/exceptions/database/dialects/mssql.js +152 -0
  379. package/dist/exceptions/database/dialects/mysql.d.ts +2 -0
  380. package/dist/exceptions/database/dialects/mysql.js +144 -0
  381. package/dist/exceptions/database/dialects/oracle.d.ts +2 -0
  382. package/dist/exceptions/database/dialects/oracle.js +23 -0
  383. package/dist/exceptions/database/dialects/postgres.d.ts +2 -0
  384. package/dist/exceptions/database/dialects/postgres.js +102 -0
  385. package/dist/exceptions/database/dialects/sqlite.d.ts +2 -0
  386. package/dist/exceptions/database/dialects/sqlite.js +51 -0
  387. package/dist/exceptions/database/dialects/types.d.ts +41 -0
  388. package/dist/exceptions/database/dialects/types.js +1 -0
  389. package/dist/exceptions/database/invalid-foreign-key.d.ts +10 -0
  390. package/dist/exceptions/database/invalid-foreign-key.js +11 -0
  391. package/dist/exceptions/database/not-null-violation.d.ts +9 -0
  392. package/dist/exceptions/database/not-null-violation.js +6 -0
  393. package/dist/exceptions/database/record-not-unique.d.ts +10 -0
  394. package/dist/exceptions/database/record-not-unique.js +11 -0
  395. package/dist/exceptions/database/translate.d.ts +11 -0
  396. package/dist/exceptions/database/translate.js +44 -0
  397. package/dist/exceptions/database/value-out-of-range.d.ts +10 -0
  398. package/dist/exceptions/database/value-out-of-range.js +11 -0
  399. package/dist/exceptions/database/value-too-long.d.ts +9 -0
  400. package/dist/exceptions/database/value-too-long.js +11 -0
  401. package/dist/exceptions/forbidden.d.ts +6 -0
  402. package/dist/exceptions/forbidden.js +13 -0
  403. package/dist/exceptions/graphql-validation.d.ts +4 -0
  404. package/dist/exceptions/graphql-validation.js +6 -0
  405. package/dist/exceptions/hit-rate-limit.d.ts +9 -0
  406. package/dist/exceptions/hit-rate-limit.js +6 -0
  407. package/dist/exceptions/illegal-asset-transformation.d.ts +4 -0
  408. package/dist/exceptions/illegal-asset-transformation.js +6 -0
  409. package/dist/exceptions/index.d.ts +21 -0
  410. package/dist/exceptions/index.js +21 -0
  411. package/dist/exceptions/invalid-config.d.ts +4 -0
  412. package/dist/exceptions/invalid-config.js +6 -0
  413. package/dist/exceptions/invalid-credentials.d.ts +4 -0
  414. package/dist/exceptions/invalid-credentials.js +6 -0
  415. package/dist/exceptions/invalid-ip.d.ts +4 -0
  416. package/dist/exceptions/invalid-ip.js +6 -0
  417. package/dist/exceptions/invalid-otp.d.ts +4 -0
  418. package/dist/exceptions/invalid-otp.js +6 -0
  419. package/dist/exceptions/invalid-payload.d.ts +4 -0
  420. package/dist/exceptions/invalid-payload.js +6 -0
  421. package/dist/exceptions/invalid-provider.d.ts +4 -0
  422. package/dist/exceptions/invalid-provider.js +6 -0
  423. package/dist/exceptions/invalid-query.d.ts +4 -0
  424. package/dist/exceptions/invalid-query.js +6 -0
  425. package/dist/exceptions/invalid-token.d.ts +4 -0
  426. package/dist/exceptions/invalid-token.js +6 -0
  427. package/dist/exceptions/method-not-allowed.d.ts +8 -0
  428. package/dist/exceptions/method-not-allowed.js +6 -0
  429. package/dist/exceptions/range-not-satisfiable.d.ts +5 -0
  430. package/dist/exceptions/range-not-satisfiable.js +9 -0
  431. package/dist/exceptions/route-not-found.d.ts +4 -0
  432. package/dist/exceptions/route-not-found.js +6 -0
  433. package/dist/exceptions/service-unavailable.d.ts +9 -0
  434. package/dist/exceptions/service-unavailable.js +6 -0
  435. package/dist/exceptions/token-expired.d.ts +4 -0
  436. package/dist/exceptions/token-expired.js +6 -0
  437. package/dist/exceptions/unexpected-response.d.ts +4 -0
  438. package/dist/exceptions/unexpected-response.js +6 -0
  439. package/dist/exceptions/unprocessable-entity.d.ts +4 -0
  440. package/dist/exceptions/unprocessable-entity.js +6 -0
  441. package/dist/exceptions/unsupported-media-type.d.ts +4 -0
  442. package/dist/exceptions/unsupported-media-type.js +6 -0
  443. package/dist/exceptions/user-suspended.d.ts +4 -0
  444. package/dist/exceptions/user-suspended.js +6 -0
  445. package/dist/extensions.d.ts +51 -0
  446. package/dist/extensions.js +490 -0
  447. package/dist/flows.d.ts +22 -0
  448. package/dist/flows.js +350 -0
  449. package/dist/index.d.ts +3 -0
  450. package/dist/index.js +3 -0
  451. package/dist/logger.d.ts +7 -0
  452. package/dist/logger.js +105 -0
  453. package/dist/logger.test.d.ts +1 -0
  454. package/dist/mailer.d.ts +2 -0
  455. package/dist/mailer.js +67 -0
  456. package/dist/messenger.d.ts +24 -0
  457. package/dist/messenger.js +57 -0
  458. package/dist/middleware/authenticate.d.ts +8 -0
  459. package/dist/middleware/authenticate.js +75 -0
  460. package/dist/middleware/authenticate.test.d.ts +1 -0
  461. package/dist/middleware/cache.d.ts +3 -0
  462. package/dist/middleware/cache.js +56 -0
  463. package/dist/middleware/check-ip.d.ts +2 -0
  464. package/dist/middleware/check-ip.js +18 -0
  465. package/dist/middleware/collection-exists.d.ts +6 -0
  466. package/dist/middleware/collection-exists.js +25 -0
  467. package/dist/middleware/cors.d.ts +3 -0
  468. package/dist/middleware/cors.js +14 -0
  469. package/dist/middleware/error-handler.d.ts +3 -0
  470. package/dist/middleware/error-handler.js +90 -0
  471. package/dist/middleware/extract-token.d.ts +11 -0
  472. package/dist/middleware/extract-token.js +30 -0
  473. package/dist/middleware/extract-token.test.d.ts +1 -0
  474. package/dist/middleware/get-permissions.d.ts +3 -0
  475. package/dist/middleware/get-permissions.js +10 -0
  476. package/dist/middleware/graphql.d.ts +2 -0
  477. package/dist/middleware/graphql.js +63 -0
  478. package/dist/middleware/rate-limiter-global.d.ts +5 -0
  479. package/dist/middleware/rate-limiter-global.js +43 -0
  480. package/dist/middleware/rate-limiter-ip.d.ts +5 -0
  481. package/dist/middleware/rate-limiter-ip.js +29 -0
  482. package/dist/middleware/respond.d.ts +2 -0
  483. package/dist/middleware/respond.js +82 -0
  484. package/dist/middleware/sanitize-query.d.ts +7 -0
  485. package/dist/middleware/sanitize-query.js +19 -0
  486. package/dist/middleware/schema.d.ts +3 -0
  487. package/dist/middleware/schema.js +7 -0
  488. package/dist/middleware/use-collection.d.ts +7 -0
  489. package/dist/middleware/use-collection.js +6 -0
  490. package/dist/middleware/validate-batch.d.ts +3 -0
  491. package/dist/middleware/validate-batch.js +42 -0
  492. package/dist/middleware/validate-batch.test.d.ts +1 -0
  493. package/dist/operations/condition/index.d.ts +6 -0
  494. package/dist/operations/condition/index.js +13 -0
  495. package/dist/operations/condition/index.test.d.ts +1 -0
  496. package/dist/operations/exec/index.d.ts +5 -0
  497. package/dist/operations/exec/index.js +38 -0
  498. package/dist/operations/exec/index.test.d.ts +1 -0
  499. package/dist/operations/item-create/index.d.ts +8 -0
  500. package/dist/operations/item-create/index.js +36 -0
  501. package/dist/operations/item-create/index.test.d.ts +1 -0
  502. package/dist/operations/item-delete/index.d.ts +10 -0
  503. package/dist/operations/item-delete/index.js +44 -0
  504. package/dist/operations/item-delete/index.test.d.ts +1 -0
  505. package/dist/operations/item-read/index.d.ts +10 -0
  506. package/dist/operations/item-read/index.js +44 -0
  507. package/dist/operations/item-read/index.test.d.ts +1 -0
  508. package/dist/operations/item-update/index.d.ts +11 -0
  509. package/dist/operations/item-update/index.js +48 -0
  510. package/dist/operations/item-update/index.test.d.ts +1 -0
  511. package/dist/operations/log/index.d.ts +5 -0
  512. package/dist/operations/log/index.js +8 -0
  513. package/dist/operations/log/index.test.d.ts +1 -0
  514. package/dist/operations/mail/index.d.ts +8 -0
  515. package/dist/operations/mail/index.js +17 -0
  516. package/dist/operations/notification/index.d.ts +8 -0
  517. package/dist/operations/notification/index.js +38 -0
  518. package/dist/operations/notification/index.test.d.ts +1 -0
  519. package/dist/operations/request/index.d.ts +11 -0
  520. package/dist/operations/request/index.js +39 -0
  521. package/dist/operations/request/index.test.d.ts +1 -0
  522. package/dist/operations/sleep/index.d.ts +5 -0
  523. package/dist/operations/sleep/index.js +7 -0
  524. package/dist/operations/sleep/index.test.d.ts +1 -0
  525. package/dist/operations/transform/index.d.ts +5 -0
  526. package/dist/operations/transform/index.js +7 -0
  527. package/dist/operations/transform/index.test.d.ts +1 -0
  528. package/dist/operations/trigger/index.d.ts +8 -0
  529. package/dist/operations/trigger/index.js +37 -0
  530. package/dist/operations/trigger/index.test.d.ts +1 -0
  531. package/dist/rate-limiter.d.ts +4 -0
  532. package/dist/rate-limiter.js +33 -0
  533. package/dist/request/index.d.ts +5 -0
  534. package/dist/request/index.js +14 -0
  535. package/dist/request/index.test.d.ts +1 -0
  536. package/dist/request/request-interceptor.d.ts +2 -0
  537. package/dist/request/request-interceptor.js +26 -0
  538. package/dist/request/request-interceptor.test.d.ts +1 -0
  539. package/dist/request/response-interceptor.d.ts +2 -0
  540. package/dist/request/response-interceptor.js +5 -0
  541. package/dist/request/response-interceptor.test.d.ts +1 -0
  542. package/dist/request/validate-ip.d.ts +1 -0
  543. package/dist/request/validate-ip.js +20 -0
  544. package/dist/request/validate-ip.test.d.ts +1 -0
  545. package/dist/server.d.ts +5 -0
  546. package/dist/server.js +135 -0
  547. package/dist/services/activity.d.ts +10 -0
  548. package/dist/services/activity.js +94 -0
  549. package/dist/services/assets.d.ts +18 -0
  550. package/dist/services/assets.js +151 -0
  551. package/dist/services/authentication.d.ts +21 -0
  552. package/dist/services/authentication.js +338 -0
  553. package/dist/services/authorization.d.ts +17 -0
  554. package/dist/services/authorization.js +444 -0
  555. package/dist/services/collections.d.ts +63 -0
  556. package/dist/services/collections.js +568 -0
  557. package/dist/services/dashboards.d.ts +5 -0
  558. package/dist/services/dashboards.js +6 -0
  559. package/dist/services/fields.d.ts +31 -0
  560. package/dist/services/fields.js +596 -0
  561. package/dist/services/files.d.ts +34 -0
  562. package/dist/services/files.js +273 -0
  563. package/dist/services/files.test.d.ts +1 -0
  564. package/dist/services/flows.d.ts +11 -0
  565. package/dist/services/flows.js +39 -0
  566. package/dist/services/folders.d.ts +5 -0
  567. package/dist/services/folders.js +6 -0
  568. package/dist/services/graphql/index.d.ts +86 -0
  569. package/dist/services/graphql/index.js +2512 -0
  570. package/dist/services/graphql/types/bigint.d.ts +2 -0
  571. package/dist/services/graphql/types/bigint.js +36 -0
  572. package/dist/services/graphql/types/date.d.ts +2 -0
  573. package/dist/services/graphql/types/date.js +6 -0
  574. package/dist/services/graphql/types/geojson.d.ts +2 -0
  575. package/dist/services/graphql/types/geojson.js +7 -0
  576. package/dist/services/graphql/types/hash.d.ts +2 -0
  577. package/dist/services/graphql/types/hash.js +6 -0
  578. package/dist/services/graphql/types/string-or-float.d.ts +5 -0
  579. package/dist/services/graphql/types/string-or-float.js +31 -0
  580. package/dist/services/graphql/types/void.d.ts +2 -0
  581. package/dist/services/graphql/types/void.js +14 -0
  582. package/dist/services/graphql/utils/add-path-to-validation-error.d.ts +2 -0
  583. package/dist/services/graphql/utils/add-path-to-validation-error.js +15 -0
  584. package/dist/services/graphql/utils/process-error.d.ts +4 -0
  585. package/dist/services/graphql/utils/process-error.js +41 -0
  586. package/dist/services/graphql/utils/process-error.test.d.ts +1 -0
  587. package/dist/services/import-export.d.ts +37 -0
  588. package/dist/services/import-export.js +293 -0
  589. package/dist/services/index.d.ts +33 -0
  590. package/dist/services/index.js +33 -0
  591. package/dist/services/items.d.ts +88 -0
  592. package/dist/services/items.js +753 -0
  593. package/dist/services/items.test.d.ts +1 -0
  594. package/dist/services/mail/index.d.ts +20 -0
  595. package/dist/services/mail/index.js +91 -0
  596. package/dist/services/mail/templates/base.liquid +162 -0
  597. package/dist/services/mail/templates/password-reset.liquid +24 -0
  598. package/dist/services/mail/templates/user-invitation.liquid +19 -0
  599. package/dist/services/meta.d.ts +12 -0
  600. package/dist/services/meta.js +71 -0
  601. package/dist/services/notifications.d.ts +13 -0
  602. package/dist/services/notifications.js +52 -0
  603. package/dist/services/operations.d.ts +11 -0
  604. package/dist/services/operations.js +37 -0
  605. package/dist/services/panels.d.ts +5 -0
  606. package/dist/services/panels.js +6 -0
  607. package/dist/services/payload.d.ts +73 -0
  608. package/dist/services/payload.js +648 -0
  609. package/dist/services/payload.test.d.ts +1 -0
  610. package/dist/services/permissions.d.ts +17 -0
  611. package/dist/services/permissions.js +80 -0
  612. package/dist/services/presets.d.ts +5 -0
  613. package/dist/services/presets.js +6 -0
  614. package/dist/services/relations.d.ts +60 -0
  615. package/dist/services/relations.js +447 -0
  616. package/dist/services/revisions.d.ts +6 -0
  617. package/dist/services/revisions.js +20 -0
  618. package/dist/services/roles.d.ts +14 -0
  619. package/dist/services/roles.js +144 -0
  620. package/dist/services/roles.test.d.ts +1 -0
  621. package/dist/services/schema.d.ts +15 -0
  622. package/dist/services/schema.js +49 -0
  623. package/dist/services/schema.test.d.ts +1 -0
  624. package/dist/services/server.d.ts +13 -0
  625. package/dist/services/server.js +339 -0
  626. package/dist/services/settings.d.ts +5 -0
  627. package/dist/services/settings.js +6 -0
  628. package/dist/services/shares.d.ts +17 -0
  629. package/dist/services/shares.js +129 -0
  630. package/dist/services/specifications.d.ts +53 -0
  631. package/dist/services/specifications.js +492 -0
  632. package/dist/services/specifications.test.d.ts +1 -0
  633. package/dist/services/tfa.d.ts +12 -0
  634. package/dist/services/tfa.js +50 -0
  635. package/dist/services/users.d.ts +63 -0
  636. package/dist/services/users.js +399 -0
  637. package/dist/services/users.test.d.ts +1 -0
  638. package/dist/services/utils.d.ts +13 -0
  639. package/dist/services/utils.js +108 -0
  640. package/dist/services/webhooks.d.ts +11 -0
  641. package/dist/services/webhooks.js +29 -0
  642. package/dist/services/webhooks.test.d.ts +1 -0
  643. package/dist/start.d.ts +1 -0
  644. package/dist/start.js +2 -0
  645. package/dist/storage/get-storage-driver.d.ts +3 -0
  646. package/dist/storage/get-storage-driver.js +16 -0
  647. package/dist/storage/get-storage-driver.test.d.ts +1 -0
  648. package/dist/storage/index.d.ts +5 -0
  649. package/dist/storage/index.js +16 -0
  650. package/dist/storage/index.test.d.ts +1 -0
  651. package/dist/storage/register-drivers.d.ts +2 -0
  652. package/dist/storage/register-drivers.js +18 -0
  653. package/dist/storage/register-drivers.test.d.ts +1 -0
  654. package/dist/storage/register-locations.d.ts +2 -0
  655. package/dist/storage/register-locations.js +13 -0
  656. package/dist/storage/register-locations.test.d.ts +1 -0
  657. package/dist/types/assets.d.ts +15 -0
  658. package/dist/types/assets.js +51 -0
  659. package/dist/types/ast.d.ts +56 -0
  660. package/dist/types/ast.js +1 -0
  661. package/dist/types/auth.d.ts +54 -0
  662. package/dist/types/auth.js +1 -0
  663. package/dist/types/collection.d.ts +19 -0
  664. package/dist/types/collection.js +1 -0
  665. package/dist/types/database.d.ts +3 -0
  666. package/dist/types/database.js +1 -0
  667. package/dist/types/events.d.ts +18 -0
  668. package/dist/types/events.js +1 -0
  669. package/dist/types/files.d.ts +29 -0
  670. package/dist/types/files.js +1 -0
  671. package/dist/types/graphql.d.ts +14 -0
  672. package/dist/types/graphql.js +1 -0
  673. package/dist/types/index.d.ts +15 -0
  674. package/dist/types/index.js +15 -0
  675. package/dist/types/items.d.ts +55 -0
  676. package/dist/types/items.js +5 -0
  677. package/dist/types/meta.d.ts +4 -0
  678. package/dist/types/meta.js +5 -0
  679. package/dist/types/migration.d.ts +5 -0
  680. package/dist/types/migration.js +1 -0
  681. package/dist/types/revision.d.ts +7 -0
  682. package/dist/types/revision.js +1 -0
  683. package/dist/types/services.d.ts +21 -0
  684. package/dist/types/services.js +1 -0
  685. package/dist/types/snapshot.d.ts +55 -0
  686. package/dist/types/snapshot.js +13 -0
  687. package/dist/types/webhooks.d.ts +15 -0
  688. package/dist/types/webhooks.js +1 -0
  689. package/dist/utils/apply-diff.d.ts +9 -0
  690. package/dist/utils/apply-diff.js +257 -0
  691. package/dist/utils/apply-diff.test.d.ts +1 -0
  692. package/dist/utils/apply-function-to-column-name.d.ts +12 -0
  693. package/dist/utils/apply-function-to-column-name.js +22 -0
  694. package/dist/utils/apply-function-to-column-name.test.d.ts +1 -0
  695. package/dist/utils/apply-query.d.ts +34 -0
  696. package/dist/utils/apply-query.js +555 -0
  697. package/dist/utils/apply-snapshot.d.ts +9 -0
  698. package/dist/utils/apply-snapshot.js +15 -0
  699. package/dist/utils/apply-snapshot.test.d.ts +1 -0
  700. package/dist/utils/async-handler.d.ts +3 -0
  701. package/dist/utils/async-handler.js +2 -0
  702. package/dist/utils/async-handler.test.d.ts +1 -0
  703. package/dist/utils/calculate-field-depth.d.ts +33 -0
  704. package/dist/utils/calculate-field-depth.js +71 -0
  705. package/dist/utils/calculate-field-depth.test.d.ts +1 -0
  706. package/dist/utils/compress.d.ts +3 -0
  707. package/dist/utils/compress.js +12 -0
  708. package/dist/utils/construct-flow-tree.d.ts +2 -0
  709. package/dist/utils/construct-flow-tree.js +27 -0
  710. package/dist/utils/filter-items.d.ts +2 -0
  711. package/dist/utils/filter-items.js +33 -0
  712. package/dist/utils/filter-items.test.d.ts +1 -0
  713. package/dist/utils/generate-hash.d.ts +1 -0
  714. package/dist/utils/generate-hash.js +9 -0
  715. package/dist/utils/get-accountability-for-role.d.ts +7 -0
  716. package/dist/utils/get-accountability-for-role.js +41 -0
  717. package/dist/utils/get-ast-from-query.d.ts +13 -0
  718. package/dist/utils/get-ast-from-query.js +297 -0
  719. package/dist/utils/get-auth-providers.d.ts +8 -0
  720. package/dist/utils/get-auth-providers.js +12 -0
  721. package/dist/utils/get-auth-providers.test.d.ts +1 -0
  722. package/dist/utils/get-cache-headers.d.ts +10 -0
  723. package/dist/utils/get-cache-headers.js +36 -0
  724. package/dist/utils/get-cache-headers.test.d.ts +1 -0
  725. package/dist/utils/get-cache-key.d.ts +2 -0
  726. package/dist/utils/get-cache-key.js +14 -0
  727. package/dist/utils/get-cache-key.test.d.ts +1 -0
  728. package/dist/utils/get-collection-from-alias.d.ts +6 -0
  729. package/dist/utils/get-collection-from-alias.js +12 -0
  730. package/dist/utils/get-collection-from-alias.test.d.ts +1 -0
  731. package/dist/utils/get-column-path.d.ts +26 -0
  732. package/dist/utils/get-column-path.js +61 -0
  733. package/dist/utils/get-column-path.test.d.ts +1 -0
  734. package/dist/utils/get-column.d.ts +20 -0
  735. package/dist/utils/get-column.js +48 -0
  736. package/dist/utils/get-config-from-env.d.ts +1 -0
  737. package/dist/utils/get-config-from-env.js +41 -0
  738. package/dist/utils/get-config-from-env.test.d.ts +1 -0
  739. package/dist/utils/get-date-formatted.d.ts +1 -0
  740. package/dist/utils/get-date-formatted.js +10 -0
  741. package/dist/utils/get-date-formatted.test.d.ts +1 -0
  742. package/dist/utils/get-default-index-name.d.ts +10 -0
  743. package/dist/utils/get-default-index-name.js +21 -0
  744. package/dist/utils/get-default-value.d.ts +3 -0
  745. package/dist/utils/get-default-value.js +56 -0
  746. package/dist/utils/get-graphql-query-and-variables.d.ts +2 -0
  747. package/dist/utils/get-graphql-query-and-variables.js +5 -0
  748. package/dist/utils/get-graphql-query-and-variables.test.d.ts +1 -0
  749. package/dist/utils/get-graphql-type.d.ts +3 -0
  750. package/dist/utils/get-graphql-type.js +36 -0
  751. package/dist/utils/get-ip-from-req.d.ts +2 -0
  752. package/dist/utils/get-ip-from-req.js +17 -0
  753. package/dist/utils/get-local-type.d.ts +9 -0
  754. package/dist/utils/get-local-type.js +128 -0
  755. package/dist/utils/get-milliseconds.d.ts +4 -0
  756. package/dist/utils/get-milliseconds.js +7 -0
  757. package/dist/utils/get-milliseconds.test.d.ts +1 -0
  758. package/dist/utils/get-module-default.d.ts +3 -0
  759. package/dist/utils/get-module-default.js +6 -0
  760. package/dist/utils/get-os-info.d.ts +9 -0
  761. package/dist/utils/get-os-info.js +40 -0
  762. package/dist/utils/get-permissions.d.ts +2 -0
  763. package/dist/utils/get-permissions.js +151 -0
  764. package/dist/utils/get-relation-info.d.ts +7 -0
  765. package/dist/utils/get-relation-info.js +45 -0
  766. package/dist/utils/get-relation-info.test.d.ts +1 -0
  767. package/dist/utils/get-relation-type.d.ts +6 -0
  768. package/dist/utils/get-relation-type.js +18 -0
  769. package/dist/utils/get-relation-type.test.d.ts +1 -0
  770. package/dist/utils/get-schema.d.ts +10 -0
  771. package/dist/utils/get-schema.js +131 -0
  772. package/dist/utils/get-snapshot-diff.d.ts +2 -0
  773. package/dist/utils/get-snapshot-diff.js +78 -0
  774. package/dist/utils/get-snapshot.d.ts +7 -0
  775. package/dist/utils/get-snapshot.js +55 -0
  776. package/dist/utils/get-string-byte-size.d.ts +4 -0
  777. package/dist/utils/get-string-byte-size.js +6 -0
  778. package/dist/utils/get-string-byte-size.test.d.ts +1 -0
  779. package/dist/utils/get-versioned-hash.d.ts +1 -0
  780. package/dist/utils/get-versioned-hash.js +5 -0
  781. package/dist/utils/get-versioned-hash.test.d.ts +1 -0
  782. package/dist/utils/is-directus-jwt.d.ts +5 -0
  783. package/dist/utils/is-directus-jwt.js +16 -0
  784. package/dist/utils/is-directus-jwt.test.d.ts +1 -0
  785. package/dist/utils/is-url-allowed.d.ts +4 -0
  786. package/dist/utils/is-url-allowed.js +30 -0
  787. package/dist/utils/job-queue.d.ts +9 -0
  788. package/dist/utils/job-queue.js +22 -0
  789. package/dist/utils/jwt.d.ts +3 -0
  790. package/dist/utils/jwt.js +29 -0
  791. package/dist/utils/jwt.test.d.ts +1 -0
  792. package/dist/utils/map-values-deep.d.ts +1 -0
  793. package/dist/utils/map-values-deep.js +25 -0
  794. package/dist/utils/map-values-deep.test.d.ts +1 -0
  795. package/dist/utils/md.d.ts +4 -0
  796. package/dist/utils/md.js +8 -0
  797. package/dist/utils/md.test.d.ts +1 -0
  798. package/dist/utils/merge-permissions-for-share.d.ts +4 -0
  799. package/dist/utils/merge-permissions-for-share.js +109 -0
  800. package/dist/utils/merge-permissions.d.ts +3 -0
  801. package/dist/utils/merge-permissions.js +95 -0
  802. package/dist/utils/merge-permissions.test.d.ts +1 -0
  803. package/dist/utils/package.d.ts +2 -0
  804. package/dist/utils/package.js +6 -0
  805. package/dist/utils/parse-image-metadata.d.ts +3 -0
  806. package/dist/utils/parse-image-metadata.js +68 -0
  807. package/dist/utils/reduce-schema.d.ts +9 -0
  808. package/dist/utils/reduce-schema.js +78 -0
  809. package/dist/utils/require-yaml.d.ts +1 -0
  810. package/dist/utils/require-yaml.js +6 -0
  811. package/dist/utils/sanitize-query.d.ts +2 -0
  812. package/dist/utils/sanitize-query.js +172 -0
  813. package/dist/utils/sanitize-query.test.d.ts +1 -0
  814. package/dist/utils/sanitize-schema.d.ts +26 -0
  815. package/dist/utils/sanitize-schema.js +87 -0
  816. package/dist/utils/sanitize-schema.test.d.ts +1 -0
  817. package/dist/utils/should-skip-cache.d.ts +7 -0
  818. package/dist/utils/should-skip-cache.js +26 -0
  819. package/dist/utils/should-skip-cache.test.d.ts +1 -0
  820. package/dist/utils/stall.d.ts +26 -0
  821. package/dist/utils/stall.js +34 -0
  822. package/dist/utils/stall.test.d.ts +1 -0
  823. package/dist/utils/strip-function.d.ts +4 -0
  824. package/dist/utils/strip-function.js +12 -0
  825. package/dist/utils/strip-function.test.d.ts +1 -0
  826. package/dist/utils/telemetry.d.ts +1 -0
  827. package/dist/utils/telemetry.js +23 -0
  828. package/dist/utils/transformations.d.ts +6 -0
  829. package/dist/utils/transformations.js +30 -0
  830. package/dist/utils/url.d.ts +17 -0
  831. package/dist/utils/url.js +59 -0
  832. package/dist/utils/url.test.d.ts +1 -0
  833. package/dist/utils/user-name.d.ts +2 -0
  834. package/dist/utils/user-name.js +15 -0
  835. package/dist/utils/user-name.test.d.ts +1 -0
  836. package/dist/utils/validate-diff.d.ts +7 -0
  837. package/dist/utils/validate-diff.js +110 -0
  838. package/dist/utils/validate-diff.test.d.ts +1 -0
  839. package/dist/utils/validate-env.d.ts +1 -0
  840. package/dist/utils/validate-env.js +11 -0
  841. package/dist/utils/validate-env.test.d.ts +1 -0
  842. package/dist/utils/validate-keys.d.ts +6 -0
  843. package/dist/utils/validate-keys.js +21 -0
  844. package/dist/utils/validate-keys.test.d.ts +1 -0
  845. package/dist/utils/validate-query.d.ts +2 -0
  846. package/dist/utils/validate-query.js +198 -0
  847. package/dist/utils/validate-query.test.d.ts +1 -0
  848. package/dist/utils/validate-snapshot.d.ts +5 -0
  849. package/dist/utils/validate-snapshot.js +64 -0
  850. package/dist/utils/validate-snapshot.test.d.ts +1 -0
  851. package/dist/utils/validate-storage.d.ts +1 -0
  852. package/dist/utils/validate-storage.js +31 -0
  853. package/dist/webhooks.d.ts +4 -0
  854. package/dist/webhooks.js +79 -0
  855. package/package.json +231 -0
@@ -0,0 +1,1643 @@
1
+ import { merge, uniq } from 'lodash-es';
2
+ const defaults = {
3
+ collection: null,
4
+ field: null,
5
+ special: null,
6
+ interface: null,
7
+ options: null,
8
+ display: null,
9
+ display_options: null,
10
+ locked: false,
11
+ readonly: false,
12
+ hidden: false,
13
+ sort: null,
14
+ width: 'full',
15
+ group: null,
16
+ translations: null,
17
+ note: null,
18
+ };
19
+ const systemFields = [
20
+ {
21
+ collection: 'directus_collections',
22
+ field: 'collection_divider',
23
+ special: 'alias',
24
+ interface: 'divider',
25
+ options: {
26
+ icon: 'box',
27
+ title: 'Collection Setup',
28
+ color: '#2F80ED',
29
+ },
30
+ locked: true,
31
+ sort: 1,
32
+ width: 'full',
33
+ },
34
+ {
35
+ collection: 'directus_collections',
36
+ field: 'collection',
37
+ interface: 'text-input',
38
+ options: {
39
+ font: 'monospace',
40
+ },
41
+ locked: true,
42
+ readonly: true,
43
+ sort: 2,
44
+ width: 'half',
45
+ },
46
+ {
47
+ collection: 'directus_collections',
48
+ field: 'icon',
49
+ interface: 'icon',
50
+ options: null,
51
+ locked: true,
52
+ sort: 3,
53
+ width: 'half',
54
+ },
55
+ {
56
+ collection: 'directus_collections',
57
+ field: 'note',
58
+ interface: 'text-input',
59
+ options: {
60
+ placeholder: 'A description of this collection...',
61
+ },
62
+ locked: true,
63
+ sort: 4,
64
+ width: 'full',
65
+ },
66
+ {
67
+ collection: 'directus_collections',
68
+ field: 'display_template',
69
+ interface: 'display-template',
70
+ options: {
71
+ collectionField: 'collection',
72
+ },
73
+ locked: true,
74
+ sort: 5,
75
+ width: 'full',
76
+ },
77
+ {
78
+ collection: 'directus_collections',
79
+ field: 'hidden',
80
+ special: 'boolean',
81
+ interface: 'toggle',
82
+ options: {
83
+ label: 'Hide within the App',
84
+ },
85
+ locked: true,
86
+ sort: 6,
87
+ width: 'half',
88
+ },
89
+ {
90
+ collection: 'directus_collections',
91
+ field: 'singleton',
92
+ special: 'boolean',
93
+ interface: 'toggle',
94
+ options: {
95
+ label: 'Treat as single object',
96
+ },
97
+ locked: true,
98
+ sort: 7,
99
+ width: 'half',
100
+ },
101
+ {
102
+ collection: 'directus_collections',
103
+ field: 'translations',
104
+ special: 'json',
105
+ interface: 'repeater',
106
+ options: {
107
+ template: '{{ translation }} ({{ language }})',
108
+ fields: [
109
+ {
110
+ field: 'language',
111
+ name: 'Language',
112
+ type: 'string',
113
+ schema: {
114
+ default_value: 'en-US',
115
+ },
116
+ meta: {
117
+ interface: 'system-language',
118
+ width: 'half',
119
+ },
120
+ },
121
+ {
122
+ field: 'translation',
123
+ name: 'translation',
124
+ type: 'string',
125
+ meta: {
126
+ interface: 'text-input',
127
+ width: 'half',
128
+ options: {
129
+ placeholder: 'Enter a translation...',
130
+ },
131
+ },
132
+ },
133
+ ],
134
+ },
135
+ locked: true,
136
+ sort: 8,
137
+ width: 'full',
138
+ },
139
+ {
140
+ collection: 'directus_collections',
141
+ field: 'archive_divider',
142
+ special: 'alias',
143
+ interface: 'divider',
144
+ options: {
145
+ icon: 'archive',
146
+ title: 'Archive',
147
+ color: '#2F80ED',
148
+ },
149
+ locked: true,
150
+ sort: 9,
151
+ width: 'full',
152
+ },
153
+ {
154
+ collection: 'directus_collections',
155
+ field: 'archive_field',
156
+ interface: 'field',
157
+ options: {
158
+ collectionField: 'collection',
159
+ allowNone: true,
160
+ placeholder: 'Choose a field...',
161
+ },
162
+ locked: true,
163
+ sort: 10,
164
+ width: 'half',
165
+ },
166
+ {
167
+ collection: 'directus_collections',
168
+ field: 'archive_app_filter',
169
+ interface: 'toggle',
170
+ special: 'boolean',
171
+ options: {
172
+ label: 'Enable App Archive Filter',
173
+ },
174
+ locked: true,
175
+ sort: 11,
176
+ width: 'half',
177
+ },
178
+ {
179
+ collection: 'directus_collections',
180
+ field: 'archive_value',
181
+ interface: 'text-input',
182
+ options: {
183
+ font: 'monospace',
184
+ iconRight: 'archive',
185
+ placeholder: 'Value set when archiving...',
186
+ },
187
+ locked: true,
188
+ sort: 12,
189
+ width: 'half',
190
+ },
191
+ {
192
+ collection: 'directus_collections',
193
+ field: 'unarchive_value',
194
+ interface: 'text-input',
195
+ options: {
196
+ font: 'monospace',
197
+ iconRight: 'unarchive',
198
+ placeholder: 'Value set when unarchiving...',
199
+ },
200
+ locked: true,
201
+ sort: 13,
202
+ width: 'half',
203
+ },
204
+ {
205
+ collection: 'directus_collections',
206
+ field: 'sort_divider',
207
+ special: 'alias',
208
+ interface: 'divider',
209
+ options: {
210
+ icon: 'sort',
211
+ title: 'Sort',
212
+ color: '#2F80ED',
213
+ },
214
+ locked: true,
215
+ sort: 14,
216
+ width: 'full',
217
+ },
218
+ {
219
+ collection: 'directus_collections',
220
+ field: 'sort_field',
221
+ interface: 'field',
222
+ options: {
223
+ collectionField: 'collection',
224
+ placeholder: 'Choose a field...',
225
+ typeAllowList: ['float', 'decimal', 'integer'],
226
+ allowNone: true,
227
+ },
228
+ locked: true,
229
+ sort: 15,
230
+ width: 'half',
231
+ },
232
+ {
233
+ collection: 'directus_roles',
234
+ field: 'id',
235
+ hidden: true,
236
+ interface: 'text-input',
237
+ locked: true,
238
+ special: 'uuid',
239
+ },
240
+ {
241
+ collection: 'directus_roles',
242
+ field: 'name',
243
+ interface: 'text-input',
244
+ options: {
245
+ placeholder: 'The unique name for this role...',
246
+ },
247
+ locked: true,
248
+ sort: 1,
249
+ width: 'half',
250
+ },
251
+ {
252
+ collection: 'directus_roles',
253
+ field: 'icon',
254
+ interface: 'icon',
255
+ display: 'icon',
256
+ locked: true,
257
+ sort: 2,
258
+ width: 'half',
259
+ },
260
+ {
261
+ collection: 'directus_roles',
262
+ field: 'description',
263
+ interface: 'text-input',
264
+ options: {
265
+ placeholder: 'A description of this role...',
266
+ },
267
+ locked: true,
268
+ sort: 3,
269
+ width: 'full',
270
+ },
271
+ {
272
+ collection: 'directus_roles',
273
+ field: 'app_access',
274
+ interface: 'toggle',
275
+ locked: true,
276
+ special: 'boolean',
277
+ sort: 4,
278
+ width: 'half',
279
+ },
280
+ {
281
+ collection: 'directus_roles',
282
+ field: 'admin_access',
283
+ interface: 'toggle',
284
+ locked: true,
285
+ special: 'boolean',
286
+ sort: 5,
287
+ width: 'half',
288
+ },
289
+ {
290
+ collection: 'directus_roles',
291
+ field: 'ip_access',
292
+ interface: 'tags',
293
+ options: {
294
+ placeholder: 'Add allowed IP addresses, leave empty to allow all...',
295
+ },
296
+ locked: true,
297
+ special: 'csv',
298
+ sort: 6,
299
+ width: 'full',
300
+ },
301
+ {
302
+ collection: 'directus_roles',
303
+ field: 'enforce_tfa',
304
+ interface: 'toggle',
305
+ locked: true,
306
+ sort: 7,
307
+ special: 'boolean',
308
+ width: 'half',
309
+ },
310
+ {
311
+ collection: 'directus_roles',
312
+ field: 'users',
313
+ interface: 'one-to-many',
314
+ locked: true,
315
+ special: 'o2m',
316
+ sort: 8,
317
+ options: {
318
+ fields: ['first_name', 'last_name'],
319
+ },
320
+ width: 'full',
321
+ },
322
+ {
323
+ collection: 'directus_roles',
324
+ field: 'module_list',
325
+ interface: 'repeater',
326
+ locked: true,
327
+ options: {
328
+ template: '{{ name }}',
329
+ addLabel: 'Add New Module...',
330
+ fields: [
331
+ {
332
+ name: 'Icon',
333
+ field: 'icon',
334
+ type: 'string',
335
+ meta: {
336
+ interface: 'icon',
337
+ width: 'half',
338
+ },
339
+ },
340
+ {
341
+ name: 'Name',
342
+ field: 'name',
343
+ type: 'string',
344
+ meta: {
345
+ interface: 'text-input',
346
+ width: 'half',
347
+ options: {
348
+ iconRight: 'title',
349
+ placeholder: 'Enter a title...',
350
+ },
351
+ },
352
+ },
353
+ {
354
+ name: 'Link',
355
+ field: 'link',
356
+ type: 'string',
357
+ meta: {
358
+ interface: 'text-input',
359
+ width: 'full',
360
+ options: {
361
+ iconRight: 'link',
362
+ placeholder: 'Relative or absolute URL...',
363
+ },
364
+ },
365
+ },
366
+ ],
367
+ },
368
+ special: 'json',
369
+ sort: 9,
370
+ width: 'full',
371
+ },
372
+ {
373
+ collection: 'directus_roles',
374
+ field: 'collection_list',
375
+ interface: 'repeater',
376
+ locked: true,
377
+ options: {
378
+ template: '{{ group_name }}',
379
+ addLabel: 'Add New Group...',
380
+ fields: [
381
+ {
382
+ name: 'Group Name',
383
+ field: 'group_name',
384
+ type: 'string',
385
+ meta: {
386
+ width: 'half',
387
+ interface: 'text-input',
388
+ options: {
389
+ iconRight: 'title',
390
+ placeholder: 'Label this group...',
391
+ },
392
+ },
393
+ schema: {
394
+ is_nullable: false,
395
+ },
396
+ },
397
+ {
398
+ name: 'Type',
399
+ field: 'accordion',
400
+ type: 'string',
401
+ schema: {
402
+ default_value: 'always_open',
403
+ },
404
+ meta: {
405
+ width: 'half',
406
+ interface: 'dropdown',
407
+ options: {
408
+ choices: [
409
+ {
410
+ value: 'always_open',
411
+ text: 'Always Open',
412
+ },
413
+ {
414
+ value: 'start_open',
415
+ text: 'Start Open',
416
+ },
417
+ {
418
+ value: 'start_collapsed',
419
+ text: 'Start Collapsed',
420
+ },
421
+ ],
422
+ },
423
+ },
424
+ },
425
+ {
426
+ name: 'Collections',
427
+ field: 'collections',
428
+ type: 'JSON',
429
+ meta: {
430
+ interface: 'repeater',
431
+ options: {
432
+ addLabel: 'Add New Collection...',
433
+ template: '{{ collection }}',
434
+ fields: [
435
+ {
436
+ name: 'Collection',
437
+ field: 'collection',
438
+ type: 'string',
439
+ meta: {
440
+ interface: 'collection',
441
+ width: 'full',
442
+ },
443
+ schema: {
444
+ is_nullable: false,
445
+ },
446
+ },
447
+ ],
448
+ },
449
+ },
450
+ },
451
+ ],
452
+ },
453
+ special: 'json',
454
+ sort: 10,
455
+ width: 'full',
456
+ },
457
+ {
458
+ collection: 'directus_fields',
459
+ field: 'options',
460
+ hidden: true,
461
+ locked: true,
462
+ special: 'json',
463
+ },
464
+ {
465
+ collection: 'directus_fields',
466
+ field: 'display_options',
467
+ hidden: true,
468
+ locked: true,
469
+ special: 'json',
470
+ },
471
+ {
472
+ collection: 'directus_fields',
473
+ field: 'locked',
474
+ hidden: true,
475
+ locked: true,
476
+ special: 'boolean',
477
+ },
478
+ {
479
+ collection: 'directus_fields',
480
+ field: 'readonly',
481
+ hidden: true,
482
+ locked: true,
483
+ special: 'boolean',
484
+ },
485
+ {
486
+ collection: 'directus_fields',
487
+ field: 'hidden',
488
+ hidden: true,
489
+ locked: true,
490
+ special: 'boolean',
491
+ },
492
+ {
493
+ collection: 'directus_fields',
494
+ field: 'special',
495
+ hidden: true,
496
+ locked: true,
497
+ special: 'csv',
498
+ },
499
+ {
500
+ collection: 'directus_fields',
501
+ field: 'translations',
502
+ hidden: true,
503
+ locked: true,
504
+ special: 'json',
505
+ },
506
+ {
507
+ collection: 'directus_users',
508
+ field: 'first_name',
509
+ interface: 'text-input',
510
+ locked: true,
511
+ options: {
512
+ iconRight: 'account_circle',
513
+ },
514
+ sort: 1,
515
+ width: 'half',
516
+ },
517
+ {
518
+ collection: 'directus_users',
519
+ field: 'last_name',
520
+ interface: 'text-input',
521
+ locked: true,
522
+ options: {
523
+ iconRight: 'account_circle',
524
+ },
525
+ sort: 2,
526
+ width: 'half',
527
+ },
528
+ {
529
+ collection: 'directus_users',
530
+ field: 'email',
531
+ interface: 'text-input',
532
+ locked: true,
533
+ options: {
534
+ iconRight: 'email',
535
+ },
536
+ sort: 3,
537
+ width: 'half',
538
+ },
539
+ {
540
+ collection: 'directus_users',
541
+ field: 'password',
542
+ special: 'hash, conceal',
543
+ interface: 'hash',
544
+ locked: true,
545
+ options: {
546
+ iconRight: 'lock',
547
+ masked: true,
548
+ },
549
+ sort: 4,
550
+ width: 'half',
551
+ },
552
+ {
553
+ collection: 'directus_users',
554
+ field: 'avatar',
555
+ interface: 'file',
556
+ locked: true,
557
+ sort: 5,
558
+ width: 'full',
559
+ },
560
+ {
561
+ collection: 'directus_users',
562
+ field: 'location',
563
+ interface: 'text-input',
564
+ options: {
565
+ iconRight: 'place',
566
+ },
567
+ sort: 6,
568
+ width: 'half',
569
+ },
570
+ {
571
+ collection: 'directus_users',
572
+ field: 'title',
573
+ interface: 'text-input',
574
+ options: {
575
+ iconRight: 'work',
576
+ },
577
+ sort: 7,
578
+ width: 'half',
579
+ },
580
+ {
581
+ collection: 'directus_users',
582
+ field: 'description',
583
+ interface: 'textarea',
584
+ sort: 8,
585
+ width: 'full',
586
+ },
587
+ {
588
+ collection: 'directus_users',
589
+ field: 'tags',
590
+ interface: 'tags',
591
+ special: 'json',
592
+ sort: 9,
593
+ width: 'full',
594
+ options: {
595
+ iconRight: 'local_offer',
596
+ },
597
+ },
598
+ {
599
+ collection: 'directus_users',
600
+ field: 'preferences_divider',
601
+ interface: 'divider',
602
+ options: {
603
+ icon: 'face',
604
+ title: 'User Preferences',
605
+ color: '#2F80ED',
606
+ },
607
+ special: 'alias',
608
+ sort: 10,
609
+ width: 'full',
610
+ },
611
+ {
612
+ collection: 'directus_users',
613
+ field: 'language',
614
+ interface: 'dropdown',
615
+ locked: true,
616
+ options: {
617
+ choices: [
618
+ {
619
+ text: 'Afrikaans (South Africa)',
620
+ value: 'af-ZA',
621
+ },
622
+ {
623
+ text: 'Arabic (Saudi Arabia)',
624
+ value: 'ar-SA',
625
+ },
626
+ {
627
+ text: 'Catalan (Spain)',
628
+ value: 'ca-ES',
629
+ },
630
+ {
631
+ text: 'Chinese (Simplified)',
632
+ value: 'zh-CN',
633
+ },
634
+ {
635
+ text: 'Czech (Czech Republic)',
636
+ value: 'cs-CZ',
637
+ },
638
+ {
639
+ text: 'Danish (Denmark)',
640
+ value: 'da-DK',
641
+ },
642
+ {
643
+ text: 'Dutch (Netherlands)',
644
+ value: 'nl-NL',
645
+ },
646
+ {
647
+ text: 'English (United States)',
648
+ value: 'en-US',
649
+ },
650
+ {
651
+ text: 'Finnish (Finland)',
652
+ value: 'fi-FI',
653
+ },
654
+ {
655
+ text: 'French (France)',
656
+ value: 'fr-FR',
657
+ },
658
+ {
659
+ text: 'German (Germany)',
660
+ value: 'de-DE',
661
+ },
662
+ {
663
+ text: 'Greek (Greece)',
664
+ value: 'el-GR',
665
+ },
666
+ {
667
+ text: 'Hebrew (Israel)',
668
+ value: 'he-IL',
669
+ },
670
+ {
671
+ text: 'Hungarian (Hungary)',
672
+ value: 'hu-HU',
673
+ },
674
+ {
675
+ text: 'Icelandic (Iceland)',
676
+ value: 'is-IS',
677
+ },
678
+ {
679
+ text: 'Indonesian (Indonesia)',
680
+ value: 'id-ID',
681
+ },
682
+ {
683
+ text: 'Italian (Italy)',
684
+ value: 'it-IT',
685
+ },
686
+ {
687
+ text: 'Japanese (Japan)',
688
+ value: 'ja-JP',
689
+ },
690
+ {
691
+ text: 'Korean (Korea)',
692
+ value: 'ko-KR',
693
+ },
694
+ {
695
+ text: 'Malay (Malaysia)',
696
+ value: 'ms-MY',
697
+ },
698
+ {
699
+ text: 'Norwegian (Norway)',
700
+ value: 'no-NO',
701
+ },
702
+ {
703
+ text: 'Polish (Poland)',
704
+ value: 'pl-PL',
705
+ },
706
+ {
707
+ text: 'Portuguese (Brazil)',
708
+ value: 'pt-BR',
709
+ },
710
+ {
711
+ text: 'Portuguese (Portugal)',
712
+ value: 'pt-PT',
713
+ },
714
+ {
715
+ text: 'Russian (Russian Federation)',
716
+ value: 'ru-RU',
717
+ },
718
+ {
719
+ text: 'Spanish (Spain)',
720
+ value: 'es-ES',
721
+ },
722
+ {
723
+ text: 'Spanish (Latin America)',
724
+ value: 'es-419',
725
+ },
726
+ {
727
+ text: 'Taiwanese Mandarin (Taiwan)',
728
+ value: 'zh-TW',
729
+ },
730
+ {
731
+ text: 'Turkish (Turkey)',
732
+ value: 'tr-TR',
733
+ },
734
+ {
735
+ text: 'Ukrainian (Ukraine)',
736
+ value: 'uk-UA',
737
+ },
738
+ {
739
+ text: 'Vietnamese (Vietnam)',
740
+ value: 'vi-VN',
741
+ },
742
+ ],
743
+ },
744
+ sort: 11,
745
+ width: 'half',
746
+ },
747
+ {
748
+ collection: 'directus_users',
749
+ field: 'theme',
750
+ interface: 'dropdown',
751
+ locked: true,
752
+ options: {
753
+ choices: [
754
+ {
755
+ value: 'auto',
756
+ text: 'Automatic (Based on System)',
757
+ },
758
+ {
759
+ value: 'light',
760
+ text: 'Light Mode',
761
+ },
762
+ {
763
+ value: 'dark',
764
+ text: 'Dark Mode',
765
+ },
766
+ ],
767
+ },
768
+ sort: 12,
769
+ width: 'half',
770
+ },
771
+ {
772
+ collection: 'directus_users',
773
+ field: 'tfa_secret',
774
+ interface: 'tfa-setup',
775
+ locked: true,
776
+ special: 'conceal',
777
+ sort: 13,
778
+ width: 'half',
779
+ },
780
+ {
781
+ collection: 'directus_users',
782
+ field: 'admin_divider',
783
+ interface: 'divider',
784
+ locked: true,
785
+ options: {
786
+ icon: 'verified_user',
787
+ title: 'Admin Options',
788
+ color: '#F2994A',
789
+ },
790
+ special: 'alias',
791
+ sort: 14,
792
+ width: 'full',
793
+ },
794
+ {
795
+ collection: 'directus_users',
796
+ field: 'status',
797
+ interface: 'dropdown',
798
+ locked: true,
799
+ options: {
800
+ choices: [
801
+ {
802
+ text: 'Draft',
803
+ value: 'draft',
804
+ },
805
+ {
806
+ text: 'Invited',
807
+ value: 'invited',
808
+ },
809
+ {
810
+ text: 'Active',
811
+ value: 'active',
812
+ },
813
+ {
814
+ text: 'Suspended',
815
+ value: 'suspended',
816
+ },
817
+ {
818
+ text: 'Archived',
819
+ value: 'archived',
820
+ },
821
+ ],
822
+ },
823
+ sort: 15,
824
+ width: 'half',
825
+ },
826
+ {
827
+ collection: 'directus_users',
828
+ field: 'role',
829
+ interface: 'many-to-one',
830
+ locked: true,
831
+ options: {
832
+ template: '{{ name }}',
833
+ },
834
+ special: 'm2o',
835
+ sort: 16,
836
+ width: 'half',
837
+ },
838
+ {
839
+ collection: 'directus_users',
840
+ field: 'token',
841
+ interface: 'token',
842
+ locked: true,
843
+ options: {
844
+ iconRight: 'vpn_key',
845
+ placeholder: 'Enter a secure access token...',
846
+ },
847
+ sort: 17,
848
+ width: 'full',
849
+ },
850
+ {
851
+ collection: 'directus_users',
852
+ field: 'id',
853
+ special: 'uuid',
854
+ interface: 'text-input',
855
+ locked: true,
856
+ options: {
857
+ iconRight: 'vpn_key',
858
+ },
859
+ sort: 18,
860
+ width: 'full',
861
+ },
862
+ {
863
+ collection: 'directus_folders',
864
+ field: 'id',
865
+ interface: 'text-input',
866
+ locked: true,
867
+ special: 'uuid',
868
+ },
869
+ {
870
+ collection: 'directus_files',
871
+ field: 'id',
872
+ hidden: true,
873
+ interface: 'text-input',
874
+ locked: true,
875
+ special: 'uuid',
876
+ },
877
+ {
878
+ collection: 'directus_files',
879
+ field: 'title',
880
+ interface: 'text-input',
881
+ locked: true,
882
+ options: {
883
+ iconRight: 'title',
884
+ placeholder: 'A unique title...',
885
+ },
886
+ sort: 1,
887
+ width: 'full',
888
+ },
889
+ {
890
+ collection: 'directus_files',
891
+ field: 'description',
892
+ interface: 'textarea',
893
+ locked: true,
894
+ sort: 2,
895
+ width: 'full',
896
+ options: {
897
+ placeholder: 'An optional description...',
898
+ },
899
+ },
900
+ {
901
+ collection: 'directus_files',
902
+ field: 'tags',
903
+ interface: 'tags',
904
+ locked: true,
905
+ options: {
906
+ iconRight: 'local_offer',
907
+ },
908
+ special: 'json',
909
+ sort: 3,
910
+ width: 'full',
911
+ display: 'tags',
912
+ },
913
+ {
914
+ collection: 'directus_files',
915
+ field: 'location',
916
+ interface: 'text-input',
917
+ locked: true,
918
+ options: {
919
+ iconRight: 'place',
920
+ placeholder: 'An optional location...',
921
+ },
922
+ sort: 4,
923
+ width: 'half',
924
+ },
925
+ {
926
+ collection: 'directus_files',
927
+ field: 'storage',
928
+ interface: 'text-input',
929
+ locked: true,
930
+ options: {
931
+ iconRight: 'storage',
932
+ },
933
+ sort: 5,
934
+ width: 'half',
935
+ readonly: true,
936
+ },
937
+ {
938
+ collection: 'directus_files',
939
+ field: 'storage_divider',
940
+ interface: 'divider',
941
+ locked: true,
942
+ options: {
943
+ icon: 'insert_drive_file',
944
+ title: 'File Naming',
945
+ color: '#2F80ED',
946
+ },
947
+ special: 'alias',
948
+ sort: 6,
949
+ width: 'full',
950
+ },
951
+ {
952
+ collection: 'directus_files',
953
+ field: 'filename_disk',
954
+ interface: 'text-input',
955
+ locked: true,
956
+ options: {
957
+ iconRight: 'publish',
958
+ placeholder: 'Name on disk storage...',
959
+ },
960
+ sort: 7,
961
+ width: 'half',
962
+ },
963
+ {
964
+ collection: 'directus_files',
965
+ field: 'filename_download',
966
+ interface: 'text-input',
967
+ locked: true,
968
+ options: {
969
+ iconRight: 'get_app',
970
+ placeholder: 'Name when downloading...',
971
+ },
972
+ sort: 8,
973
+ width: 'half',
974
+ },
975
+ {
976
+ collection: 'directus_files',
977
+ field: 'metadata',
978
+ hidden: true,
979
+ locked: true,
980
+ special: 'json',
981
+ },
982
+ {
983
+ collection: 'directus_files',
984
+ field: 'type',
985
+ display: 'mime-type',
986
+ },
987
+ {
988
+ collection: 'directus_files',
989
+ field: 'filesize',
990
+ display: 'filesize',
991
+ },
992
+ {
993
+ collection: 'directus_files',
994
+ field: 'modified_by',
995
+ interface: 'user',
996
+ locked: true,
997
+ special: 'user-updated',
998
+ width: 'half',
999
+ display: 'user',
1000
+ },
1001
+ {
1002
+ collection: 'directus_files',
1003
+ field: 'modified_on',
1004
+ interface: 'datetime',
1005
+ locked: true,
1006
+ special: 'date-updated',
1007
+ width: 'half',
1008
+ display: 'datetime',
1009
+ },
1010
+ {
1011
+ collection: 'directus_files',
1012
+ field: 'created_on',
1013
+ display: 'datetime',
1014
+ },
1015
+ {
1016
+ collection: 'directus_files',
1017
+ field: 'created_by',
1018
+ display: 'user',
1019
+ },
1020
+ {
1021
+ collection: 'directus_permissions',
1022
+ field: 'permissions',
1023
+ hidden: true,
1024
+ locked: true,
1025
+ special: 'json',
1026
+ },
1027
+ {
1028
+ collection: 'directus_permissions',
1029
+ field: 'presets',
1030
+ hidden: true,
1031
+ locked: true,
1032
+ special: 'json',
1033
+ },
1034
+ {
1035
+ collection: 'directus_presets',
1036
+ field: 'filters',
1037
+ hidden: true,
1038
+ locked: true,
1039
+ special: 'json',
1040
+ },
1041
+ {
1042
+ collection: 'directus_presets',
1043
+ field: 'layout_query',
1044
+ hidden: true,
1045
+ locked: true,
1046
+ special: 'json',
1047
+ },
1048
+ {
1049
+ collection: 'directus_presets',
1050
+ field: 'layout_options',
1051
+ hidden: true,
1052
+ locked: true,
1053
+ special: 'json',
1054
+ },
1055
+ {
1056
+ collection: 'directus_revisions',
1057
+ field: 'data',
1058
+ hidden: true,
1059
+ locked: true,
1060
+ special: 'json',
1061
+ },
1062
+ {
1063
+ collection: 'directus_revisions',
1064
+ field: 'delta',
1065
+ hidden: true,
1066
+ locked: true,
1067
+ special: 'json',
1068
+ },
1069
+ {
1070
+ collection: 'directus_settings',
1071
+ field: 'project_name',
1072
+ interface: 'text-input',
1073
+ locked: true,
1074
+ options: {
1075
+ iconRight: 'title',
1076
+ placeholder: 'My project...',
1077
+ },
1078
+ sort: 1,
1079
+ translations: {
1080
+ language: 'en-US',
1081
+ translations: 'Name',
1082
+ },
1083
+ width: 'half',
1084
+ },
1085
+ {
1086
+ collection: 'directus_settings',
1087
+ field: 'project_url',
1088
+ interface: 'text-input',
1089
+ locked: true,
1090
+ options: {
1091
+ iconRight: 'link',
1092
+ placeholder: 'https://example.com',
1093
+ },
1094
+ sort: 2,
1095
+ translations: {
1096
+ language: 'en-US',
1097
+ translations: 'Website',
1098
+ },
1099
+ width: 'half',
1100
+ },
1101
+ {
1102
+ collection: 'directus_settings',
1103
+ field: 'project_color',
1104
+ interface: 'color',
1105
+ locked: true,
1106
+ note: 'Login & Logo Background',
1107
+ sort: 3,
1108
+ translations: {
1109
+ language: 'en-US',
1110
+ translations: 'Brand Color',
1111
+ },
1112
+ width: 'half',
1113
+ },
1114
+ {
1115
+ collection: 'directus_settings',
1116
+ field: 'project_logo',
1117
+ interface: 'file',
1118
+ locked: true,
1119
+ note: 'White 40x40 SVG/PNG',
1120
+ sort: 4,
1121
+ translations: {
1122
+ language: 'en-US',
1123
+ translations: 'Brand Logo',
1124
+ },
1125
+ width: 'half',
1126
+ },
1127
+ {
1128
+ collection: 'directus_settings',
1129
+ field: 'public_divider',
1130
+ interface: 'divider',
1131
+ locked: true,
1132
+ options: {
1133
+ icon: 'public',
1134
+ title: 'Public Pages',
1135
+ color: '#2F80ED',
1136
+ },
1137
+ special: 'alias',
1138
+ sort: 5,
1139
+ width: 'full',
1140
+ },
1141
+ {
1142
+ collection: 'directus_settings',
1143
+ field: 'public_foreground',
1144
+ interface: 'file',
1145
+ locked: true,
1146
+ sort: 6,
1147
+ translations: {
1148
+ language: 'en-US',
1149
+ translations: 'Login Foreground',
1150
+ },
1151
+ width: 'half',
1152
+ },
1153
+ {
1154
+ collection: 'directus_settings',
1155
+ field: 'public_background',
1156
+ interface: 'file',
1157
+ locked: true,
1158
+ sort: 7,
1159
+ translations: {
1160
+ language: 'en-US',
1161
+ translations: 'Login Background',
1162
+ },
1163
+ width: 'half',
1164
+ },
1165
+ {
1166
+ collection: 'directus_settings',
1167
+ field: 'public_note',
1168
+ interface: 'textarea',
1169
+ locked: true,
1170
+ options: {
1171
+ placeholder: 'A short, public message that supports markdown formatting...',
1172
+ },
1173
+ sort: 8,
1174
+ width: 'full',
1175
+ },
1176
+ {
1177
+ collection: 'directus_settings',
1178
+ field: 'security_divider',
1179
+ interface: 'divider',
1180
+ locked: true,
1181
+ options: {
1182
+ icon: 'security',
1183
+ title: 'Security',
1184
+ color: '#2F80ED',
1185
+ },
1186
+ special: 'alias',
1187
+ sort: 9,
1188
+ width: 'full',
1189
+ },
1190
+ {
1191
+ collection: 'directus_settings',
1192
+ field: 'auth_password_policy',
1193
+ interface: 'dropdown',
1194
+ locked: true,
1195
+ options: {
1196
+ choices: [
1197
+ {
1198
+ value: null,
1199
+ text: 'None – Not Recommended',
1200
+ },
1201
+ {
1202
+ value: '/^.{8,}$/',
1203
+ text: 'Weak – Minimum 8 Characters',
1204
+ },
1205
+ {
1206
+ value: "/(?=^.{8,}$)(?=.*\\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*()_+}{';'?>.<,])(?!.*\\s).*$/",
1207
+ text: 'Strong – Upper / Lowercase / Numbers / Special',
1208
+ },
1209
+ ],
1210
+ },
1211
+ sort: 10,
1212
+ width: 'half',
1213
+ },
1214
+ {
1215
+ collection: 'directus_settings',
1216
+ field: 'auth_login_attempts',
1217
+ interface: 'numeric',
1218
+ locked: true,
1219
+ options: {
1220
+ iconRight: 'lock',
1221
+ },
1222
+ sort: 11,
1223
+ width: 'half',
1224
+ },
1225
+ {
1226
+ collection: 'directus_settings',
1227
+ field: 'files_divider',
1228
+ interface: 'divider',
1229
+ locked: true,
1230
+ options: {
1231
+ icon: 'storage',
1232
+ title: 'Files & Thumbnails',
1233
+ color: '#2F80ED',
1234
+ },
1235
+ special: 'alias',
1236
+ sort: 12,
1237
+ width: 'full',
1238
+ },
1239
+ {
1240
+ collection: 'directus_settings',
1241
+ field: 'storage_asset_presets',
1242
+ interface: 'repeater',
1243
+ locked: true,
1244
+ options: {
1245
+ fields: [
1246
+ {
1247
+ field: 'key',
1248
+ name: 'Key',
1249
+ type: 'string',
1250
+ schema: {
1251
+ is_nullable: false,
1252
+ },
1253
+ meta: {
1254
+ interface: 'slug',
1255
+ options: {
1256
+ onlyOnCreate: false,
1257
+ },
1258
+ width: 'half',
1259
+ },
1260
+ },
1261
+ {
1262
+ field: 'fit',
1263
+ name: 'Fit',
1264
+ type: 'string',
1265
+ schema: {
1266
+ is_nullable: false,
1267
+ },
1268
+ meta: {
1269
+ interface: 'dropdown',
1270
+ options: {
1271
+ choices: [
1272
+ {
1273
+ value: 'contain',
1274
+ text: 'Contain (preserve aspect ratio)',
1275
+ },
1276
+ {
1277
+ value: 'cover',
1278
+ text: 'Cover (forces exact size)',
1279
+ },
1280
+ ],
1281
+ },
1282
+ width: 'half',
1283
+ },
1284
+ },
1285
+ {
1286
+ field: 'width',
1287
+ name: 'Width',
1288
+ type: 'integer',
1289
+ schema: {
1290
+ is_nullable: false,
1291
+ },
1292
+ meta: {
1293
+ interface: 'numeric',
1294
+ width: 'half',
1295
+ },
1296
+ },
1297
+ {
1298
+ field: 'height',
1299
+ name: 'Height',
1300
+ type: 'integer',
1301
+ schema: {
1302
+ is_nullable: false,
1303
+ },
1304
+ meta: {
1305
+ interface: 'numeric',
1306
+ width: 'half',
1307
+ },
1308
+ },
1309
+ {
1310
+ field: 'quality',
1311
+ type: 'integer',
1312
+ name: 'Quality',
1313
+ schema: {
1314
+ default_value: 80,
1315
+ is_nullable: false,
1316
+ },
1317
+ meta: {
1318
+ interface: 'slider',
1319
+ options: {
1320
+ max: 100,
1321
+ min: 0,
1322
+ step: 1,
1323
+ },
1324
+ width: 'full',
1325
+ },
1326
+ },
1327
+ ],
1328
+ template: '{{key}}',
1329
+ },
1330
+ special: 'json',
1331
+ sort: 13,
1332
+ width: 'full',
1333
+ },
1334
+ {
1335
+ collection: 'directus_settings',
1336
+ field: 'storage_asset_transform',
1337
+ interface: 'dropdown',
1338
+ locked: true,
1339
+ options: {
1340
+ choices: [
1341
+ {
1342
+ value: 'all',
1343
+ text: 'All',
1344
+ },
1345
+ {
1346
+ value: 'none',
1347
+ text: 'None',
1348
+ },
1349
+ {
1350
+ value: 'presets',
1351
+ text: 'Presets Only',
1352
+ },
1353
+ ],
1354
+ },
1355
+ sort: 14,
1356
+ width: 'half',
1357
+ },
1358
+ {
1359
+ collection: 'directus_settings',
1360
+ field: 'id',
1361
+ hidden: true,
1362
+ locked: true,
1363
+ },
1364
+ {
1365
+ collection: 'directus_settings',
1366
+ field: 'overrides_divider',
1367
+ interface: 'divider',
1368
+ locked: true,
1369
+ options: {
1370
+ icon: 'brush',
1371
+ title: 'App Overrides',
1372
+ color: '#2F80ED',
1373
+ },
1374
+ special: 'alias',
1375
+ sort: 15,
1376
+ width: 'full',
1377
+ },
1378
+ {
1379
+ collection: 'directus_settings',
1380
+ field: 'custom_css',
1381
+ interface: 'code',
1382
+ locked: true,
1383
+ options: {
1384
+ language: 'css',
1385
+ lineNumber: true,
1386
+ },
1387
+ sort: 16,
1388
+ width: 'full',
1389
+ },
1390
+ {
1391
+ collection: 'directus_webhooks',
1392
+ field: 'id',
1393
+ hidden: true,
1394
+ locked: true,
1395
+ },
1396
+ {
1397
+ collection: 'directus_webhooks',
1398
+ field: 'name',
1399
+ interface: 'text-input',
1400
+ locked: true,
1401
+ options: {
1402
+ iconRight: 'title',
1403
+ },
1404
+ sort: 1,
1405
+ width: 'full',
1406
+ },
1407
+ {
1408
+ collection: 'directus_webhooks',
1409
+ field: 'method',
1410
+ interface: 'dropdown',
1411
+ display: 'labels',
1412
+ display_options: {
1413
+ defaultBackground: '#ECEFF1',
1414
+ choices: null,
1415
+ format: false,
1416
+ },
1417
+ locked: true,
1418
+ options: {
1419
+ choices: ['GET', 'POST'],
1420
+ },
1421
+ sort: 2,
1422
+ width: 'half',
1423
+ },
1424
+ {
1425
+ collection: 'directus_webhooks',
1426
+ field: 'url',
1427
+ interface: 'text-input',
1428
+ locked: true,
1429
+ options: {
1430
+ iconRight: 'link',
1431
+ },
1432
+ sort: 3,
1433
+ width: 'half',
1434
+ },
1435
+ {
1436
+ collection: 'directus_webhooks',
1437
+ field: 'status',
1438
+ interface: 'dropdown',
1439
+ display: 'labels',
1440
+ display_options: {
1441
+ defaultColor: '#B0BEC5',
1442
+ defaultBackground: '#ECEFF1',
1443
+ showAsDot: true,
1444
+ choices: [
1445
+ {
1446
+ text: 'Active',
1447
+ value: 'active',
1448
+ foreground: '#607D8B',
1449
+ background: '#2F80ED',
1450
+ },
1451
+ {
1452
+ text: 'Inactive',
1453
+ value: 'inactive',
1454
+ foreground: '#607D8B',
1455
+ background: '#ECEFF1',
1456
+ },
1457
+ ],
1458
+ },
1459
+ locked: true,
1460
+ options: {
1461
+ choices: [
1462
+ {
1463
+ text: 'Active',
1464
+ value: 'active',
1465
+ },
1466
+ {
1467
+ text: 'Inactive',
1468
+ value: 'inactive',
1469
+ },
1470
+ ],
1471
+ },
1472
+ sort: 4,
1473
+ width: 'half',
1474
+ },
1475
+ {
1476
+ collection: 'directus_webhooks',
1477
+ field: 'data',
1478
+ interface: 'toggle',
1479
+ locked: true,
1480
+ options: {
1481
+ label: 'Send Event Data',
1482
+ },
1483
+ special: 'boolean',
1484
+ sort: 5,
1485
+ width: 'half',
1486
+ },
1487
+ {
1488
+ collection: 'directus_webhooks',
1489
+ field: 'triggers_divider',
1490
+ interface: 'divider',
1491
+ options: {
1492
+ icon: 'api',
1493
+ title: 'Triggers',
1494
+ color: '#2F80ED',
1495
+ },
1496
+ special: 'alias',
1497
+ sort: 6,
1498
+ width: 'full',
1499
+ },
1500
+ {
1501
+ collection: 'directus_webhooks',
1502
+ field: 'actions',
1503
+ interface: 'checkboxes',
1504
+ options: {
1505
+ choices: [
1506
+ {
1507
+ text: 'Create',
1508
+ value: 'create',
1509
+ },
1510
+ {
1511
+ text: 'Update',
1512
+ value: 'update',
1513
+ },
1514
+ {
1515
+ text: 'Delete',
1516
+ value: 'delete',
1517
+ },
1518
+ ],
1519
+ },
1520
+ special: 'csv',
1521
+ sort: 7,
1522
+ width: 'full',
1523
+ },
1524
+ {
1525
+ collection: 'directus_webhooks',
1526
+ field: 'collections',
1527
+ interface: 'collections',
1528
+ special: 'csv',
1529
+ sort: 8,
1530
+ width: 'full',
1531
+ },
1532
+ {
1533
+ collection: 'directus_activity',
1534
+ field: 'action',
1535
+ display: 'labels',
1536
+ display_options: {
1537
+ defaultForeground: '#263238',
1538
+ defaultBackground: '#eceff1',
1539
+ choices: [
1540
+ {
1541
+ text: 'Create',
1542
+ value: 'create',
1543
+ foreground: '#27ae60',
1544
+ background: '#c9ebd7',
1545
+ },
1546
+ {
1547
+ text: 'Update',
1548
+ value: 'update',
1549
+ foreground: '#2f80ed',
1550
+ background: '#cbdffb',
1551
+ },
1552
+ {
1553
+ text: 'Delete',
1554
+ value: 'delete',
1555
+ foreground: '#eb5757',
1556
+ background: '#fad5d5',
1557
+ },
1558
+ {
1559
+ text: 'Login',
1560
+ value: 'authenticate',
1561
+ foreground: '#9b51e0',
1562
+ background: '#e6d3f7',
1563
+ },
1564
+ ],
1565
+ },
1566
+ },
1567
+ {
1568
+ collection: 'directus_activity',
1569
+ field: 'collection',
1570
+ display: 'collection',
1571
+ display_options: {
1572
+ icon: true,
1573
+ },
1574
+ },
1575
+ {
1576
+ collection: 'directus_activity',
1577
+ field: 'timestamp',
1578
+ display: 'datetime',
1579
+ options: {
1580
+ relative: true,
1581
+ },
1582
+ },
1583
+ {
1584
+ collection: 'directus_activity',
1585
+ field: 'user',
1586
+ display: 'user',
1587
+ },
1588
+ {
1589
+ collection: 'directus_activity',
1590
+ field: 'comment',
1591
+ display: 'formatted-text',
1592
+ display_options: {
1593
+ subdued: true,
1594
+ },
1595
+ },
1596
+ {
1597
+ collection: 'directus_activity',
1598
+ field: 'user_agent',
1599
+ display: 'formatted-text',
1600
+ display_options: {
1601
+ font: 'monospace',
1602
+ },
1603
+ },
1604
+ {
1605
+ collection: 'directus_activity',
1606
+ field: 'ip',
1607
+ display: 'formatted-text',
1608
+ display_options: {
1609
+ font: 'monospace',
1610
+ },
1611
+ },
1612
+ {
1613
+ collection: 'directus_activity',
1614
+ field: 'revisions',
1615
+ interface: 'one-to-many',
1616
+ locked: true,
1617
+ special: 'o2m',
1618
+ options: {
1619
+ fields: ['collection', 'item'],
1620
+ },
1621
+ width: 'full',
1622
+ },
1623
+ {
1624
+ collection: 'directus_relations',
1625
+ field: 'one_allowed_collections',
1626
+ locked: true,
1627
+ special: 'csv',
1628
+ },
1629
+ ].map((row) => {
1630
+ for (const [key, value] of Object.entries(row)) {
1631
+ if (value !== null && (typeof value === 'object' || Array.isArray(value))) {
1632
+ row[key] = JSON.stringify(value);
1633
+ }
1634
+ }
1635
+ return merge({}, defaults, row);
1636
+ });
1637
+ export async function up(knex) {
1638
+ const fieldKeys = uniq(systemFields.map((field) => field.field));
1639
+ await knex('directus_fields').delete().where('collection', 'like', 'directus_%').whereIn('field', fieldKeys);
1640
+ }
1641
+ export async function down(knex) {
1642
+ await knex.insert(systemFields).into('directus_fields');
1643
+ }