payload 4.0.0-internal.a7ca468 → 4.0.0-internal.aa277b8

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 (749) hide show
  1. package/bin.js +14 -10
  2. package/dist/admin/functions/index.d.ts +1 -1
  3. package/dist/admin/functions/index.d.ts.map +1 -1
  4. package/dist/admin/functions/index.js.map +1 -1
  5. package/dist/admin/types.d.ts +1 -1
  6. package/dist/admin/types.d.ts.map +1 -1
  7. package/dist/admin/types.js.map +1 -1
  8. package/dist/admin/views/index.d.ts +2 -2
  9. package/dist/admin/views/index.d.ts.map +1 -1
  10. package/dist/admin/views/index.js.map +1 -1
  11. package/dist/auth/baseFields/apiKey.d.ts.map +1 -1
  12. package/dist/auth/baseFields/apiKey.js +16 -1
  13. package/dist/auth/baseFields/apiKey.js.map +1 -1
  14. package/dist/auth/crypto.d.ts +73 -2
  15. package/dist/auth/crypto.d.ts.map +1 -1
  16. package/dist/auth/crypto.js +90 -13
  17. package/dist/auth/crypto.js.map +1 -1
  18. package/dist/auth/endpoints/refresh.d.ts.map +1 -1
  19. package/dist/auth/endpoints/refresh.js +4 -6
  20. package/dist/auth/endpoints/refresh.js.map +1 -1
  21. package/dist/auth/executeAccess.d.ts +2 -1
  22. package/dist/auth/executeAccess.d.ts.map +1 -1
  23. package/dist/auth/executeAccess.js +2 -1
  24. package/dist/auth/executeAccess.js.map +1 -1
  25. package/dist/auth/getAccessResults.js +1 -0
  26. package/dist/auth/getAccessResults.js.map +1 -1
  27. package/dist/auth/operations/access.d.ts.map +1 -1
  28. package/dist/auth/operations/access.js +3 -9
  29. package/dist/auth/operations/access.js.map +1 -1
  30. package/dist/auth/operations/auth.d.ts.map +1 -1
  31. package/dist/auth/operations/auth.js +15 -21
  32. package/dist/auth/operations/auth.js.map +1 -1
  33. package/dist/auth/operations/me.d.ts +0 -7
  34. package/dist/auth/operations/me.d.ts.map +1 -1
  35. package/dist/auth/operations/me.js +0 -6
  36. package/dist/auth/operations/me.js.map +1 -1
  37. package/dist/auth/operations/refresh.d.ts +0 -7
  38. package/dist/auth/operations/refresh.d.ts.map +1 -1
  39. package/dist/auth/operations/refresh.js +0 -6
  40. package/dist/auth/operations/refresh.js.map +1 -1
  41. package/dist/auth/operations/unlock.d.ts.map +1 -1
  42. package/dist/auth/operations/unlock.js +1 -0
  43. package/dist/auth/operations/unlock.js.map +1 -1
  44. package/dist/auth/rotateSecret.d.ts +51 -0
  45. package/dist/auth/rotateSecret.d.ts.map +1 -0
  46. package/dist/auth/rotateSecret.js +131 -0
  47. package/dist/auth/rotateSecret.js.map +1 -0
  48. package/dist/auth/strategies/apiKey.d.ts.map +1 -1
  49. package/dist/auth/strategies/apiKey.js +5 -3
  50. package/dist/auth/strategies/apiKey.js.map +1 -1
  51. package/dist/auth/strategies/jwt.d.ts.map +1 -1
  52. package/dist/auth/strategies/jwt.js +23 -2
  53. package/dist/auth/strategies/jwt.js.map +1 -1
  54. package/dist/auth/withBaseAccess.d.ts +22 -0
  55. package/dist/auth/withBaseAccess.d.ts.map +1 -0
  56. package/dist/auth/withBaseAccess.js +61 -0
  57. package/dist/auth/withBaseAccess.js.map +1 -0
  58. package/dist/{bin → cli/commands/build}/build.d.ts +8 -13
  59. package/dist/cli/commands/build/build.d.ts.map +1 -0
  60. package/dist/{bin → cli/commands/build}/build.js +26 -27
  61. package/dist/cli/commands/build/build.js.map +1 -0
  62. package/dist/{bin → cli/commands/build}/build.spec.js +73 -85
  63. package/dist/cli/commands/build/build.spec.js.map +1 -0
  64. package/dist/cli/commands/build/index.d.ts +2 -0
  65. package/dist/cli/commands/build/index.d.ts.map +1 -0
  66. package/dist/cli/commands/build/index.js +26 -0
  67. package/dist/cli/commands/build/index.js.map +1 -0
  68. package/dist/cli/commands/collections/countDocuments.d.ts +2 -0
  69. package/dist/cli/commands/collections/countDocuments.d.ts.map +1 -0
  70. package/dist/cli/commands/collections/countDocuments.js +37 -0
  71. package/dist/cli/commands/collections/countDocuments.js.map +1 -0
  72. package/dist/cli/commands/collections/countVersions.d.ts +2 -0
  73. package/dist/cli/commands/collections/countVersions.d.ts.map +1 -0
  74. package/dist/cli/commands/collections/countVersions.js +36 -0
  75. package/dist/cli/commands/collections/countVersions.js.map +1 -0
  76. package/dist/cli/commands/collections/createDocuments.d.ts +2 -0
  77. package/dist/cli/commands/collections/createDocuments.d.ts.map +1 -0
  78. package/dist/cli/commands/collections/createDocuments.js +126 -0
  79. package/dist/cli/commands/collections/createDocuments.js.map +1 -0
  80. package/dist/cli/commands/collections/deleteDocuments.d.ts +2 -0
  81. package/dist/cli/commands/collections/deleteDocuments.d.ts.map +1 -0
  82. package/dist/cli/commands/collections/deleteDocuments.js +64 -0
  83. package/dist/cli/commands/collections/deleteDocuments.js.map +1 -0
  84. package/dist/cli/commands/collections/duplicateDocument.d.ts +2 -0
  85. package/dist/cli/commands/collections/duplicateDocument.d.ts.map +1 -0
  86. package/dist/cli/commands/collections/duplicateDocument.js +107 -0
  87. package/dist/cli/commands/collections/duplicateDocument.js.map +1 -0
  88. package/dist/cli/commands/collections/findDistinct.d.ts +2 -0
  89. package/dist/cli/commands/collections/findDistinct.d.ts.map +1 -0
  90. package/dist/cli/commands/collections/findDistinct.js +52 -0
  91. package/dist/cli/commands/collections/findDistinct.js.map +1 -0
  92. package/dist/cli/commands/collections/findDocuments.d.ts +2 -0
  93. package/dist/cli/commands/collections/findDocuments.d.ts.map +1 -0
  94. package/dist/cli/commands/collections/findDocuments.js +79 -0
  95. package/dist/cli/commands/collections/findDocuments.js.map +1 -0
  96. package/dist/cli/commands/collections/findVersionByID.d.ts +2 -0
  97. package/dist/cli/commands/collections/findVersionByID.d.ts.map +1 -0
  98. package/dist/cli/commands/collections/findVersionByID.js +48 -0
  99. package/dist/cli/commands/collections/findVersionByID.js.map +1 -0
  100. package/dist/cli/commands/collections/findVersions.d.ts +2 -0
  101. package/dist/cli/commands/collections/findVersions.d.ts.map +1 -0
  102. package/dist/cli/commands/collections/findVersions.js +57 -0
  103. package/dist/cli/commands/collections/findVersions.js.map +1 -0
  104. package/dist/cli/commands/collections/getCollectionSchema.d.ts +2 -0
  105. package/dist/cli/commands/collections/getCollectionSchema.d.ts.map +1 -0
  106. package/dist/cli/commands/collections/getCollectionSchema.js +49 -0
  107. package/dist/cli/commands/collections/getCollectionSchema.js.map +1 -0
  108. package/dist/cli/commands/collections/restoreVersion.d.ts +2 -0
  109. package/dist/cli/commands/collections/restoreVersion.d.ts.map +1 -0
  110. package/dist/cli/commands/collections/restoreVersion.js +47 -0
  111. package/dist/cli/commands/collections/restoreVersion.js.map +1 -0
  112. package/dist/cli/commands/collections/updateDocument.d.ts +2 -0
  113. package/dist/cli/commands/collections/updateDocument.d.ts.map +1 -0
  114. package/dist/cli/commands/collections/updateDocument.js +182 -0
  115. package/dist/cli/commands/collections/updateDocument.js.map +1 -0
  116. package/dist/cli/commands/data/input.d.ts +9 -0
  117. package/dist/cli/commands/data/input.d.ts.map +1 -0
  118. package/dist/cli/commands/data/input.js +53 -0
  119. package/dist/cli/commands/data/input.js.map +1 -0
  120. package/dist/cli/commands/data/utilities.d.ts +65 -0
  121. package/dist/cli/commands/data/utilities.d.ts.map +1 -0
  122. package/dist/cli/commands/data/utilities.js +67 -0
  123. package/dist/cli/commands/data/utilities.js.map +1 -0
  124. package/dist/cli/commands/generateDBSchema.d.ts +2 -0
  125. package/dist/cli/commands/generateDBSchema.d.ts.map +1 -0
  126. package/dist/cli/commands/generateDBSchema.js +29 -0
  127. package/dist/cli/commands/generateDBSchema.js.map +1 -0
  128. package/dist/cli/commands/generateImportMap/frameworkConventions.d.ts.map +1 -0
  129. package/dist/cli/commands/generateImportMap/frameworkConventions.js.map +1 -0
  130. package/dist/{bin/generateImportMap/index.d.ts → cli/commands/generateImportMap/generateImportMap.d.ts} +8 -4
  131. package/dist/cli/commands/generateImportMap/generateImportMap.d.ts.map +1 -0
  132. package/dist/{bin/generateImportMap/index.js → cli/commands/generateImportMap/generateImportMap.js} +9 -4
  133. package/dist/cli/commands/generateImportMap/generateImportMap.js.map +1 -0
  134. package/dist/cli/commands/generateImportMap/generateImportMap.spec.js.map +1 -0
  135. package/dist/cli/commands/generateImportMap/index.d.ts +2 -0
  136. package/dist/cli/commands/generateImportMap/index.d.ts.map +1 -0
  137. package/dist/cli/commands/generateImportMap/index.js +18 -0
  138. package/dist/cli/commands/generateImportMap/index.js.map +1 -0
  139. package/dist/{bin → cli/commands}/generateImportMap/iterateCollections.d.ts +3 -3
  140. package/dist/cli/commands/generateImportMap/iterateCollections.d.ts.map +1 -0
  141. package/dist/cli/commands/generateImportMap/iterateCollections.js.map +1 -0
  142. package/dist/{bin → cli/commands}/generateImportMap/iterateConfig.d.ts +2 -2
  143. package/dist/cli/commands/generateImportMap/iterateConfig.d.ts.map +1 -0
  144. package/dist/{bin → cli/commands}/generateImportMap/iterateConfig.js +1 -1
  145. package/dist/cli/commands/generateImportMap/iterateConfig.js.map +1 -0
  146. package/dist/{bin → cli/commands}/generateImportMap/iterateFields.d.ts +3 -3
  147. package/dist/cli/commands/generateImportMap/iterateFields.d.ts.map +1 -0
  148. package/dist/cli/commands/generateImportMap/iterateFields.js.map +1 -0
  149. package/dist/{bin → cli/commands}/generateImportMap/iterateGlobals.d.ts +3 -3
  150. package/dist/cli/commands/generateImportMap/iterateGlobals.d.ts.map +1 -0
  151. package/dist/cli/commands/generateImportMap/iterateGlobals.js.map +1 -0
  152. package/dist/{bin → cli/commands}/generateImportMap/utilities/addPayloadComponentToImportMap.d.ts +2 -2
  153. package/dist/cli/commands/generateImportMap/utilities/addPayloadComponentToImportMap.d.ts.map +1 -0
  154. package/dist/cli/commands/generateImportMap/utilities/addPayloadComponentToImportMap.js.map +1 -0
  155. package/dist/{bin → cli/commands}/generateImportMap/utilities/getFromImportMap.d.ts +2 -2
  156. package/dist/cli/commands/generateImportMap/utilities/getFromImportMap.d.ts.map +1 -0
  157. package/dist/cli/commands/generateImportMap/utilities/getFromImportMap.js.map +1 -0
  158. package/dist/cli/commands/generateImportMap/utilities/getImportMapToBaseDirPath.d.ts.map +1 -0
  159. package/dist/cli/commands/generateImportMap/utilities/getImportMapToBaseDirPath.js.map +1 -0
  160. package/dist/{bin → cli/commands}/generateImportMap/utilities/parsePayloadComponent.d.ts +1 -1
  161. package/dist/cli/commands/generateImportMap/utilities/parsePayloadComponent.d.ts.map +1 -0
  162. package/dist/cli/commands/generateImportMap/utilities/parsePayloadComponent.js.map +1 -0
  163. package/dist/cli/commands/generateImportMap/utilities/resolveImportMapFilePath.d.ts.map +1 -0
  164. package/dist/{bin → cli/commands}/generateImportMap/utilities/resolveImportMapFilePath.js +1 -1
  165. package/dist/cli/commands/generateImportMap/utilities/resolveImportMapFilePath.js.map +1 -0
  166. package/dist/cli/commands/generateTypes.d.ts +12 -0
  167. package/dist/cli/commands/generateTypes.d.ts.map +1 -0
  168. package/dist/{bin → cli/commands}/generateTypes.js +33 -7
  169. package/dist/cli/commands/generateTypes.js.map +1 -0
  170. package/dist/cli/commands/getConfigInfo.d.ts +2 -0
  171. package/dist/cli/commands/getConfigInfo.d.ts.map +1 -0
  172. package/dist/cli/commands/getConfigInfo.js +23 -0
  173. package/dist/cli/commands/getConfigInfo.js.map +1 -0
  174. package/dist/cli/commands/globals/countGlobalVersions.d.ts +2 -0
  175. package/dist/cli/commands/globals/countGlobalVersions.d.ts.map +1 -0
  176. package/dist/cli/commands/globals/countGlobalVersions.js +36 -0
  177. package/dist/cli/commands/globals/countGlobalVersions.js.map +1 -0
  178. package/dist/cli/commands/globals/findGlobal.d.ts +2 -0
  179. package/dist/cli/commands/globals/findGlobal.d.ts.map +1 -0
  180. package/dist/cli/commands/globals/findGlobal.js +42 -0
  181. package/dist/cli/commands/globals/findGlobal.js.map +1 -0
  182. package/dist/cli/commands/globals/findGlobalVersionByID.d.ts +2 -0
  183. package/dist/cli/commands/globals/findGlobalVersionByID.d.ts.map +1 -0
  184. package/dist/cli/commands/globals/findGlobalVersionByID.js +46 -0
  185. package/dist/cli/commands/globals/findGlobalVersionByID.js.map +1 -0
  186. package/dist/cli/commands/globals/findGlobalVersions.d.ts +2 -0
  187. package/dist/cli/commands/globals/findGlobalVersions.d.ts.map +1 -0
  188. package/dist/cli/commands/globals/findGlobalVersions.js +55 -0
  189. package/dist/cli/commands/globals/findGlobalVersions.js.map +1 -0
  190. package/dist/cli/commands/globals/getGlobalSchema.d.ts +2 -0
  191. package/dist/cli/commands/globals/getGlobalSchema.d.ts.map +1 -0
  192. package/dist/cli/commands/globals/getGlobalSchema.js +34 -0
  193. package/dist/cli/commands/globals/getGlobalSchema.js.map +1 -0
  194. package/dist/cli/commands/globals/restoreGlobalVersion.d.ts +2 -0
  195. package/dist/cli/commands/globals/restoreGlobalVersion.d.ts.map +1 -0
  196. package/dist/cli/commands/globals/restoreGlobalVersion.js +46 -0
  197. package/dist/cli/commands/globals/restoreGlobalVersion.js.map +1 -0
  198. package/dist/cli/commands/globals/updateGlobal.d.ts +2 -0
  199. package/dist/cli/commands/globals/updateGlobal.d.ts.map +1 -0
  200. package/dist/cli/commands/globals/updateGlobal.js +93 -0
  201. package/dist/cli/commands/globals/updateGlobal.js.map +1 -0
  202. package/dist/cli/commands/help.d.ts +2 -0
  203. package/dist/cli/commands/help.d.ts.map +1 -0
  204. package/dist/cli/commands/help.js +42 -0
  205. package/dist/cli/commands/help.js.map +1 -0
  206. package/dist/cli/commands/info.d.ts +2 -0
  207. package/dist/cli/commands/info.d.ts.map +1 -0
  208. package/dist/cli/commands/info.js +78 -0
  209. package/dist/cli/commands/info.js.map +1 -0
  210. package/dist/cli/commands/jobs/handleSchedules.d.ts +2 -0
  211. package/dist/cli/commands/jobs/handleSchedules.d.ts.map +1 -0
  212. package/dist/cli/commands/jobs/handleSchedules.js +17 -0
  213. package/dist/cli/commands/jobs/handleSchedules.js.map +1 -0
  214. package/dist/cli/commands/jobs/run.d.ts +2 -0
  215. package/dist/cli/commands/jobs/run.d.ts.map +1 -0
  216. package/dist/cli/commands/jobs/run.js +29 -0
  217. package/dist/cli/commands/jobs/run.js.map +1 -0
  218. package/dist/cli/commands/migrate/create.d.ts +2 -0
  219. package/dist/cli/commands/migrate/create.d.ts.map +1 -0
  220. package/dist/cli/commands/migrate/create.js +44 -0
  221. package/dist/cli/commands/migrate/create.js.map +1 -0
  222. package/dist/cli/commands/migrate/down.d.ts +2 -0
  223. package/dist/cli/commands/migrate/down.d.ts.map +1 -0
  224. package/dist/cli/commands/migrate/down.js +22 -0
  225. package/dist/cli/commands/migrate/down.js.map +1 -0
  226. package/dist/cli/commands/migrate/fresh.d.ts +2 -0
  227. package/dist/cli/commands/migrate/fresh.d.ts.map +1 -0
  228. package/dist/cli/commands/migrate/fresh.js +28 -0
  229. package/dist/cli/commands/migrate/fresh.js.map +1 -0
  230. package/dist/cli/commands/migrate/initialize.d.ts +11 -0
  231. package/dist/cli/commands/migrate/initialize.d.ts.map +1 -0
  232. package/dist/cli/commands/migrate/initialize.js +17 -0
  233. package/dist/cli/commands/migrate/initialize.js.map +1 -0
  234. package/dist/cli/commands/migrate/refresh.d.ts +2 -0
  235. package/dist/cli/commands/migrate/refresh.d.ts.map +1 -0
  236. package/dist/cli/commands/migrate/refresh.js +22 -0
  237. package/dist/cli/commands/migrate/refresh.js.map +1 -0
  238. package/dist/cli/commands/migrate/reset.d.ts +2 -0
  239. package/dist/cli/commands/migrate/reset.d.ts.map +1 -0
  240. package/dist/cli/commands/migrate/reset.js +22 -0
  241. package/dist/cli/commands/migrate/reset.js.map +1 -0
  242. package/dist/cli/commands/migrate/run.d.ts +2 -0
  243. package/dist/cli/commands/migrate/run.d.ts.map +1 -0
  244. package/dist/cli/commands/migrate/run.js +28 -0
  245. package/dist/cli/commands/migrate/run.js.map +1 -0
  246. package/dist/cli/commands/migrate/status.d.ts +2 -0
  247. package/dist/cli/commands/migrate/status.d.ts.map +1 -0
  248. package/dist/cli/commands/migrate/status.js +22 -0
  249. package/dist/cli/commands/migrate/status.js.map +1 -0
  250. package/dist/cli/commands/run.d.ts +2 -0
  251. package/dist/cli/commands/run.d.ts.map +1 -0
  252. package/dist/cli/commands/run.js +45 -0
  253. package/dist/cli/commands/run.js.map +1 -0
  254. package/dist/cli/defineCLICommand.d.ts +32 -0
  255. package/dist/cli/defineCLICommand.d.ts.map +1 -0
  256. package/dist/cli/defineCLICommand.js +26 -0
  257. package/dist/cli/defineCLICommand.js.map +1 -0
  258. package/dist/cli/index.d.ts +7 -0
  259. package/dist/cli/index.d.ts.map +1 -0
  260. package/dist/cli/index.js +95 -0
  261. package/dist/cli/index.js.map +1 -0
  262. package/dist/cli/index.spec.js +402 -0
  263. package/dist/cli/index.spec.js.map +1 -0
  264. package/dist/cli/program/createHelp.d.ts +8 -0
  265. package/dist/cli/program/createHelp.d.ts.map +1 -0
  266. package/dist/cli/program/createHelp.js +26 -0
  267. package/dist/cli/program/createHelp.js.map +1 -0
  268. package/dist/cli/program/loadCommands.d.ts +12 -0
  269. package/dist/cli/program/loadCommands.d.ts.map +1 -0
  270. package/dist/cli/program/loadCommands.js +62 -0
  271. package/dist/cli/program/loadCommands.js.map +1 -0
  272. package/dist/cli/program/normalizeHelpArguments.d.ts +12 -0
  273. package/dist/cli/program/normalizeHelpArguments.d.ts.map +1 -0
  274. package/dist/cli/program/normalizeHelpArguments.js +34 -0
  275. package/dist/cli/program/normalizeHelpArguments.js.map +1 -0
  276. package/dist/cli/program/registerCommand.d.ts +10 -0
  277. package/dist/cli/program/registerCommand.d.ts.map +1 -0
  278. package/dist/cli/program/registerCommand.js +185 -0
  279. package/dist/cli/program/registerCommand.js.map +1 -0
  280. package/dist/cli/runtime/createRuntime.d.ts +9 -0
  281. package/dist/cli/runtime/createRuntime.d.ts.map +1 -0
  282. package/dist/cli/runtime/createRuntime.js +81 -0
  283. package/dist/cli/runtime/createRuntime.js.map +1 -0
  284. package/dist/cli/runtime/getCommandInput.d.ts +17 -0
  285. package/dist/cli/runtime/getCommandInput.d.ts.map +1 -0
  286. package/dist/cli/runtime/getCommandInput.js +86 -0
  287. package/dist/cli/runtime/getCommandInput.js.map +1 -0
  288. package/dist/cli/runtime/invokeCommand.d.ts +23 -0
  289. package/dist/cli/runtime/invokeCommand.d.ts.map +1 -0
  290. package/dist/cli/runtime/invokeCommand.js +107 -0
  291. package/dist/cli/runtime/invokeCommand.js.map +1 -0
  292. package/dist/cli/runtime/loadEnv.d.ts.map +1 -0
  293. package/dist/{bin → cli/runtime}/loadEnv.js +1 -1
  294. package/dist/cli/runtime/loadEnv.js.map +1 -0
  295. package/dist/cli/runtime/output.d.ts +50 -0
  296. package/dist/cli/runtime/output.d.ts.map +1 -0
  297. package/dist/cli/runtime/output.js +125 -0
  298. package/dist/cli/runtime/output.js.map +1 -0
  299. package/dist/cli/runtime/redirectOutputToStderr.d.ts +8 -0
  300. package/dist/cli/runtime/redirectOutputToStderr.d.ts.map +1 -0
  301. package/dist/cli/runtime/redirectOutputToStderr.js +31 -0
  302. package/dist/cli/runtime/redirectOutputToStderr.js.map +1 -0
  303. package/dist/collections/config/client.d.ts +1 -1
  304. package/dist/collections/config/client.d.ts.map +1 -1
  305. package/dist/collections/config/client.js.map +1 -1
  306. package/dist/collections/config/sanitize.d.ts.map +1 -1
  307. package/dist/collections/config/sanitize.js +27 -0
  308. package/dist/collections/config/sanitize.js.map +1 -1
  309. package/dist/collections/config/sanitize.spec.js +363 -1
  310. package/dist/collections/config/sanitize.spec.js.map +1 -1
  311. package/dist/collections/config/types.d.ts +9 -8
  312. package/dist/collections/config/types.d.ts.map +1 -1
  313. package/dist/collections/config/types.js.map +1 -1
  314. package/dist/collections/operations/count.d.ts.map +1 -1
  315. package/dist/collections/operations/count.js +65 -70
  316. package/dist/collections/operations/count.js.map +1 -1
  317. package/dist/collections/operations/countVersions.d.ts.map +1 -1
  318. package/dist/collections/operations/countVersions.js +61 -66
  319. package/dist/collections/operations/countVersions.js.map +1 -1
  320. package/dist/collections/operations/create.d.ts.map +1 -1
  321. package/dist/collections/operations/create.js +12 -0
  322. package/dist/collections/operations/create.js.map +1 -1
  323. package/dist/collections/operations/delete.d.ts.map +1 -1
  324. package/dist/collections/operations/delete.js +1 -0
  325. package/dist/collections/operations/delete.js.map +1 -1
  326. package/dist/collections/operations/deleteByID.d.ts.map +1 -1
  327. package/dist/collections/operations/deleteByID.js +1 -0
  328. package/dist/collections/operations/deleteByID.js.map +1 -1
  329. package/dist/collections/operations/docAccess.d.ts.map +1 -1
  330. package/dist/collections/operations/docAccess.js +19 -25
  331. package/dist/collections/operations/docAccess.js.map +1 -1
  332. package/dist/collections/operations/find.d.ts.map +1 -1
  333. package/dist/collections/operations/find.js +248 -246
  334. package/dist/collections/operations/find.js.map +1 -1
  335. package/dist/collections/operations/findByID.d.ts.map +1 -1
  336. package/dist/collections/operations/findByID.js +215 -220
  337. package/dist/collections/operations/findByID.js.map +1 -1
  338. package/dist/collections/operations/findDistinct.d.ts.map +1 -1
  339. package/dist/collections/operations/findDistinct.js +161 -159
  340. package/dist/collections/operations/findDistinct.js.map +1 -1
  341. package/dist/collections/operations/findVersionByID.d.ts.map +1 -1
  342. package/dist/collections/operations/findVersionByID.js +131 -136
  343. package/dist/collections/operations/findVersionByID.js.map +1 -1
  344. package/dist/collections/operations/findVersions.d.ts.map +1 -1
  345. package/dist/collections/operations/findVersions.js +152 -149
  346. package/dist/collections/operations/findVersions.js.map +1 -1
  347. package/dist/collections/operations/inputSchemas.d.ts +877 -0
  348. package/dist/collections/operations/inputSchemas.d.ts.map +1 -0
  349. package/dist/collections/operations/inputSchemas.js +217 -0
  350. package/dist/collections/operations/inputSchemas.js.map +1 -0
  351. package/dist/collections/operations/restoreVersion.d.ts.map +1 -1
  352. package/dist/collections/operations/restoreVersion.js +1 -0
  353. package/dist/collections/operations/restoreVersion.js.map +1 -1
  354. package/dist/collections/operations/update.d.ts.map +1 -1
  355. package/dist/collections/operations/update.js +20 -1
  356. package/dist/collections/operations/update.js.map +1 -1
  357. package/dist/collections/operations/updateByID.d.ts.map +1 -1
  358. package/dist/collections/operations/updateByID.js +12 -0
  359. package/dist/collections/operations/updateByID.js.map +1 -1
  360. package/dist/config/client.d.ts +2 -2
  361. package/dist/config/client.d.ts.map +1 -1
  362. package/dist/config/client.js +2 -1
  363. package/dist/config/client.js.map +1 -1
  364. package/dist/config/client.spec.js +20 -0
  365. package/dist/config/client.spec.js.map +1 -0
  366. package/dist/config/defaults.d.ts.map +1 -1
  367. package/dist/config/defaults.js +90 -40
  368. package/dist/config/defaults.js.map +1 -1
  369. package/dist/config/orderable/index.d.ts.map +1 -1
  370. package/dist/config/orderable/index.js +1 -0
  371. package/dist/config/orderable/index.js.map +1 -1
  372. package/dist/config/sanitize.d.ts.map +1 -1
  373. package/dist/config/sanitize.js +5 -1
  374. package/dist/config/sanitize.js.map +1 -1
  375. package/dist/config/sanitize.spec.js +105 -0
  376. package/dist/config/sanitize.spec.js.map +1 -0
  377. package/dist/config/types.d.ts +494 -421
  378. package/dist/config/types.d.ts.map +1 -1
  379. package/dist/config/types.js.map +1 -1
  380. package/dist/database/isNestedRelationshipQuery.d.ts +14 -0
  381. package/dist/database/isNestedRelationshipQuery.d.ts.map +1 -0
  382. package/dist/database/isNestedRelationshipQuery.js +19 -0
  383. package/dist/database/isNestedRelationshipQuery.js.map +1 -0
  384. package/dist/database/migrations/createMigration.d.ts.map +1 -1
  385. package/dist/database/migrations/createMigration.js +4 -0
  386. package/dist/database/migrations/createMigration.js.map +1 -1
  387. package/dist/database/migrations/getPredefinedMigration.js +2 -2
  388. package/dist/database/migrations/getPredefinedMigration.js.map +1 -1
  389. package/dist/database/migrations/migrate.d.ts.map +1 -1
  390. package/dist/database/migrations/migrate.js +9 -0
  391. package/dist/database/migrations/migrate.js.map +1 -1
  392. package/dist/database/migrations/migrateDown.d.ts +2 -2
  393. package/dist/database/migrations/migrateDown.d.ts.map +1 -1
  394. package/dist/database/migrations/migrateDown.js +12 -2
  395. package/dist/database/migrations/migrateDown.js.map +1 -1
  396. package/dist/database/migrations/migrateRefresh.d.ts +2 -2
  397. package/dist/database/migrations/migrateRefresh.d.ts.map +1 -1
  398. package/dist/database/migrations/migrateRefresh.js +10 -2
  399. package/dist/database/migrations/migrateRefresh.js.map +1 -1
  400. package/dist/database/migrations/migrateReset.d.ts +2 -2
  401. package/dist/database/migrations/migrateReset.d.ts.map +1 -1
  402. package/dist/database/migrations/migrateReset.js +11 -1
  403. package/dist/database/migrations/migrateReset.js.map +1 -1
  404. package/dist/database/migrations/migrateStatus.d.ts +2 -2
  405. package/dist/database/migrations/migrateStatus.d.ts.map +1 -1
  406. package/dist/database/migrations/migrateStatus.js +11 -6
  407. package/dist/database/migrations/migrateStatus.js.map +1 -1
  408. package/dist/database/queryValidation/validateQueryPaths.d.ts.map +1 -1
  409. package/dist/database/queryValidation/validateQueryPaths.js +8 -1
  410. package/dist/database/queryValidation/validateQueryPaths.js.map +1 -1
  411. package/dist/database/queryValidation/validateSearchParams.d.ts.map +1 -1
  412. package/dist/database/queryValidation/validateSearchParams.js +21 -4
  413. package/dist/database/queryValidation/validateSearchParams.js.map +1 -1
  414. package/dist/database/queryValidation/validateSortQuery.d.ts +23 -0
  415. package/dist/database/queryValidation/validateSortQuery.d.ts.map +1 -0
  416. package/dist/database/queryValidation/validateSortQuery.js +54 -0
  417. package/dist/database/queryValidation/validateSortQuery.js.map +1 -0
  418. package/dist/database/sanitizeJoinQuery.d.ts.map +1 -1
  419. package/dist/database/sanitizeJoinQuery.js +7 -0
  420. package/dist/database/sanitizeJoinQuery.js.map +1 -1
  421. package/dist/database/sanitizeWhereQuery.d.ts +1 -1
  422. package/dist/database/sanitizeWhereQuery.d.ts.map +1 -1
  423. package/dist/database/sanitizeWhereQuery.js +44 -1
  424. package/dist/database/sanitizeWhereQuery.js.map +1 -1
  425. package/dist/database/types.d.ts +30 -8
  426. package/dist/database/types.d.ts.map +1 -1
  427. package/dist/database/types.js.map +1 -1
  428. package/dist/duplicateDocument/index.js +1 -0
  429. package/dist/duplicateDocument/index.js.map +1 -1
  430. package/dist/exports/cli.d.ts +4 -0
  431. package/dist/exports/cli.d.ts.map +1 -0
  432. package/dist/exports/cli.js +4 -0
  433. package/dist/exports/cli.js.map +1 -0
  434. package/dist/exports/cliBuiltin.d.ts +37 -0
  435. package/dist/exports/cliBuiltin.d.ts.map +1 -0
  436. package/dist/exports/cliBuiltin.js +38 -0
  437. package/dist/exports/cliBuiltin.js.map +1 -0
  438. package/dist/exports/internal.d.ts +2 -0
  439. package/dist/exports/internal.d.ts.map +1 -1
  440. package/dist/exports/internal.js +3 -1
  441. package/dist/exports/internal.js.map +1 -1
  442. package/dist/exports/node.d.ts +2 -2
  443. package/dist/exports/node.d.ts.map +1 -1
  444. package/dist/exports/node.js +2 -2
  445. package/dist/exports/node.js.map +1 -1
  446. package/dist/exports/shared.d.ts +5 -3
  447. package/dist/exports/shared.d.ts.map +1 -1
  448. package/dist/exports/shared.js +4 -3
  449. package/dist/exports/shared.js.map +1 -1
  450. package/dist/fields/baseFields/slug/fillEmptyLocalizedSlugs.d.ts +2 -1
  451. package/dist/fields/baseFields/slug/fillEmptyLocalizedSlugs.d.ts.map +1 -1
  452. package/dist/fields/baseFields/slug/fillEmptyLocalizedSlugs.js +3 -1
  453. package/dist/fields/baseFields/slug/fillEmptyLocalizedSlugs.js.map +1 -1
  454. package/dist/fields/baseFields/slug/generateSlug.d.ts.map +1 -1
  455. package/dist/fields/baseFields/slug/generateSlug.js +5 -1
  456. package/dist/fields/baseFields/slug/generateSlug.js.map +1 -1
  457. package/dist/fields/baseFields/slug/getSlugFallbackValue.d.ts +2 -1
  458. package/dist/fields/baseFields/slug/getSlugFallbackValue.d.ts.map +1 -1
  459. package/dist/fields/baseFields/slug/getSlugFallbackValue.js +2 -1
  460. package/dist/fields/baseFields/slug/getSlugFallbackValue.js.map +1 -1
  461. package/dist/fields/config/client.d.ts +1 -1
  462. package/dist/fields/config/client.d.ts.map +1 -1
  463. package/dist/fields/config/client.js +1 -1
  464. package/dist/fields/config/client.js.map +1 -1
  465. package/dist/fields/hooks/beforeChange/promise.d.ts.map +1 -1
  466. package/dist/fields/hooks/beforeChange/promise.js +1 -0
  467. package/dist/fields/hooks/beforeChange/promise.js.map +1 -1
  468. package/dist/globals/config/client.d.ts +1 -1
  469. package/dist/globals/config/client.d.ts.map +1 -1
  470. package/dist/globals/config/client.js.map +1 -1
  471. package/dist/globals/config/sanitize.d.ts.map +1 -1
  472. package/dist/globals/config/sanitize.js +23 -0
  473. package/dist/globals/config/sanitize.js.map +1 -1
  474. package/dist/globals/config/sanitize.spec.js +221 -2
  475. package/dist/globals/config/sanitize.spec.js.map +1 -1
  476. package/dist/globals/config/types.d.ts +21 -16
  477. package/dist/globals/config/types.d.ts.map +1 -1
  478. package/dist/globals/config/types.js.map +1 -1
  479. package/dist/globals/operations/countGlobalVersions.d.ts.map +1 -1
  480. package/dist/globals/operations/countGlobalVersions.js +51 -56
  481. package/dist/globals/operations/countGlobalVersions.js.map +1 -1
  482. package/dist/globals/operations/docAccess.d.ts.map +1 -1
  483. package/dist/globals/operations/docAccess.js +19 -25
  484. package/dist/globals/operations/docAccess.js.map +1 -1
  485. package/dist/globals/operations/findOne.d.ts.map +1 -1
  486. package/dist/globals/operations/findOne.js +169 -174
  487. package/dist/globals/operations/findOne.js.map +1 -1
  488. package/dist/globals/operations/findVersionByID.d.ts.map +1 -1
  489. package/dist/globals/operations/findVersionByID.js +104 -109
  490. package/dist/globals/operations/findVersionByID.js.map +1 -1
  491. package/dist/globals/operations/findVersions.d.ts.map +1 -1
  492. package/dist/globals/operations/findVersions.js +112 -109
  493. package/dist/globals/operations/findVersions.js.map +1 -1
  494. package/dist/globals/operations/inputSchemas.d.ts +365 -0
  495. package/dist/globals/operations/inputSchemas.d.ts.map +1 -0
  496. package/dist/globals/operations/inputSchemas.js +104 -0
  497. package/dist/globals/operations/inputSchemas.js.map +1 -0
  498. package/dist/globals/operations/restoreVersion.js +1 -0
  499. package/dist/globals/operations/restoreVersion.js.map +1 -1
  500. package/dist/globals/operations/update.d.ts.map +1 -1
  501. package/dist/globals/operations/update.js +1 -0
  502. package/dist/globals/operations/update.js.map +1 -1
  503. package/dist/hierarchy/addHierarchyToCollection.js +2 -0
  504. package/dist/hierarchy/addHierarchyToCollection.js.map +1 -1
  505. package/dist/index.bundled.d.ts +2101 -557
  506. package/dist/index.d.ts +34 -12
  507. package/dist/index.d.ts.map +1 -1
  508. package/dist/index.js +31 -51
  509. package/dist/index.js.map +1 -1
  510. package/dist/queues/config/collection.d.ts.map +1 -1
  511. package/dist/queues/config/collection.js +6 -0
  512. package/dist/queues/config/collection.js.map +1 -1
  513. package/dist/queues/config/types/index.d.ts +2 -0
  514. package/dist/queues/config/types/index.d.ts.map +1 -1
  515. package/dist/queues/config/types/index.js.map +1 -1
  516. package/dist/queues/endpoints/handleSchedules.d.ts.map +1 -1
  517. package/dist/queues/endpoints/handleSchedules.js +2 -1
  518. package/dist/queues/endpoints/handleSchedules.js.map +1 -1
  519. package/dist/queues/endpoints/run.d.ts.map +1 -1
  520. package/dist/queues/endpoints/run.js +2 -1
  521. package/dist/queues/endpoints/run.js.map +1 -1
  522. package/dist/types/constants.d.ts +21 -0
  523. package/dist/types/constants.d.ts.map +1 -1
  524. package/dist/types/constants.js +23 -0
  525. package/dist/types/constants.js.map +1 -1
  526. package/dist/types/index.d.ts +2 -2
  527. package/dist/types/index.d.ts.map +1 -1
  528. package/dist/types/index.js.map +1 -1
  529. package/dist/uploads/checkFileAccess.js +1 -0
  530. package/dist/uploads/checkFileAccess.js.map +1 -1
  531. package/dist/uploads/cropImage.d.ts +1 -1
  532. package/dist/uploads/cropImage.d.ts.map +1 -1
  533. package/dist/uploads/cropImage.js +2 -5
  534. package/dist/uploads/cropImage.js.map +1 -1
  535. package/dist/uploads/cropImage.spec.js +71 -0
  536. package/dist/uploads/cropImage.spec.js.map +1 -0
  537. package/dist/uploads/endpoints/getFileFromURL.js +2 -0
  538. package/dist/uploads/endpoints/getFileFromURL.js.map +1 -1
  539. package/dist/uploads/fetchAPI-multipart/isEligibleRequest.js +1 -2
  540. package/dist/uploads/fetchAPI-multipart/isEligibleRequest.js.map +1 -1
  541. package/dist/uploads/fetchAPI-multipart/isEligibleRequest.spec.js +28 -0
  542. package/dist/uploads/fetchAPI-multipart/isEligibleRequest.spec.js.map +1 -1
  543. package/dist/uploads/generateFileData.d.ts +9 -0
  544. package/dist/uploads/generateFileData.d.ts.map +1 -1
  545. package/dist/uploads/generateFileData.js +56 -45
  546. package/dist/uploads/generateFileData.js.map +1 -1
  547. package/dist/uploads/generateFileData.spec.js +207 -0
  548. package/dist/uploads/generateFileData.spec.js.map +1 -0
  549. package/dist/uploads/generateFileData.tempFileBuffering.spec.js +81 -0
  550. package/dist/uploads/generateFileData.tempFileBuffering.spec.js.map +1 -0
  551. package/dist/uploads/getFileContentRequirement.d.ts +32 -0
  552. package/dist/uploads/getFileContentRequirement.d.ts.map +1 -0
  553. package/dist/uploads/getFileContentRequirement.js +40 -0
  554. package/dist/uploads/getFileContentRequirement.js.map +1 -0
  555. package/dist/uploads/getFileContentRequirement.spec.js +125 -0
  556. package/dist/uploads/getFileContentRequirement.spec.js.map +1 -0
  557. package/dist/uploads/getFileFromUploadInstructions.d.ts.map +1 -1
  558. package/dist/uploads/getFileFromUploadInstructions.js +178 -8
  559. package/dist/uploads/getFileFromUploadInstructions.js.map +1 -1
  560. package/dist/uploads/getFileFromUploadInstructions.spec.js +378 -0
  561. package/dist/uploads/getFileFromUploadInstructions.spec.js.map +1 -0
  562. package/dist/uploads/image-resizing/createImageSizes.d.ts.map +1 -1
  563. package/dist/uploads/image-resizing/createImageSizes.js +2 -5
  564. package/dist/uploads/image-resizing/createImageSizes.js.map +1 -1
  565. package/dist/uploads/image-resizing/createImageSizes.spec.js +80 -0
  566. package/dist/uploads/image-resizing/createImageSizes.spec.js.map +1 -0
  567. package/dist/uploads/isAnimatedImage.d.ts +8 -0
  568. package/dist/uploads/isAnimatedImage.d.ts.map +1 -0
  569. package/dist/uploads/isAnimatedImage.js +22 -0
  570. package/dist/uploads/isAnimatedImage.js.map +1 -0
  571. package/dist/uploads/isAnimatedImage.spec.js +19 -0
  572. package/dist/uploads/isAnimatedImage.spec.js.map +1 -0
  573. package/dist/uploads/types.d.ts +10 -0
  574. package/dist/uploads/types.d.ts.map +1 -1
  575. package/dist/uploads/types.js.map +1 -1
  576. package/dist/uploads/unlinkTempFiles.d.ts.map +1 -1
  577. package/dist/uploads/unlinkTempFiles.js +6 -2
  578. package/dist/uploads/unlinkTempFiles.js.map +1 -1
  579. package/dist/uploads/unlinkTempFiles.spec.js +71 -0
  580. package/dist/uploads/unlinkTempFiles.spec.js.map +1 -0
  581. package/dist/uploads/uploadFiles.d.ts.map +1 -1
  582. package/dist/uploads/uploadFiles.js +7 -2
  583. package/dist/uploads/uploadFiles.js.map +1 -1
  584. package/dist/uploads/uploadFiles.spec.js +44 -0
  585. package/dist/uploads/uploadFiles.spec.js.map +1 -0
  586. package/dist/utilities/canAccessAdmin.js +1 -0
  587. package/dist/utilities/canAccessAdmin.js.map +1 -1
  588. package/dist/utilities/entityInputSchema/filterFieldsByAccess.d.ts +30 -0
  589. package/dist/utilities/entityInputSchema/filterFieldsByAccess.d.ts.map +1 -0
  590. package/dist/utilities/entityInputSchema/filterFieldsByAccess.js +71 -0
  591. package/dist/utilities/entityInputSchema/filterFieldsByAccess.js.map +1 -0
  592. package/dist/utilities/entityInputSchema/getEntityInputSchema.d.ts +13 -0
  593. package/dist/utilities/entityInputSchema/getEntityInputSchema.d.ts.map +1 -0
  594. package/dist/utilities/entityInputSchema/getEntityInputSchema.js +66 -0
  595. package/dist/utilities/entityInputSchema/getEntityInputSchema.js.map +1 -0
  596. package/dist/utilities/entityInputSchema/sanitizeEntitySchema.d.ts +10 -0
  597. package/dist/utilities/entityInputSchema/sanitizeEntitySchema.d.ts.map +1 -0
  598. package/dist/utilities/entityInputSchema/sanitizeEntitySchema.js +384 -0
  599. package/dist/utilities/entityInputSchema/sanitizeEntitySchema.js.map +1 -0
  600. package/dist/utilities/entityInputSchema/sanitizeEntitySchema.spec.js +133 -0
  601. package/dist/utilities/entityInputSchema/sanitizeEntitySchema.spec.js.map +1 -0
  602. package/dist/utilities/entityInputSchema/types.d.ts +16 -0
  603. package/dist/utilities/entityInputSchema/types.d.ts.map +1 -0
  604. package/dist/utilities/entityInputSchema/types.js +3 -0
  605. package/dist/utilities/entityInputSchema/types.js.map +1 -0
  606. package/dist/utilities/entityInputSchema/validateEntityData.d.ts +13 -0
  607. package/dist/utilities/entityInputSchema/validateEntityData.d.ts.map +1 -0
  608. package/dist/utilities/entityInputSchema/validateEntityData.js +138 -0
  609. package/dist/utilities/entityInputSchema/validateEntityData.js.map +1 -0
  610. package/dist/utilities/fieldValueExists.d.ts +6 -6
  611. package/dist/utilities/fieldValueExists.d.ts.map +1 -1
  612. package/dist/utilities/fieldValueExists.js +17 -7
  613. package/dist/utilities/fieldValueExists.js.map +1 -1
  614. package/dist/utilities/getEntityPermissions/getEntityPermissions.d.ts.map +1 -1
  615. package/dist/utilities/getEntityPermissions/getEntityPermissions.js +1 -0
  616. package/dist/utilities/getEntityPermissions/getEntityPermissions.js.map +1 -1
  617. package/dist/utilities/getNextVersion.d.ts +7 -0
  618. package/dist/utilities/getNextVersion.d.ts.map +1 -0
  619. package/dist/utilities/getNextVersion.js +20 -0
  620. package/dist/utilities/getNextVersion.js.map +1 -0
  621. package/dist/utilities/getNextVersion.spec.js +16 -0
  622. package/dist/utilities/getNextVersion.spec.js.map +1 -0
  623. package/dist/utilities/getRequestOrigin.d.ts.map +1 -1
  624. package/dist/utilities/getRequestOrigin.js.map +1 -1
  625. package/dist/utilities/getSafeRedirect.d.ts.map +1 -1
  626. package/dist/utilities/getSafeRedirect.js +16 -9
  627. package/dist/utilities/getSafeRedirect.js.map +1 -1
  628. package/dist/utilities/getSafeRedirect.spec.js +96 -2
  629. package/dist/utilities/getSafeRedirect.spec.js.map +1 -1
  630. package/dist/utilities/getUniqueFieldValue.d.ts +2 -1
  631. package/dist/utilities/getUniqueFieldValue.d.ts.map +1 -1
  632. package/dist/utilities/getUniqueFieldValue.js +2 -1
  633. package/dist/utilities/getUniqueFieldValue.js.map +1 -1
  634. package/dist/utilities/getVirtualFieldNames.d.ts +14 -0
  635. package/dist/utilities/getVirtualFieldNames.d.ts.map +1 -0
  636. package/dist/utilities/getVirtualFieldNames.js +35 -0
  637. package/dist/utilities/getVirtualFieldNames.js.map +1 -0
  638. package/dist/utilities/headersWithCors.js +1 -1
  639. package/dist/utilities/headersWithCors.js.map +1 -1
  640. package/dist/utilities/killTransaction.d.ts +7 -0
  641. package/dist/utilities/killTransaction.d.ts.map +1 -1
  642. package/dist/utilities/killTransaction.js +7 -0
  643. package/dist/utilities/killTransaction.js.map +1 -1
  644. package/dist/utilities/logError.d.ts.map +1 -1
  645. package/dist/utilities/logError.js +5 -2
  646. package/dist/utilities/logError.js.map +1 -1
  647. package/dist/utilities/nextJsDevReloadStrategy.d.ts +7 -0
  648. package/dist/utilities/nextJsDevReloadStrategy.d.ts.map +1 -0
  649. package/dist/utilities/nextJsDevReloadStrategy.js +59 -0
  650. package/dist/utilities/nextJsDevReloadStrategy.js.map +1 -0
  651. package/dist/utilities/nextJsDevReloadStrategy.spec.js +123 -0
  652. package/dist/utilities/nextJsDevReloadStrategy.spec.js.map +1 -0
  653. package/dist/utilities/parseDocumentID.d.ts +4 -1
  654. package/dist/utilities/parseDocumentID.d.ts.map +1 -1
  655. package/dist/utilities/parseDocumentID.js +7 -1
  656. package/dist/utilities/parseDocumentID.js.map +1 -1
  657. package/dist/utilities/sharedInputSchemas.d.ts +52 -0
  658. package/dist/utilities/sharedInputSchemas.d.ts.map +1 -0
  659. package/dist/utilities/sharedInputSchemas.js +101 -0
  660. package/dist/utilities/sharedInputSchemas.js.map +1 -0
  661. package/dist/utilities/telemetry/getProjectContext.d.ts +16 -0
  662. package/dist/utilities/telemetry/getProjectContext.d.ts.map +1 -0
  663. package/dist/utilities/telemetry/getProjectContext.js +43 -0
  664. package/dist/utilities/telemetry/getProjectContext.js.map +1 -0
  665. package/dist/utilities/telemetry/index.d.ts +3 -0
  666. package/dist/utilities/telemetry/index.d.ts.map +1 -1
  667. package/dist/utilities/telemetry/index.js +8 -1
  668. package/dist/utilities/telemetry/index.js.map +1 -1
  669. package/dist/utilities/transformPointDataToPayload.d.ts +7 -0
  670. package/dist/utilities/transformPointDataToPayload.d.ts.map +1 -0
  671. package/dist/utilities/transformPointDataToPayload.js +28 -0
  672. package/dist/utilities/transformPointDataToPayload.js.map +1 -0
  673. package/dist/utilities/zod.d.ts +5 -0
  674. package/dist/utilities/zod.d.ts.map +1 -0
  675. package/dist/utilities/zod.js +21 -0
  676. package/dist/utilities/zod.js.map +1 -0
  677. package/dist/versions/drafts/appendVersionToQueryKey.js +1 -3
  678. package/dist/versions/drafts/appendVersionToQueryKey.js.map +1 -1
  679. package/dist/versions/drafts/appendVersionToQueryKey.spec.js +28 -0
  680. package/dist/versions/drafts/appendVersionToQueryKey.spec.js.map +1 -0
  681. package/package.json +18 -6
  682. package/skills/payload/SKILL.md +526 -0
  683. package/skills/payload/reference/ACCESS-CONTROL-ADVANCED.md +704 -0
  684. package/skills/payload/reference/ACCESS-CONTROL.md +696 -0
  685. package/skills/payload/reference/ADAPTERS.md +305 -0
  686. package/skills/payload/reference/ADVANCED.md +386 -0
  687. package/skills/payload/reference/COLLECTIONS.md +333 -0
  688. package/skills/payload/reference/ENDPOINTS.md +634 -0
  689. package/skills/payload/reference/FIELD-TYPE-GUARDS.md +553 -0
  690. package/skills/payload/reference/FIELDS.md +745 -0
  691. package/skills/payload/reference/HOOKS.md +186 -0
  692. package/skills/payload/reference/PLUGIN-DEVELOPMENT.md +1436 -0
  693. package/skills/payload/reference/QUERIES.md +274 -0
  694. package/dist/bin/build.d.ts.map +0 -1
  695. package/dist/bin/build.js.map +0 -1
  696. package/dist/bin/build.spec.js.map +0 -1
  697. package/dist/bin/frameworkConventions.d.ts.map +0 -1
  698. package/dist/bin/frameworkConventions.js.map +0 -1
  699. package/dist/bin/generateImportMap/generateImportMap.spec.js.map +0 -1
  700. package/dist/bin/generateImportMap/index.d.ts.map +0 -1
  701. package/dist/bin/generateImportMap/index.js.map +0 -1
  702. package/dist/bin/generateImportMap/iterateCollections.d.ts.map +0 -1
  703. package/dist/bin/generateImportMap/iterateCollections.js.map +0 -1
  704. package/dist/bin/generateImportMap/iterateConfig.d.ts.map +0 -1
  705. package/dist/bin/generateImportMap/iterateConfig.js.map +0 -1
  706. package/dist/bin/generateImportMap/iterateFields.d.ts.map +0 -1
  707. package/dist/bin/generateImportMap/iterateFields.js.map +0 -1
  708. package/dist/bin/generateImportMap/iterateGlobals.d.ts.map +0 -1
  709. package/dist/bin/generateImportMap/iterateGlobals.js.map +0 -1
  710. package/dist/bin/generateImportMap/utilities/addPayloadComponentToImportMap.d.ts.map +0 -1
  711. package/dist/bin/generateImportMap/utilities/addPayloadComponentToImportMap.js.map +0 -1
  712. package/dist/bin/generateImportMap/utilities/getFromImportMap.d.ts.map +0 -1
  713. package/dist/bin/generateImportMap/utilities/getFromImportMap.js.map +0 -1
  714. package/dist/bin/generateImportMap/utilities/getImportMapToBaseDirPath.d.ts.map +0 -1
  715. package/dist/bin/generateImportMap/utilities/getImportMapToBaseDirPath.js.map +0 -1
  716. package/dist/bin/generateImportMap/utilities/parsePayloadComponent.d.ts.map +0 -1
  717. package/dist/bin/generateImportMap/utilities/parsePayloadComponent.js.map +0 -1
  718. package/dist/bin/generateImportMap/utilities/resolveImportMapFilePath.d.ts.map +0 -1
  719. package/dist/bin/generateImportMap/utilities/resolveImportMapFilePath.js.map +0 -1
  720. package/dist/bin/generateTypes.d.ts +0 -6
  721. package/dist/bin/generateTypes.d.ts.map +0 -1
  722. package/dist/bin/generateTypes.js.map +0 -1
  723. package/dist/bin/index.d.ts +0 -2
  724. package/dist/bin/index.d.ts.map +0 -1
  725. package/dist/bin/index.js +0 -200
  726. package/dist/bin/index.js.map +0 -1
  727. package/dist/bin/info.d.ts +0 -2
  728. package/dist/bin/info.d.ts.map +0 -1
  729. package/dist/bin/info.js +0 -56
  730. package/dist/bin/info.js.map +0 -1
  731. package/dist/bin/loadEnv.d.ts.map +0 -1
  732. package/dist/bin/loadEnv.js.map +0 -1
  733. package/dist/bin/migrate.d.ts +0 -15
  734. package/dist/bin/migrate.d.ts.map +0 -1
  735. package/dist/bin/migrate.js +0 -102
  736. package/dist/bin/migrate.js.map +0 -1
  737. /package/dist/{bin → cli/commands/generateImportMap}/frameworkConventions.d.ts +0 -0
  738. /package/dist/{bin → cli/commands/generateImportMap}/frameworkConventions.js +0 -0
  739. /package/dist/{bin → cli/commands}/generateImportMap/generateImportMap.spec.js +0 -0
  740. /package/dist/{bin → cli/commands}/generateImportMap/iterateCollections.js +0 -0
  741. /package/dist/{bin → cli/commands}/generateImportMap/iterateFields.js +0 -0
  742. /package/dist/{bin → cli/commands}/generateImportMap/iterateGlobals.js +0 -0
  743. /package/dist/{bin → cli/commands}/generateImportMap/utilities/addPayloadComponentToImportMap.js +0 -0
  744. /package/dist/{bin → cli/commands}/generateImportMap/utilities/getFromImportMap.js +0 -0
  745. /package/dist/{bin → cli/commands}/generateImportMap/utilities/getImportMapToBaseDirPath.d.ts +0 -0
  746. /package/dist/{bin → cli/commands}/generateImportMap/utilities/getImportMapToBaseDirPath.js +0 -0
  747. /package/dist/{bin → cli/commands}/generateImportMap/utilities/parsePayloadComponent.js +0 -0
  748. /package/dist/{bin → cli/commands}/generateImportMap/utilities/resolveImportMapFilePath.d.ts +0 -0
  749. /package/dist/{bin → cli/runtime}/loadEnv.d.ts +0 -0
package/bin.js CHANGED
@@ -1,17 +1,23 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ import { Command } from 'commander'
3
4
  import path from 'node:path'
4
5
  import { fileURLToPath, pathToFileURL } from 'node:url'
5
6
 
6
- const useSwc = process.argv.includes('--use-swc')
7
- const disableTranspile = process.argv.includes('--disable-transpile')
7
+ const bootstrap = new Command()
8
+ .helpOption(false)
9
+ .allowUnknownOption()
10
+ .argument('[args...]')
11
+ .option('--disable-transpile')
12
+ .option('--use-swc')
13
+ .parse(process.argv)
14
+ const { disableTranspile, useSwc } = bootstrap.opts()
8
15
 
9
- if (disableTranspile) {
10
- // Remove --disable-transpile from arguments
11
- process.argv = process.argv.filter((arg) => arg !== '--disable-transpile')
16
+ process.argv = [...process.argv.slice(0, 2), ...bootstrap.args]
12
17
 
18
+ if (disableTranspile) {
13
19
  const start = async () => {
14
- const { bin } = await import('./dist/bin/index.js')
20
+ const { bin } = await import('./dist/cli/index.js')
15
21
  await bin()
16
22
  }
17
23
 
@@ -37,15 +43,13 @@ if (disableTranspile) {
37
43
  // Use tsx
38
44
  let tsImport = (await import('tsx/esm/api')).tsImport
39
45
 
40
- const { bin } = await tsImport('./dist/bin/index.js', url)
46
+ const { bin } = await tsImport('./dist/cli/index.js', url)
41
47
  await bin()
42
48
  }
43
49
 
44
50
  void start()
45
51
  } else if (useSwc) {
46
52
  const { register } = await import('node:module')
47
- // Remove --use-swc from arguments
48
- process.argv = process.argv.filter((arg) => arg !== '--use-swc')
49
53
 
50
54
  try {
51
55
  register('@swc-node/register/esm', url)
@@ -56,7 +60,7 @@ if (disableTranspile) {
56
60
  }
57
61
 
58
62
  const start = async () => {
59
- const { bin } = await import('./dist/bin/index.js')
63
+ const { bin } = await import('./dist/cli/index.js')
60
64
  await bin()
61
65
  }
62
66
 
@@ -1,5 +1,5 @@
1
1
  import type { AcceptedLanguages } from '@payloadcms/translations';
2
- import type { ImportMap } from '../../bin/generateImportMap/index.js';
2
+ import type { ImportMap } from '../../cli/commands/generateImportMap/generateImportMap.js';
3
3
  import type { Locale, SanitizedConfig } from '../../config/types.js';
4
4
  import type { PaginatedDocs } from '../../database/types.js';
5
5
  import type { Slugify } from '../../fields/baseFields/slug/types.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/admin/functions/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/admin/functions/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAA;AAEjE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,2DAA2D,CAAA;AAC1F,OAAO,KAAK,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AACpE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AAC5D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,uCAAuC,CAAA;AACpE,OAAO,KAAK,EACV,cAAc,EACd,gBAAgB,EAChB,qBAAqB,EACrB,UAAU,EACV,UAAU,EACV,oBAAoB,EACrB,MAAM,gBAAgB,CAAA;AACvB,OAAO,KAAK,EAAE,cAAc,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAA;AACvE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+CAA+C,CAAA;AACnF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AAE9D,MAAM,MAAM,aAAa,GAAG;IAC1B,OAAO,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAE5B,OAAO,EAAE,OAAO,CAAA;IAEhB,YAAY,EAAE,iBAAiB,CAAA;IAC/B,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,oBAAoB,CAAA;IACjC,GAAG,EAAE,cAAc,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG;IACtC,SAAS,EAAE,SAAS,CAAA;IACpB,eAAe,CAAC,EAAE,iBAAiB,CAAA;CACpC,GAAG,IAAI,CAAC,aAAa,EAAE,SAAS,GAAG,QAAQ,GAAG,aAAa,GAAG,KAAK,CAAC,CAAA;AAErE,MAAM,MAAM,kBAAkB,GAAG;IAC/B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAC7B,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG;IACrC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAC7B,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG,CAAC,IAAI,EAAE,wBAAwB,KAAK,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAA;AAEjG,MAAM,MAAM,cAAc,CACxB,KAAK,SAAS,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9C,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,IACtC,CAAC,IAAI,EAAE,yBAAyB,GAAG,KAAK,KAAK,WAAW,CAAA;AAE5D,MAAM,MAAM,oBAAoB,GAAG;IACjC,EAAE,EAAE,cAAc,CAAA;IAClB,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,qBAAqB,GAAG,CAClC,IAAI,EAAE;IACJ,MAAM,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,eAAe,CAAA;IAClD,SAAS,EAAE,SAAS,CAAA;IACpB;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAA;CAC3D,GAAG,wBAAwB,KACzB,OAAO,CAAC,OAAO,CAAC,CAAA;AAErB,MAAM,MAAM,SAAS,GAAG;IAKtB,OAAO,CAAC,EAAE,cAAc,CAAA;IAKxB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAA;IAIxC,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,KAAK,CAAC,EAAE,KAAK,CAAA;CACd,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;AAE3B,MAAM,MAAM,mBAAmB,GAAG;IAChC;;OAEG;IACH,cAAc,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IACjC,OAAO,CAAC,EAAE,gBAAgB,EAAE,CAAA;IAC5B,IAAI,CAAC,EAAE,aAAa,CAAA;IACpB;;OAEG;IACH,IAAI,CAAC,EAAE,aAAa,CAAC,MAAM,CAAC,CAAA;IAC5B,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,kBAAkB,EAAE,MAAM,CAAA;IAC1B,MAAM,CAAC,EAAE;QACP,cAAc,EAAE,cAAc,CAAA;QAC9B,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;QACnB,QAAQ,EAAE,MAAM,CAAA;KACjB,CAAA;IACD,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,eAAe,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;CAC1C,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG;IACtC,cAAc,CAAC,EAAE,cAAc,CAAA;IAC/B,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB;;;OAGG;IACH,EAAE,CAAC,EAAE,qBAAqB,CAAA;IAC1B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC,CAAA;IACvB,IAAI,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;CAC1B,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/admin/functions/index.ts"],"sourcesContent":["import type { AcceptedLanguages } from '@payloadcms/translations'\n\nimport type { ImportMap } from '../../bin/generateImportMap/index.js'\nimport type { Locale, SanitizedConfig } from '../../config/types.js'\nimport type { PaginatedDocs } from '../../database/types.js'\nimport type { Slugify } from '../../fields/baseFields/slug/types.js'\nimport type {\n CollectionSlug,\n ColumnPreference,\n DefaultDocumentIDType,\n FieldPaths,\n GlobalSlug,\n SanitizedPermissions,\n} from '../../index.js'\nimport type { PayloadRequest, Sort, Where } from '../../types/index.js'\nimport type { ColumnsFromURL } from '../../utilities/transformColumnPreferences.js'\nimport type { ComponentRenderer } from '../adapters/render.js'\n\nexport type InitReqResult = {\n cookies: Map<string, string>\n // TODO: Remove in 4.0. Duplicative, already available in req.headers\n headers: Headers\n // TODO: Remove in 4.0. Duplicative, already available in req.i18n.language\n languageCode: AcceptedLanguages\n locale?: Locale\n permissions: SanitizedPermissions\n req: PayloadRequest\n}\n\nexport type DefaultServerFunctionArgs = {\n importMap: ImportMap\n renderComponent?: ComponentRenderer\n} & Pick<InitReqResult, 'cookies' | 'locale' | 'permissions' | 'req'>\n\nexport type ServerFunctionArgs = {\n args: Record<string, unknown>\n name: string\n}\n\nexport type ServerFunctionClientArgs = {\n args: Record<string, unknown>\n name: string\n}\n\nexport type ServerFunctionClient = (args: ServerFunctionClientArgs) => Promise<unknown> | unknown\n\nexport type ServerFunction<\n TArgs extends object = Record<string, unknown>,\n TReturnType = Promise<unknown> | unknown,\n> = (args: DefaultServerFunctionArgs & TArgs) => TReturnType\n\nexport type ServerFunctionConfig = {\n fn: ServerFunction\n name: string\n}\n\nexport type ServerFunctionHandler = (\n args: {\n config: Promise<SanitizedConfig> | SanitizedConfig\n importMap: ImportMap\n /**\n * A map of server function names to their implementations. These are\n * registered alongside the base server functions and can be called\n * using the useServerFunctions() hook.\n *\n * @example\n * const { serverFunction } = useServerFunctions()\n *\n * const callServerFunction = useCallback(() => {\n *\n * async function call() {\n * const result = (await serverFunction({\n * name: 'record-key',\n * args: {\n * // Your args\n * },\n * }))\n *\n * // Do someting with the result\n * }\n *\n * void call()\n * }, [serverFunction])\n */\n serverFunctions?: Record<string, ServerFunction<any, any>>\n } & ServerFunctionClientArgs,\n) => Promise<unknown>\n\nexport type ListQuery = {\n /*\n * This is an of strings, i.e. `['title', '-slug']`\n * Use `transformColumnsToPreferences` and `transformColumnsToSearchParams` to convert it back and forth\n */\n columns?: ColumnsFromURL\n /*\n * A string representing the field to group by, e.g. `category`\n * A leading hyphen represents descending order, e.g. `-category`\n */\n groupBy?: string\n limit?: number\n page?: number\n preset?: number | string\n queryByGroup?: Record<string, ListQuery>\n /*\n When provided, is automatically injected into the `where` object\n */\n search?: string\n sort?: Sort\n where?: Where\n} & Record<string, unknown>\n\nexport type BuildTableStateArgs = {\n /**\n * If an array is provided, the table will be built to support polymorphic collections.\n */\n collectionSlug: string | string[]\n columns?: ColumnPreference[]\n data?: PaginatedDocs\n /**\n * @deprecated Use `data` instead\n */\n docs?: PaginatedDocs['docs']\n enableRowSelections?: boolean\n orderableFieldName: string\n parent?: {\n collectionSlug: CollectionSlug\n id: number | string\n joinPath: string\n }\n query?: ListQuery\n renderRowTypes?: boolean\n tableAppearance?: 'condensed' | 'default'\n}\n\nexport type SlugifyServerFunctionArgs = {\n collectionSlug?: CollectionSlug\n globalSlug?: GlobalSlug\n /**\n * Current doc ID, needed to exclude this doc from uniqueness checks.\n * This ensures that this doc can reuse its own slug rather than bumping past itself when regenerating.\n */\n id?: DefaultDocumentIDType\n /**\n * Active admin locale, so a localized slug's fallback is deduped within the right locale.\n */\n locale?: Locale['code']\n path?: FieldPaths['path']\n} & Omit<Parameters<Slugify>[0], 'req'>\n"],"names":[],"mappings":"AAsIA,WAauC"}
1
+ {"version":3,"sources":["../../../src/admin/functions/index.ts"],"sourcesContent":["import type { AcceptedLanguages } from '@payloadcms/translations'\n\nimport type { ImportMap } from '../../cli/commands/generateImportMap/generateImportMap.js'\nimport type { Locale, SanitizedConfig } from '../../config/types.js'\nimport type { PaginatedDocs } from '../../database/types.js'\nimport type { Slugify } from '../../fields/baseFields/slug/types.js'\nimport type {\n CollectionSlug,\n ColumnPreference,\n DefaultDocumentIDType,\n FieldPaths,\n GlobalSlug,\n SanitizedPermissions,\n} from '../../index.js'\nimport type { PayloadRequest, Sort, Where } from '../../types/index.js'\nimport type { ColumnsFromURL } from '../../utilities/transformColumnPreferences.js'\nimport type { ComponentRenderer } from '../adapters/render.js'\n\nexport type InitReqResult = {\n cookies: Map<string, string>\n // TODO: Remove in 4.0. Duplicative, already available in req.headers\n headers: Headers\n // TODO: Remove in 4.0. Duplicative, already available in req.i18n.language\n languageCode: AcceptedLanguages\n locale?: Locale\n permissions: SanitizedPermissions\n req: PayloadRequest\n}\n\nexport type DefaultServerFunctionArgs = {\n importMap: ImportMap\n renderComponent?: ComponentRenderer\n} & Pick<InitReqResult, 'cookies' | 'locale' | 'permissions' | 'req'>\n\nexport type ServerFunctionArgs = {\n args: Record<string, unknown>\n name: string\n}\n\nexport type ServerFunctionClientArgs = {\n args: Record<string, unknown>\n name: string\n}\n\nexport type ServerFunctionClient = (args: ServerFunctionClientArgs) => Promise<unknown> | unknown\n\nexport type ServerFunction<\n TArgs extends object = Record<string, unknown>,\n TReturnType = Promise<unknown> | unknown,\n> = (args: DefaultServerFunctionArgs & TArgs) => TReturnType\n\nexport type ServerFunctionConfig = {\n fn: ServerFunction\n name: string\n}\n\nexport type ServerFunctionHandler = (\n args: {\n config: Promise<SanitizedConfig> | SanitizedConfig\n importMap: ImportMap\n /**\n * A map of server function names to their implementations. These are\n * registered alongside the base server functions and can be called\n * using the useServerFunctions() hook.\n *\n * @example\n * const { serverFunction } = useServerFunctions()\n *\n * const callServerFunction = useCallback(() => {\n *\n * async function call() {\n * const result = (await serverFunction({\n * name: 'record-key',\n * args: {\n * // Your args\n * },\n * }))\n *\n * // Do someting with the result\n * }\n *\n * void call()\n * }, [serverFunction])\n */\n serverFunctions?: Record<string, ServerFunction<any, any>>\n } & ServerFunctionClientArgs,\n) => Promise<unknown>\n\nexport type ListQuery = {\n /*\n * This is an of strings, i.e. `['title', '-slug']`\n * Use `transformColumnsToPreferences` and `transformColumnsToSearchParams` to convert it back and forth\n */\n columns?: ColumnsFromURL\n /*\n * A string representing the field to group by, e.g. `category`\n * A leading hyphen represents descending order, e.g. `-category`\n */\n groupBy?: string\n limit?: number\n page?: number\n preset?: number | string\n queryByGroup?: Record<string, ListQuery>\n /*\n When provided, is automatically injected into the `where` object\n */\n search?: string\n sort?: Sort\n where?: Where\n} & Record<string, unknown>\n\nexport type BuildTableStateArgs = {\n /**\n * If an array is provided, the table will be built to support polymorphic collections.\n */\n collectionSlug: string | string[]\n columns?: ColumnPreference[]\n data?: PaginatedDocs\n /**\n * @deprecated Use `data` instead\n */\n docs?: PaginatedDocs['docs']\n enableRowSelections?: boolean\n orderableFieldName: string\n parent?: {\n collectionSlug: CollectionSlug\n id: number | string\n joinPath: string\n }\n query?: ListQuery\n renderRowTypes?: boolean\n tableAppearance?: 'condensed' | 'default'\n}\n\nexport type SlugifyServerFunctionArgs = {\n collectionSlug?: CollectionSlug\n globalSlug?: GlobalSlug\n /**\n * Current doc ID, needed to exclude this doc from uniqueness checks.\n * This ensures that this doc can reuse its own slug rather than bumping past itself when regenerating.\n */\n id?: DefaultDocumentIDType\n /**\n * Active admin locale, so a localized slug's fallback is deduped within the right locale.\n */\n locale?: Locale['code']\n path?: FieldPaths['path']\n} & Omit<Parameters<Slugify>[0], 'req'>\n"],"names":[],"mappings":"AAsIA,WAauC"}
@@ -1,6 +1,6 @@
1
1
  import type { AcceptedLanguages, I18nClient } from '@payloadcms/translations';
2
2
  import type React from 'react';
3
- import type { ImportMap } from '../bin/generateImportMap/index.js';
3
+ import type { ImportMap } from '../cli/commands/generateImportMap/generateImportMap.js';
4
4
  import type { TypeWithID } from '../collections/config/types.js';
5
5
  import type { SanitizedConfig } from '../config/types.js';
6
6
  import type { Block, ClientBlock, ClientField, Field, FieldTypes, Tab } from '../fields/config/types.js';
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/admin/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/admin/types.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/admin/types.ts"],"sourcesContent":["import type { AcceptedLanguages, I18nClient } from '@payloadcms/translations'\nimport type React from 'react'\n\nimport type { ImportMap } from '../bin/generateImportMap/index.js'\nimport type { TypeWithID } from '../collections/config/types.js'\nimport type { SanitizedConfig } from '../config/types.js'\nimport type {\n Block,\n ClientBlock,\n ClientField,\n Field,\n FieldTypes,\n Tab,\n} from '../fields/config/types.js'\nimport type { JsonObject } from '../types/index.js'\nimport type { ClientTab } from './fields/Tabs.js'\nimport type {\n BuildFormStateArgs,\n Data,\n FieldState,\n FieldStateWithoutComponents,\n FilterOptionsResult,\n FormState,\n FormStateWithoutComponents,\n Row,\n} from './forms/Form.js'\n\nexport type {\n /**\n * @deprecated\n * The `CustomPreviewButton` type is deprecated and will be removed in the next major version.\n * This type is only used for the Payload Config. Use `PreviewButtonClientProps` instead.\n */\n CustomComponent as CustomPreviewButton,\n /**\n * @deprecated\n * The `CustomPublishButton` type is deprecated and will be removed in the next major version.\n * This type is only used for the Payload Config. Use `PreviewButtonClientProps` instead.\n */\n CustomComponent as CustomPublishButton,\n /**\n * @deprecated\n * The `CustomSaveButton` type is deprecated and will be removed in the next major version.\n * This type is only used for the Payload Config. Use `PreviewButtonClientProps` instead.\n */\n CustomComponent as CustomSaveButton,\n /**\n * @deprecated\n * The `CustomSaveDraftButton` type is deprecated and will be removed in the next major version.\n * This type is only used for the Payload Config. Use `PreviewButtonClientProps` instead.\n */\n CustomComponent as CustomSaveDraftButton,\n} from '../config/types.js'\nexport type { DefaultCellComponentProps, DefaultServerCellComponentProps } from './elements/Cell.js'\nexport type { ConditionalDateProps } from './elements/DatePicker.js'\nexport type { DayPickerProps, SharedProps, TimePickerProps } from './elements/DatePicker.js'\nexport type {\n EditMenuItemsClientProps,\n EditMenuItemsServerProps,\n EditMenuItemsServerPropsOnly,\n} from './elements/EditMenuItems.js'\nexport type {\n NavGroupPreferences,\n NavPreferences,\n SidebarTabClientProps,\n SidebarTabServerProps,\n SidebarTabServerPropsOnly,\n} from './elements/Nav.js'\nexport type {\n PreviewButtonClientProps,\n PreviewButtonServerProps,\n PreviewButtonServerPropsOnly,\n} from './elements/PreviewButton.js'\nexport type {\n PublishButtonClientProps,\n PublishButtonServerProps,\n PublishButtonServerPropsOnly,\n} from './elements/PublishButton.js'\nexport type {\n SaveButtonClientProps,\n SaveButtonServerProps,\n SaveButtonServerPropsOnly,\n} from './elements/SaveButton.js'\nexport type {\n SaveDraftButtonClientProps,\n SaveDraftButtonServerProps,\n SaveDraftButtonServerPropsOnly,\n} from './elements/SaveDraftButton.js'\nexport type { CustomStatus } from './elements/Status.js'\n\nexport type { Column } from './elements/Table.js'\n\nexport type {\n UnpublishButtonClientProps,\n UnpublishButtonServerProps,\n UnpublishButtonServerPropsOnly,\n} from './elements/UnpublishButton.js'\n\nexport type { CustomUpload } from './elements/Upload.js'\n\nexport type {\n WithServerSidePropsComponent,\n WithServerSidePropsComponentProps,\n} from './elements/WithServerSideProps.js'\n\nexport type {\n ArrayFieldClientComponent,\n ArrayFieldClientProps,\n ArrayFieldDescriptionClientComponent,\n ArrayFieldDescriptionServerComponent,\n ArrayFieldDiffClientComponent,\n ArrayFieldDiffServerComponent,\n ArrayFieldErrorClientComponent,\n ArrayFieldErrorServerComponent,\n ArrayFieldLabelClientComponent,\n ArrayFieldLabelServerComponent,\n ArrayFieldServerComponent,\n ArrayFieldServerProps,\n} from './fields/Array.js'\n\nexport type {\n BlockRowLabelClientComponent,\n BlockRowLabelServerComponent,\n BlocksFieldClientComponent,\n BlocksFieldClientProps,\n BlocksFieldDescriptionClientComponent,\n BlocksFieldDescriptionServerComponent,\n BlocksFieldDiffClientComponent,\n BlocksFieldDiffServerComponent,\n BlocksFieldErrorClientComponent,\n BlocksFieldErrorServerComponent,\n BlocksFieldLabelClientComponent,\n BlocksFieldLabelServerComponent,\n BlocksFieldServerComponent,\n BlocksFieldServerProps,\n} from './fields/Blocks.js'\n\nexport type {\n CheckboxFieldClientComponent,\n CheckboxFieldClientProps,\n CheckboxFieldDescriptionClientComponent,\n CheckboxFieldDescriptionServerComponent,\n CheckboxFieldDiffClientComponent,\n CheckboxFieldDiffServerComponent,\n CheckboxFieldErrorClientComponent,\n CheckboxFieldErrorServerComponent,\n CheckboxFieldLabelClientComponent,\n CheckboxFieldLabelServerComponent,\n CheckboxFieldServerComponent,\n CheckboxFieldServerProps,\n} from './fields/Checkbox.js'\n\nexport type {\n CodeFieldClientComponent,\n CodeFieldClientProps,\n CodeFieldDescriptionClientComponent,\n CodeFieldDescriptionServerComponent,\n CodeFieldDiffClientComponent,\n CodeFieldDiffServerComponent,\n CodeFieldErrorClientComponent,\n CodeFieldErrorServerComponent,\n CodeFieldLabelClientComponent,\n CodeFieldLabelServerComponent,\n CodeFieldServerComponent,\n CodeFieldServerProps,\n} from './fields/Code.js'\n\nexport type {\n CollapsibleFieldClientComponent,\n CollapsibleFieldClientProps,\n CollapsibleFieldDescriptionClientComponent,\n CollapsibleFieldDescriptionServerComponent,\n CollapsibleFieldDiffClientComponent,\n CollapsibleFieldDiffServerComponent,\n CollapsibleFieldErrorClientComponent,\n CollapsibleFieldErrorServerComponent,\n CollapsibleFieldLabelClientComponent,\n CollapsibleFieldLabelServerComponent,\n CollapsibleFieldServerComponent,\n CollapsibleFieldServerProps,\n} from './fields/Collapsible.js'\n\nexport type {\n DateFieldClientComponent,\n DateFieldClientProps,\n DateFieldDescriptionClientComponent,\n DateFieldDescriptionServerComponent,\n DateFieldDiffClientComponent,\n DateFieldDiffServerComponent,\n DateFieldErrorClientComponent,\n DateFieldErrorServerComponent,\n DateFieldLabelClientComponent,\n DateFieldLabelServerComponent,\n DateFieldServerComponent,\n DateFieldServerProps,\n} from './fields/Date.js'\n\nexport type {\n EmailFieldClientComponent,\n EmailFieldClientProps,\n EmailFieldDescriptionClientComponent,\n EmailFieldDescriptionServerComponent,\n EmailFieldDiffClientComponent,\n EmailFieldDiffServerComponent,\n EmailFieldErrorClientComponent,\n EmailFieldErrorServerComponent,\n EmailFieldLabelClientComponent,\n EmailFieldLabelServerComponent,\n EmailFieldServerComponent,\n EmailFieldServerProps,\n} from './fields/Email.js'\n\nexport type {\n GroupFieldClientComponent,\n GroupFieldClientProps,\n GroupFieldDescriptionClientComponent,\n GroupFieldDescriptionServerComponent,\n GroupFieldDiffClientComponent,\n GroupFieldDiffServerComponent,\n GroupFieldErrorClientComponent,\n GroupFieldErrorServerComponent,\n GroupFieldLabelClientComponent,\n GroupFieldLabelServerComponent,\n GroupFieldServerComponent,\n GroupFieldServerProps,\n} from './fields/Group.js'\n\nexport type { HiddenFieldProps } from './fields/Hidden.js'\n\nexport type {\n JoinFieldClientComponent,\n JoinFieldClientProps,\n JoinFieldDescriptionClientComponent,\n JoinFieldDescriptionServerComponent,\n JoinFieldDiffClientComponent,\n JoinFieldDiffServerComponent,\n JoinFieldErrorClientComponent,\n JoinFieldErrorServerComponent,\n JoinFieldLabelClientComponent,\n JoinFieldLabelServerComponent,\n JoinFieldServerComponent,\n JoinFieldServerProps,\n} from './fields/Join.js'\n\nexport type {\n JSONFieldClientComponent,\n JSONFieldClientProps,\n JSONFieldDescriptionClientComponent,\n JSONFieldDescriptionServerComponent,\n JSONFieldDiffClientComponent,\n JSONFieldDiffServerComponent,\n JSONFieldErrorClientComponent,\n JSONFieldErrorServerComponent,\n JSONFieldLabelClientComponent,\n JSONFieldLabelServerComponent,\n JSONFieldServerComponent,\n JSONFieldServerProps,\n} from './fields/JSON.js'\n\nexport type {\n NumberFieldClientComponent,\n NumberFieldClientProps,\n NumberFieldDescriptionClientComponent,\n NumberFieldDescriptionServerComponent,\n NumberFieldDiffClientComponent,\n NumberFieldDiffServerComponent,\n NumberFieldErrorClientComponent,\n NumberFieldErrorServerComponent,\n NumberFieldLabelClientComponent,\n NumberFieldLabelServerComponent,\n NumberFieldServerComponent,\n NumberFieldServerProps,\n} from './fields/Number.js'\n\nexport type {\n PointFieldClientComponent,\n PointFieldClientProps,\n PointFieldDescriptionClientComponent,\n PointFieldDescriptionServerComponent,\n PointFieldDiffClientComponent,\n PointFieldDiffServerComponent,\n PointFieldErrorClientComponent,\n PointFieldErrorServerComponent,\n PointFieldLabelClientComponent,\n PointFieldLabelServerComponent,\n PointFieldServerComponent,\n PointFieldServerProps,\n} from './fields/Point.js'\n\nexport type {\n RadioFieldClientComponent,\n RadioFieldClientProps,\n RadioFieldDescriptionClientComponent,\n RadioFieldDescriptionServerComponent,\n RadioFieldDiffClientComponent,\n RadioFieldDiffServerComponent,\n RadioFieldErrorClientComponent,\n RadioFieldErrorServerComponent,\n RadioFieldLabelClientComponent,\n RadioFieldLabelServerComponent,\n RadioFieldServerComponent,\n RadioFieldServerProps,\n} from './fields/Radio.js'\n\nexport type {\n RelationshipFieldClientComponent,\n RelationshipFieldClientProps,\n RelationshipFieldDescriptionClientComponent,\n RelationshipFieldDescriptionServerComponent,\n RelationshipFieldDiffClientComponent,\n RelationshipFieldDiffServerComponent,\n RelationshipFieldErrorClientComponent,\n RelationshipFieldErrorServerComponent,\n RelationshipFieldLabelClientComponent,\n RelationshipFieldLabelServerComponent,\n RelationshipFieldServerComponent,\n RelationshipFieldServerProps,\n} from './fields/Relationship.js'\n\nexport type {\n RichTextFieldClientComponent,\n RichTextFieldClientProps,\n RichTextFieldDescriptionClientComponent,\n RichTextFieldDescriptionServerComponent,\n RichTextFieldDiffClientComponent,\n RichTextFieldDiffServerComponent,\n RichTextFieldErrorClientComponent,\n RichTextFieldErrorServerComponent,\n RichTextFieldLabelClientComponent,\n RichTextFieldLabelServerComponent,\n RichTextFieldServerComponent,\n RichTextFieldServerProps,\n} from './fields/RichText.js'\n\nexport type {\n RowFieldClientComponent,\n RowFieldClientProps,\n RowFieldDescriptionClientComponent,\n RowFieldDescriptionServerComponent,\n RowFieldDiffClientComponent,\n RowFieldDiffServerComponent,\n RowFieldErrorClientComponent,\n RowFieldErrorServerComponent,\n RowFieldLabelClientComponent,\n RowFieldLabelServerComponent,\n RowFieldServerComponent,\n RowFieldServerProps,\n} from './fields/Row.js'\n\nexport type {\n SelectFieldClientComponent,\n SelectFieldClientProps,\n SelectFieldDescriptionClientComponent,\n SelectFieldDescriptionServerComponent,\n SelectFieldDiffClientComponent,\n SelectFieldDiffServerComponent,\n SelectFieldErrorClientComponent,\n SelectFieldErrorServerComponent,\n SelectFieldLabelClientComponent,\n SelectFieldLabelServerComponent,\n SelectFieldServerComponent,\n SelectFieldServerProps,\n} from './fields/Select.js'\n\nexport type {\n ClientTab,\n TabsFieldClientComponent,\n TabsFieldClientProps,\n TabsFieldDescriptionClientComponent,\n TabsFieldDescriptionServerComponent,\n TabsFieldDiffClientComponent,\n TabsFieldDiffServerComponent,\n TabsFieldErrorClientComponent,\n TabsFieldErrorServerComponent,\n TabsFieldLabelClientComponent,\n TabsFieldLabelServerComponent,\n TabsFieldServerComponent,\n TabsFieldServerProps,\n} from './fields/Tabs.js'\n\nexport type {\n TextFieldClientComponent,\n TextFieldClientProps,\n TextFieldDescriptionClientComponent,\n TextFieldDescriptionServerComponent,\n TextFieldDiffClientComponent,\n TextFieldDiffServerComponent,\n TextFieldErrorClientComponent,\n TextFieldErrorServerComponent,\n TextFieldLabelClientComponent,\n TextFieldLabelServerComponent,\n TextFieldServerComponent,\n TextFieldServerProps,\n} from './fields/Text.js'\n\nexport type {\n TextareaFieldClientComponent,\n TextareaFieldClientProps,\n TextareaFieldDescriptionClientComponent,\n TextareaFieldDescriptionServerComponent,\n TextareaFieldDiffClientComponent,\n TextareaFieldDiffServerComponent,\n TextareaFieldErrorClientComponent,\n TextareaFieldErrorServerComponent,\n TextareaFieldLabelClientComponent,\n TextareaFieldLabelServerComponent,\n TextareaFieldServerComponent,\n TextareaFieldServerProps,\n} from './fields/Textarea.js'\n\nexport type {\n UIFieldClientComponent,\n UIFieldClientProps,\n UIFieldDiffClientComponent,\n UIFieldDiffServerComponent,\n UIFieldServerComponent,\n UIFieldServerProps,\n} from './fields/UI.js'\n\nexport type {\n UploadFieldClientComponent,\n UploadFieldClientProps,\n UploadFieldDescriptionClientComponent,\n UploadFieldDescriptionServerComponent,\n UploadFieldDiffClientComponent,\n UploadFieldDiffServerComponent,\n UploadFieldErrorClientComponent,\n UploadFieldErrorServerComponent,\n UploadFieldLabelClientComponent,\n UploadFieldLabelServerComponent,\n UploadFieldServerComponent,\n UploadFieldServerProps,\n} from './fields/Upload.js'\n\nexport type {\n Description,\n DescriptionFunction,\n FieldDescriptionClientComponent,\n FieldDescriptionClientProps,\n FieldDescriptionServerComponent,\n FieldDescriptionServerProps,\n GenericDescriptionProps,\n StaticDescription,\n} from './forms/Description.js'\n\nexport type {\n BaseVersionField,\n DiffMethod,\n FieldDiffClientComponent,\n FieldDiffClientProps,\n FieldDiffServerComponent,\n FieldDiffServerProps,\n VersionField,\n VersionTab,\n} from './forms/Diff.js'\n\nexport type {\n BuildFormStateArgs,\n Data,\n FieldState as FormField,\n FieldStateWithoutComponents as FormFieldWithoutComponents,\n FilterOptionsResult,\n FormState,\n FormStateWithoutComponents,\n Row,\n}\n\nexport type {\n FieldErrorClientComponent,\n FieldErrorClientProps,\n FieldErrorServerComponent,\n FieldErrorServerProps,\n GenericErrorProps,\n} from './forms/Error.js'\n\nexport type {\n ClientComponentProps,\n ClientFieldBase,\n ClientFieldWithOptionalType,\n FieldClientComponent,\n FieldPaths,\n FieldServerComponent,\n ServerComponentProps,\n ServerFieldBase,\n} from './forms/Field.js'\n\nexport type {\n FieldLabelClientComponent,\n FieldLabelClientProps,\n FieldLabelServerComponent,\n FieldLabelServerProps,\n GenericLabelProps,\n SanitizedLabelProps,\n} from './forms/Label.js'\n\nexport type { RowLabel, RowLabelComponent } from './forms/RowLabel.js'\n\nexport type MappedServerComponent<TComponentClientProps extends JsonObject = JsonObject> = {\n Component?: React.ComponentType<TComponentClientProps>\n props?: Partial<any>\n RenderedComponent: React.ReactNode\n type: 'server'\n}\n\nexport type MappedClientComponent<TComponentClientProps extends JsonObject = JsonObject> = {\n Component?: React.ComponentType<TComponentClientProps>\n props?: Partial<TComponentClientProps>\n RenderedComponent?: React.ReactNode\n type: 'client'\n}\n\nexport type MappedEmptyComponent = {\n type: 'empty'\n}\n\nexport enum Action {\n RenderConfig = 'render-config',\n}\n\nexport type RenderEntityConfigArgs = {\n collectionSlug?: string\n data?: Data\n globalSlug?: string\n}\n\nexport type RenderRootConfigArgs = {}\n\nexport type RenderFieldConfigArgs = {\n collectionSlug?: string\n formState?: FormState\n globalSlug?: string\n schemaPath: string\n}\n\nexport type RenderConfigArgs = {\n action: Action.RenderConfig\n config: Promise<SanitizedConfig> | SanitizedConfig\n i18n: I18nClient\n importMap: ImportMap\n languageCode: AcceptedLanguages\n serverProps?: any\n} & (RenderEntityConfigArgs | RenderFieldConfigArgs | RenderRootConfigArgs)\n\nexport type PayloadServerAction = (\n args:\n | {\n [key: string]: any\n action: Action\n i18n: I18nClient\n }\n | RenderConfigArgs,\n) => Promise<string>\n\nexport type RenderedField = {\n Field: React.ReactNode\n indexPath?: string\n initialSchemaPath?: string\n /**\n * @deprecated\n * This is a legacy property that will be removed in v4.\n * Please use `fieldIsSidebar(field)` from `payload` instead.\n * Or check `field.admin.position === 'sidebar'` directly.\n */\n isSidebar: boolean\n path: string\n schemaPath: string\n type: FieldTypes\n}\n\nexport type FieldRow = {\n RowLabel?: React.ReactNode\n}\n\nexport type DocumentSlots = {\n BeforeDocumentControls?: React.ReactNode\n BeforeDocumentMeta?: React.ReactNode\n Description?: React.ReactNode\n EditMenuItems?: React.ReactNode\n LivePreview?: React.ReactNode\n PreviewButton?: React.ReactNode\n PublishButton?: React.ReactNode\n SaveButton?: React.ReactNode\n SaveDraftButton?: React.ReactNode\n Status?: React.ReactNode\n UnpublishButton?: React.ReactNode\n Upload?: React.ReactNode\n UploadControls?: React.ReactNode\n UploadFilePreview?: React.ReactNode\n}\n\nexport type {\n BuildTableStateArgs,\n DefaultServerFunctionArgs,\n InitReqResult,\n ListQuery,\n ServerFunction,\n ServerFunctionArgs,\n ServerFunctionClient,\n ServerFunctionClientArgs,\n ServerFunctionConfig,\n ServerFunctionHandler,\n SlugifyServerFunctionArgs,\n} from './functions/index.js'\n\nexport type { LanguageOptions } from './LanguageOptions.js'\n\nexport type { RichTextAdapter, RichTextAdapterProvider, RichTextHooks } from './RichText.js'\n\nexport { type WidgetServerProps } from './views/dashboard.js'\n\nexport type {\n BeforeDocumentControlsClientProps,\n BeforeDocumentControlsServerProps,\n BeforeDocumentControlsServerPropsOnly,\n DocumentSubViewTypes,\n DocumentTabClientProps,\n /**\n * @deprecated\n * The `DocumentTabComponent` type is deprecated and will be removed in the next major version.\n * Use `DocumentTabServerProps`or `DocumentTabClientProps` instead.\n */\n DocumentTabComponent,\n DocumentTabCondition,\n DocumentTabConfig,\n /**\n * @deprecated\n * The `DocumentTabProps` type is deprecated and will be removed in the next major version.\n * Use `DocumentTabServerProps` instead.\n */\n DocumentTabServerProps as DocumentTabProps,\n DocumentTabServerProps,\n DocumentTabServerPropsOnly,\n /**\n * @deprecated\n * The `ClientSideEditViewProps` type is deprecated and will be removed in the next major version.\n * Use `DocumentViewClientProps` instead.\n */\n DocumentViewClientProps as ClientSideEditViewProps,\n DocumentViewClientProps,\n /**\n * @deprecated\n * The `ServerSideEditViewProps` is deprecated and will be removed in the next major version.\n * Use `DocumentViewServerProps` instead.\n */\n DocumentViewServerProps as ServerSideEditViewProps,\n DocumentViewServerProps,\n DocumentViewServerPropsOnly,\n EditViewProps,\n RenderDocumentVersionsProperties,\n} from './views/document.js'\n\nexport type { RelatedDocumentsGrouped } from './views/hierarchyList.js'\n\nexport type {\n AdminViewClientProps,\n /**\n * @deprecated\n * The `AdminViewComponent` type is deprecated and will be removed in the next major version.\n * Type your component props directly instead.\n */\n AdminViewComponent,\n AdminViewConfig,\n /**\n * @deprecated\n * The `AdminViewProps` type is deprecated and will be removed in the next major version.\n * Use `AdminViewServerProps` instead.\n */\n AdminViewServerProps as AdminViewProps,\n AdminViewServerProps,\n AdminViewServerPropsOnly,\n InitPageResult,\n ServerPropsFromView,\n ViewDescriptionClientProps,\n ViewDescriptionServerProps,\n ViewDescriptionServerPropsOnly,\n ViewTypes,\n VisibleEntities,\n} from './views/index.js'\n\nexport type {\n AfterListClientProps,\n AfterListServerProps,\n AfterListServerPropsOnly,\n AfterListTableClientProps,\n AfterListTableServerProps,\n AfterListTableServerPropsOnly,\n BeforeListClientProps,\n BeforeListServerProps,\n BeforeListServerPropsOnly,\n BeforeListTableClientProps,\n BeforeListTableServerProps,\n BeforeListTableServerPropsOnly,\n HierarchyViewData,\n ListViewClientProps,\n ListViewServerProps,\n ListViewServerPropsOnly,\n ListViewSlots,\n ListViewSlotSharedClientProps,\n NoResultsClientProps,\n NoResultsServerProps,\n NoResultsServerPropsOnly,\n} from './views/list.js'\n\ntype SchemaPath = {} & string\nexport type FieldSchemaMap = Map<\n SchemaPath,\n | {\n fields: Field[]\n }\n | Block\n | Field\n | Tab\n>\n\nexport type ClientFieldSchemaMap = Map<\n SchemaPath,\n | {\n fields: ClientField[]\n }\n | ClientBlock\n | ClientField\n | ClientTab\n>\n\nexport type DocumentEvent = {\n doc?: TypeWithID\n drawerSlug?: string\n entitySlug: string\n id?: number | string\n operation: 'create' | 'delete' | 'update'\n updatedAt: string\n}\n"],"names":["Action"],"mappings":"AAmgBA,OAAO,IAAA,AAAKA,gCAAAA;;WAAAA;MAEX"}
1
+ {"version":3,"sources":["../../src/admin/types.ts"],"sourcesContent":["import type { AcceptedLanguages, I18nClient } from '@payloadcms/translations'\nimport type React from 'react'\n\nimport type { ImportMap } from '../cli/commands/generateImportMap/generateImportMap.js'\nimport type { TypeWithID } from '../collections/config/types.js'\nimport type { SanitizedConfig } from '../config/types.js'\nimport type {\n Block,\n ClientBlock,\n ClientField,\n Field,\n FieldTypes,\n Tab,\n} from '../fields/config/types.js'\nimport type { JsonObject } from '../types/index.js'\nimport type { ClientTab } from './fields/Tabs.js'\nimport type {\n BuildFormStateArgs,\n Data,\n FieldState,\n FieldStateWithoutComponents,\n FilterOptionsResult,\n FormState,\n FormStateWithoutComponents,\n Row,\n} from './forms/Form.js'\n\nexport type {\n /**\n * @deprecated\n * The `CustomPreviewButton` type is deprecated and will be removed in the next major version.\n * This type is only used for the Payload Config. Use `PreviewButtonClientProps` instead.\n */\n CustomComponent as CustomPreviewButton,\n /**\n * @deprecated\n * The `CustomPublishButton` type is deprecated and will be removed in the next major version.\n * This type is only used for the Payload Config. Use `PreviewButtonClientProps` instead.\n */\n CustomComponent as CustomPublishButton,\n /**\n * @deprecated\n * The `CustomSaveButton` type is deprecated and will be removed in the next major version.\n * This type is only used for the Payload Config. Use `PreviewButtonClientProps` instead.\n */\n CustomComponent as CustomSaveButton,\n /**\n * @deprecated\n * The `CustomSaveDraftButton` type is deprecated and will be removed in the next major version.\n * This type is only used for the Payload Config. Use `PreviewButtonClientProps` instead.\n */\n CustomComponent as CustomSaveDraftButton,\n} from '../config/types.js'\nexport type { DefaultCellComponentProps, DefaultServerCellComponentProps } from './elements/Cell.js'\nexport type { ConditionalDateProps } from './elements/DatePicker.js'\nexport type { DayPickerProps, SharedProps, TimePickerProps } from './elements/DatePicker.js'\nexport type {\n EditMenuItemsClientProps,\n EditMenuItemsServerProps,\n EditMenuItemsServerPropsOnly,\n} from './elements/EditMenuItems.js'\nexport type {\n NavGroupPreferences,\n NavPreferences,\n SidebarTabClientProps,\n SidebarTabServerProps,\n SidebarTabServerPropsOnly,\n} from './elements/Nav.js'\nexport type {\n PreviewButtonClientProps,\n PreviewButtonServerProps,\n PreviewButtonServerPropsOnly,\n} from './elements/PreviewButton.js'\nexport type {\n PublishButtonClientProps,\n PublishButtonServerProps,\n PublishButtonServerPropsOnly,\n} from './elements/PublishButton.js'\nexport type {\n SaveButtonClientProps,\n SaveButtonServerProps,\n SaveButtonServerPropsOnly,\n} from './elements/SaveButton.js'\nexport type {\n SaveDraftButtonClientProps,\n SaveDraftButtonServerProps,\n SaveDraftButtonServerPropsOnly,\n} from './elements/SaveDraftButton.js'\nexport type { CustomStatus } from './elements/Status.js'\n\nexport type { Column } from './elements/Table.js'\n\nexport type {\n UnpublishButtonClientProps,\n UnpublishButtonServerProps,\n UnpublishButtonServerPropsOnly,\n} from './elements/UnpublishButton.js'\n\nexport type { CustomUpload } from './elements/Upload.js'\n\nexport type {\n WithServerSidePropsComponent,\n WithServerSidePropsComponentProps,\n} from './elements/WithServerSideProps.js'\n\nexport type {\n ArrayFieldClientComponent,\n ArrayFieldClientProps,\n ArrayFieldDescriptionClientComponent,\n ArrayFieldDescriptionServerComponent,\n ArrayFieldDiffClientComponent,\n ArrayFieldDiffServerComponent,\n ArrayFieldErrorClientComponent,\n ArrayFieldErrorServerComponent,\n ArrayFieldLabelClientComponent,\n ArrayFieldLabelServerComponent,\n ArrayFieldServerComponent,\n ArrayFieldServerProps,\n} from './fields/Array.js'\n\nexport type {\n BlockRowLabelClientComponent,\n BlockRowLabelServerComponent,\n BlocksFieldClientComponent,\n BlocksFieldClientProps,\n BlocksFieldDescriptionClientComponent,\n BlocksFieldDescriptionServerComponent,\n BlocksFieldDiffClientComponent,\n BlocksFieldDiffServerComponent,\n BlocksFieldErrorClientComponent,\n BlocksFieldErrorServerComponent,\n BlocksFieldLabelClientComponent,\n BlocksFieldLabelServerComponent,\n BlocksFieldServerComponent,\n BlocksFieldServerProps,\n} from './fields/Blocks.js'\n\nexport type {\n CheckboxFieldClientComponent,\n CheckboxFieldClientProps,\n CheckboxFieldDescriptionClientComponent,\n CheckboxFieldDescriptionServerComponent,\n CheckboxFieldDiffClientComponent,\n CheckboxFieldDiffServerComponent,\n CheckboxFieldErrorClientComponent,\n CheckboxFieldErrorServerComponent,\n CheckboxFieldLabelClientComponent,\n CheckboxFieldLabelServerComponent,\n CheckboxFieldServerComponent,\n CheckboxFieldServerProps,\n} from './fields/Checkbox.js'\n\nexport type {\n CodeFieldClientComponent,\n CodeFieldClientProps,\n CodeFieldDescriptionClientComponent,\n CodeFieldDescriptionServerComponent,\n CodeFieldDiffClientComponent,\n CodeFieldDiffServerComponent,\n CodeFieldErrorClientComponent,\n CodeFieldErrorServerComponent,\n CodeFieldLabelClientComponent,\n CodeFieldLabelServerComponent,\n CodeFieldServerComponent,\n CodeFieldServerProps,\n} from './fields/Code.js'\n\nexport type {\n CollapsibleFieldClientComponent,\n CollapsibleFieldClientProps,\n CollapsibleFieldDescriptionClientComponent,\n CollapsibleFieldDescriptionServerComponent,\n CollapsibleFieldDiffClientComponent,\n CollapsibleFieldDiffServerComponent,\n CollapsibleFieldErrorClientComponent,\n CollapsibleFieldErrorServerComponent,\n CollapsibleFieldLabelClientComponent,\n CollapsibleFieldLabelServerComponent,\n CollapsibleFieldServerComponent,\n CollapsibleFieldServerProps,\n} from './fields/Collapsible.js'\n\nexport type {\n DateFieldClientComponent,\n DateFieldClientProps,\n DateFieldDescriptionClientComponent,\n DateFieldDescriptionServerComponent,\n DateFieldDiffClientComponent,\n DateFieldDiffServerComponent,\n DateFieldErrorClientComponent,\n DateFieldErrorServerComponent,\n DateFieldLabelClientComponent,\n DateFieldLabelServerComponent,\n DateFieldServerComponent,\n DateFieldServerProps,\n} from './fields/Date.js'\n\nexport type {\n EmailFieldClientComponent,\n EmailFieldClientProps,\n EmailFieldDescriptionClientComponent,\n EmailFieldDescriptionServerComponent,\n EmailFieldDiffClientComponent,\n EmailFieldDiffServerComponent,\n EmailFieldErrorClientComponent,\n EmailFieldErrorServerComponent,\n EmailFieldLabelClientComponent,\n EmailFieldLabelServerComponent,\n EmailFieldServerComponent,\n EmailFieldServerProps,\n} from './fields/Email.js'\n\nexport type {\n GroupFieldClientComponent,\n GroupFieldClientProps,\n GroupFieldDescriptionClientComponent,\n GroupFieldDescriptionServerComponent,\n GroupFieldDiffClientComponent,\n GroupFieldDiffServerComponent,\n GroupFieldErrorClientComponent,\n GroupFieldErrorServerComponent,\n GroupFieldLabelClientComponent,\n GroupFieldLabelServerComponent,\n GroupFieldServerComponent,\n GroupFieldServerProps,\n} from './fields/Group.js'\n\nexport type { HiddenFieldProps } from './fields/Hidden.js'\n\nexport type {\n JoinFieldClientComponent,\n JoinFieldClientProps,\n JoinFieldDescriptionClientComponent,\n JoinFieldDescriptionServerComponent,\n JoinFieldDiffClientComponent,\n JoinFieldDiffServerComponent,\n JoinFieldErrorClientComponent,\n JoinFieldErrorServerComponent,\n JoinFieldLabelClientComponent,\n JoinFieldLabelServerComponent,\n JoinFieldServerComponent,\n JoinFieldServerProps,\n} from './fields/Join.js'\n\nexport type {\n JSONFieldClientComponent,\n JSONFieldClientProps,\n JSONFieldDescriptionClientComponent,\n JSONFieldDescriptionServerComponent,\n JSONFieldDiffClientComponent,\n JSONFieldDiffServerComponent,\n JSONFieldErrorClientComponent,\n JSONFieldErrorServerComponent,\n JSONFieldLabelClientComponent,\n JSONFieldLabelServerComponent,\n JSONFieldServerComponent,\n JSONFieldServerProps,\n} from './fields/JSON.js'\n\nexport type {\n NumberFieldClientComponent,\n NumberFieldClientProps,\n NumberFieldDescriptionClientComponent,\n NumberFieldDescriptionServerComponent,\n NumberFieldDiffClientComponent,\n NumberFieldDiffServerComponent,\n NumberFieldErrorClientComponent,\n NumberFieldErrorServerComponent,\n NumberFieldLabelClientComponent,\n NumberFieldLabelServerComponent,\n NumberFieldServerComponent,\n NumberFieldServerProps,\n} from './fields/Number.js'\n\nexport type {\n PointFieldClientComponent,\n PointFieldClientProps,\n PointFieldDescriptionClientComponent,\n PointFieldDescriptionServerComponent,\n PointFieldDiffClientComponent,\n PointFieldDiffServerComponent,\n PointFieldErrorClientComponent,\n PointFieldErrorServerComponent,\n PointFieldLabelClientComponent,\n PointFieldLabelServerComponent,\n PointFieldServerComponent,\n PointFieldServerProps,\n} from './fields/Point.js'\n\nexport type {\n RadioFieldClientComponent,\n RadioFieldClientProps,\n RadioFieldDescriptionClientComponent,\n RadioFieldDescriptionServerComponent,\n RadioFieldDiffClientComponent,\n RadioFieldDiffServerComponent,\n RadioFieldErrorClientComponent,\n RadioFieldErrorServerComponent,\n RadioFieldLabelClientComponent,\n RadioFieldLabelServerComponent,\n RadioFieldServerComponent,\n RadioFieldServerProps,\n} from './fields/Radio.js'\n\nexport type {\n RelationshipFieldClientComponent,\n RelationshipFieldClientProps,\n RelationshipFieldDescriptionClientComponent,\n RelationshipFieldDescriptionServerComponent,\n RelationshipFieldDiffClientComponent,\n RelationshipFieldDiffServerComponent,\n RelationshipFieldErrorClientComponent,\n RelationshipFieldErrorServerComponent,\n RelationshipFieldLabelClientComponent,\n RelationshipFieldLabelServerComponent,\n RelationshipFieldServerComponent,\n RelationshipFieldServerProps,\n} from './fields/Relationship.js'\n\nexport type {\n RichTextFieldClientComponent,\n RichTextFieldClientProps,\n RichTextFieldDescriptionClientComponent,\n RichTextFieldDescriptionServerComponent,\n RichTextFieldDiffClientComponent,\n RichTextFieldDiffServerComponent,\n RichTextFieldErrorClientComponent,\n RichTextFieldErrorServerComponent,\n RichTextFieldLabelClientComponent,\n RichTextFieldLabelServerComponent,\n RichTextFieldServerComponent,\n RichTextFieldServerProps,\n} from './fields/RichText.js'\n\nexport type {\n RowFieldClientComponent,\n RowFieldClientProps,\n RowFieldDescriptionClientComponent,\n RowFieldDescriptionServerComponent,\n RowFieldDiffClientComponent,\n RowFieldDiffServerComponent,\n RowFieldErrorClientComponent,\n RowFieldErrorServerComponent,\n RowFieldLabelClientComponent,\n RowFieldLabelServerComponent,\n RowFieldServerComponent,\n RowFieldServerProps,\n} from './fields/Row.js'\n\nexport type {\n SelectFieldClientComponent,\n SelectFieldClientProps,\n SelectFieldDescriptionClientComponent,\n SelectFieldDescriptionServerComponent,\n SelectFieldDiffClientComponent,\n SelectFieldDiffServerComponent,\n SelectFieldErrorClientComponent,\n SelectFieldErrorServerComponent,\n SelectFieldLabelClientComponent,\n SelectFieldLabelServerComponent,\n SelectFieldServerComponent,\n SelectFieldServerProps,\n} from './fields/Select.js'\n\nexport type {\n ClientTab,\n TabsFieldClientComponent,\n TabsFieldClientProps,\n TabsFieldDescriptionClientComponent,\n TabsFieldDescriptionServerComponent,\n TabsFieldDiffClientComponent,\n TabsFieldDiffServerComponent,\n TabsFieldErrorClientComponent,\n TabsFieldErrorServerComponent,\n TabsFieldLabelClientComponent,\n TabsFieldLabelServerComponent,\n TabsFieldServerComponent,\n TabsFieldServerProps,\n} from './fields/Tabs.js'\n\nexport type {\n TextFieldClientComponent,\n TextFieldClientProps,\n TextFieldDescriptionClientComponent,\n TextFieldDescriptionServerComponent,\n TextFieldDiffClientComponent,\n TextFieldDiffServerComponent,\n TextFieldErrorClientComponent,\n TextFieldErrorServerComponent,\n TextFieldLabelClientComponent,\n TextFieldLabelServerComponent,\n TextFieldServerComponent,\n TextFieldServerProps,\n} from './fields/Text.js'\n\nexport type {\n TextareaFieldClientComponent,\n TextareaFieldClientProps,\n TextareaFieldDescriptionClientComponent,\n TextareaFieldDescriptionServerComponent,\n TextareaFieldDiffClientComponent,\n TextareaFieldDiffServerComponent,\n TextareaFieldErrorClientComponent,\n TextareaFieldErrorServerComponent,\n TextareaFieldLabelClientComponent,\n TextareaFieldLabelServerComponent,\n TextareaFieldServerComponent,\n TextareaFieldServerProps,\n} from './fields/Textarea.js'\n\nexport type {\n UIFieldClientComponent,\n UIFieldClientProps,\n UIFieldDiffClientComponent,\n UIFieldDiffServerComponent,\n UIFieldServerComponent,\n UIFieldServerProps,\n} from './fields/UI.js'\n\nexport type {\n UploadFieldClientComponent,\n UploadFieldClientProps,\n UploadFieldDescriptionClientComponent,\n UploadFieldDescriptionServerComponent,\n UploadFieldDiffClientComponent,\n UploadFieldDiffServerComponent,\n UploadFieldErrorClientComponent,\n UploadFieldErrorServerComponent,\n UploadFieldLabelClientComponent,\n UploadFieldLabelServerComponent,\n UploadFieldServerComponent,\n UploadFieldServerProps,\n} from './fields/Upload.js'\n\nexport type {\n Description,\n DescriptionFunction,\n FieldDescriptionClientComponent,\n FieldDescriptionClientProps,\n FieldDescriptionServerComponent,\n FieldDescriptionServerProps,\n GenericDescriptionProps,\n StaticDescription,\n} from './forms/Description.js'\n\nexport type {\n BaseVersionField,\n DiffMethod,\n FieldDiffClientComponent,\n FieldDiffClientProps,\n FieldDiffServerComponent,\n FieldDiffServerProps,\n VersionField,\n VersionTab,\n} from './forms/Diff.js'\n\nexport type {\n BuildFormStateArgs,\n Data,\n FieldState as FormField,\n FieldStateWithoutComponents as FormFieldWithoutComponents,\n FilterOptionsResult,\n FormState,\n FormStateWithoutComponents,\n Row,\n}\n\nexport type {\n FieldErrorClientComponent,\n FieldErrorClientProps,\n FieldErrorServerComponent,\n FieldErrorServerProps,\n GenericErrorProps,\n} from './forms/Error.js'\n\nexport type {\n ClientComponentProps,\n ClientFieldBase,\n ClientFieldWithOptionalType,\n FieldClientComponent,\n FieldPaths,\n FieldServerComponent,\n ServerComponentProps,\n ServerFieldBase,\n} from './forms/Field.js'\n\nexport type {\n FieldLabelClientComponent,\n FieldLabelClientProps,\n FieldLabelServerComponent,\n FieldLabelServerProps,\n GenericLabelProps,\n SanitizedLabelProps,\n} from './forms/Label.js'\n\nexport type { RowLabel, RowLabelComponent } from './forms/RowLabel.js'\n\nexport type MappedServerComponent<TComponentClientProps extends JsonObject = JsonObject> = {\n Component?: React.ComponentType<TComponentClientProps>\n props?: Partial<any>\n RenderedComponent: React.ReactNode\n type: 'server'\n}\n\nexport type MappedClientComponent<TComponentClientProps extends JsonObject = JsonObject> = {\n Component?: React.ComponentType<TComponentClientProps>\n props?: Partial<TComponentClientProps>\n RenderedComponent?: React.ReactNode\n type: 'client'\n}\n\nexport type MappedEmptyComponent = {\n type: 'empty'\n}\n\nexport enum Action {\n RenderConfig = 'render-config',\n}\n\nexport type RenderEntityConfigArgs = {\n collectionSlug?: string\n data?: Data\n globalSlug?: string\n}\n\nexport type RenderRootConfigArgs = {}\n\nexport type RenderFieldConfigArgs = {\n collectionSlug?: string\n formState?: FormState\n globalSlug?: string\n schemaPath: string\n}\n\nexport type RenderConfigArgs = {\n action: Action.RenderConfig\n config: Promise<SanitizedConfig> | SanitizedConfig\n i18n: I18nClient\n importMap: ImportMap\n languageCode: AcceptedLanguages\n serverProps?: any\n} & (RenderEntityConfigArgs | RenderFieldConfigArgs | RenderRootConfigArgs)\n\nexport type PayloadServerAction = (\n args:\n | {\n [key: string]: any\n action: Action\n i18n: I18nClient\n }\n | RenderConfigArgs,\n) => Promise<string>\n\nexport type RenderedField = {\n Field: React.ReactNode\n indexPath?: string\n initialSchemaPath?: string\n /**\n * @deprecated\n * This is a legacy property that will be removed in v4.\n * Please use `fieldIsSidebar(field)` from `payload` instead.\n * Or check `field.admin.position === 'sidebar'` directly.\n */\n isSidebar: boolean\n path: string\n schemaPath: string\n type: FieldTypes\n}\n\nexport type FieldRow = {\n RowLabel?: React.ReactNode\n}\n\nexport type DocumentSlots = {\n BeforeDocumentControls?: React.ReactNode\n BeforeDocumentMeta?: React.ReactNode\n Description?: React.ReactNode\n EditMenuItems?: React.ReactNode\n LivePreview?: React.ReactNode\n PreviewButton?: React.ReactNode\n PublishButton?: React.ReactNode\n SaveButton?: React.ReactNode\n SaveDraftButton?: React.ReactNode\n Status?: React.ReactNode\n UnpublishButton?: React.ReactNode\n Upload?: React.ReactNode\n UploadControls?: React.ReactNode\n UploadFilePreview?: React.ReactNode\n}\n\nexport type {\n BuildTableStateArgs,\n DefaultServerFunctionArgs,\n InitReqResult,\n ListQuery,\n ServerFunction,\n ServerFunctionArgs,\n ServerFunctionClient,\n ServerFunctionClientArgs,\n ServerFunctionConfig,\n ServerFunctionHandler,\n SlugifyServerFunctionArgs,\n} from './functions/index.js'\n\nexport type { LanguageOptions } from './LanguageOptions.js'\n\nexport type { RichTextAdapter, RichTextAdapterProvider, RichTextHooks } from './RichText.js'\n\nexport { type WidgetServerProps } from './views/dashboard.js'\n\nexport type {\n BeforeDocumentControlsClientProps,\n BeforeDocumentControlsServerProps,\n BeforeDocumentControlsServerPropsOnly,\n DocumentSubViewTypes,\n DocumentTabClientProps,\n /**\n * @deprecated\n * The `DocumentTabComponent` type is deprecated and will be removed in the next major version.\n * Use `DocumentTabServerProps`or `DocumentTabClientProps` instead.\n */\n DocumentTabComponent,\n DocumentTabCondition,\n DocumentTabConfig,\n /**\n * @deprecated\n * The `DocumentTabProps` type is deprecated and will be removed in the next major version.\n * Use `DocumentTabServerProps` instead.\n */\n DocumentTabServerProps as DocumentTabProps,\n DocumentTabServerProps,\n DocumentTabServerPropsOnly,\n /**\n * @deprecated\n * The `ClientSideEditViewProps` type is deprecated and will be removed in the next major version.\n * Use `DocumentViewClientProps` instead.\n */\n DocumentViewClientProps as ClientSideEditViewProps,\n DocumentViewClientProps,\n /**\n * @deprecated\n * The `ServerSideEditViewProps` is deprecated and will be removed in the next major version.\n * Use `DocumentViewServerProps` instead.\n */\n DocumentViewServerProps as ServerSideEditViewProps,\n DocumentViewServerProps,\n DocumentViewServerPropsOnly,\n EditViewProps,\n RenderDocumentVersionsProperties,\n} from './views/document.js'\n\nexport type { RelatedDocumentsGrouped } from './views/hierarchyList.js'\n\nexport type {\n AdminViewClientProps,\n /**\n * @deprecated\n * The `AdminViewComponent` type is deprecated and will be removed in the next major version.\n * Type your component props directly instead.\n */\n AdminViewComponent,\n AdminViewConfig,\n /**\n * @deprecated\n * The `AdminViewProps` type is deprecated and will be removed in the next major version.\n * Use `AdminViewServerProps` instead.\n */\n AdminViewServerProps as AdminViewProps,\n AdminViewServerProps,\n AdminViewServerPropsOnly,\n InitPageResult,\n ServerPropsFromView,\n ViewDescriptionClientProps,\n ViewDescriptionServerProps,\n ViewDescriptionServerPropsOnly,\n ViewTypes,\n VisibleEntities,\n} from './views/index.js'\n\nexport type {\n AfterListClientProps,\n AfterListServerProps,\n AfterListServerPropsOnly,\n AfterListTableClientProps,\n AfterListTableServerProps,\n AfterListTableServerPropsOnly,\n BeforeListClientProps,\n BeforeListServerProps,\n BeforeListServerPropsOnly,\n BeforeListTableClientProps,\n BeforeListTableServerProps,\n BeforeListTableServerPropsOnly,\n HierarchyViewData,\n ListViewClientProps,\n ListViewServerProps,\n ListViewServerPropsOnly,\n ListViewSlots,\n ListViewSlotSharedClientProps,\n NoResultsClientProps,\n NoResultsServerProps,\n NoResultsServerPropsOnly,\n} from './views/list.js'\n\ntype SchemaPath = {} & string\nexport type FieldSchemaMap = Map<\n SchemaPath,\n | {\n fields: Field[]\n }\n | Block\n | Field\n | Tab\n>\n\nexport type ClientFieldSchemaMap = Map<\n SchemaPath,\n | {\n fields: ClientField[]\n }\n | ClientBlock\n | ClientField\n | ClientTab\n>\n\nexport type DocumentEvent = {\n doc?: TypeWithID\n drawerSlug?: string\n entitySlug: string\n id?: number | string\n operation: 'create' | 'delete' | 'update'\n updatedAt: string\n}\n"],"names":["Action"],"mappings":"AAmgBA,OAAO,IAAA,AAAKA,gCAAAA;;WAAAA;MAEX"}
@@ -1,6 +1,6 @@
1
1
  import type { ClientTranslationsObject } from '@payloadcms/translations';
2
2
  import type { SanitizedPermissions } from '../../auth/index.js';
3
- import type { ImportMap } from '../../bin/generateImportMap/index.js';
3
+ import type { ImportMap } from '../../cli/commands/generateImportMap/generateImportMap.js';
4
4
  import type { SanitizedCollectionConfig } from '../../collections/config/types.js';
5
5
  import type { ClientConfig } from '../../config/client.js';
6
6
  import type { CustomComponent, Locale, MetaConfig, PayloadComponent, SanitizedConfig, ServerProps } from '../../config/types.js';
@@ -10,7 +10,7 @@ import type { LanguageOptions } from '../LanguageOptions.js';
10
10
  import type { Data, StaticDescription } from '../types.js';
11
11
  import type { DocumentSubViewTypes } from './document.js';
12
12
  export type AdminViewConfig = {
13
- Component: PayloadComponent;
13
+ Component: PayloadComponent<AdminViewServerProps>;
14
14
  /** Whether the path should be matched exactly or as a prefix */
15
15
  exact?: boolean;
16
16
  meta?: MetaConfig;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/admin/views/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/admin/views/index.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/admin/views/index.ts"],"sourcesContent":["import type { ClientTranslationsObject } from '@payloadcms/translations'\n\nimport type { SanitizedPermissions } from '../../auth/index.js'\nimport type { ImportMap } from '../../bin/generateImportMap/index.js'\nimport type { SanitizedCollectionConfig } from '../../collections/config/types.js'\nimport type { ClientConfig } from '../../config/client.js'\nimport type {\n CustomComponent,\n Locale,\n MetaConfig,\n PayloadComponent,\n SanitizedConfig,\n ServerProps,\n} from '../../config/types.js'\nimport type { SanitizedGlobalConfig } from '../../globals/config/types.js'\nimport type { PayloadRequest } from '../../types/index.js'\nimport type { LanguageOptions } from '../LanguageOptions.js'\nimport type { Data, StaticDescription } from '../types.js'\nimport type { DocumentSubViewTypes } from './document.js'\n\nexport type AdminViewConfig = {\n Component: PayloadComponent\n /** Whether the path should be matched exactly or as a prefix */\n exact?: boolean\n meta?: MetaConfig\n /**\n * Any valid URL path or array of paths that [`path-to-regexp`](https://www.npmjs.com/package/path-to-regex) understands. Must begin with a forward slash (`/`).\n */\n path?: `/${string}`\n sensitive?: boolean\n strict?: boolean\n}\n\nexport type AdminViewClientProps = {\n clientConfig: ClientConfig\n collectionSlug?: SanitizedCollectionConfig['slug']\n docID?: number | string\n documentSubViewType?: DocumentSubViewTypes\n folderID?: number | string\n globalSlug?: SanitizedGlobalConfig['slug']\n viewType: ViewTypes\n}\n\nexport type AdminViewServerPropsOnly = {\n readonly clientConfig: ClientConfig\n readonly collectionConfig?: SanitizedCollectionConfig\n readonly disableActions?: boolean\n /**\n * @todo remove `docID` here as it is already contained in `initPageResult`\n */\n readonly docID?: number | string\n readonly globalConfig?: SanitizedGlobalConfig\n readonly importMap: ImportMap\n readonly initialData?: Data\n readonly initPageResult: InitPageResult\n readonly params?: { [key: string]: string | string[] | undefined }\n readonly redirectAfterCreate?: boolean\n readonly redirectAfterDelete?: boolean\n readonly redirectAfterDuplicate?: boolean\n readonly redirectAfterRestore?: boolean\n readonly viewActions?: CustomComponent[]\n} & ServerProps\n\nexport type AdminViewServerProps = AdminViewClientProps & AdminViewServerPropsOnly\n\n/**\n * @deprecated This should be removed in favor of direct props\n */\nexport type AdminViewComponent = PayloadComponent<AdminViewServerProps>\n\nexport type VisibleEntities = {\n collections: SanitizedCollectionConfig['slug'][]\n globals: SanitizedGlobalConfig['slug'][]\n}\n\nexport type InitPageResult = {\n collectionConfig?: SanitizedCollectionConfig\n cookies: Map<string, string>\n docID?: number | string\n globalConfig?: SanitizedGlobalConfig\n languageOptions: LanguageOptions\n locale?: Locale\n permissions: SanitizedPermissions\n redirectTo?: string\n req: PayloadRequest\n translations: ClientTranslationsObject\n visibleEntities: VisibleEntities\n}\n\n/**\n * @todo This should be renamed to `ViewType` (singular)\n */\nexport type ViewTypes =\n | 'account'\n | 'createFirstUser'\n | 'dashboard'\n | 'document'\n | 'hierarchy'\n | 'list'\n | 'reset'\n | 'trash'\n | 'verify'\n | 'version'\n | ({} & string)\n\nexport type ServerPropsFromView = {\n collectionConfig?: SanitizedConfig['collections'][number]\n globalConfig?: SanitizedConfig['globals'][number]\n viewActions: CustomComponent[]\n}\n\n// Description\nexport type ViewDescriptionClientProps = {\n collectionSlug?: SanitizedCollectionConfig['slug']\n description: StaticDescription\n}\n\nexport type ViewDescriptionServerPropsOnly = {} & ServerProps\n\nexport type ViewDescriptionServerProps = ViewDescriptionClientProps & ViewDescriptionServerPropsOnly\n"],"names":[],"mappings":"AAuHA,WAAoG"}
1
+ {"version":3,"sources":["../../../src/admin/views/index.ts"],"sourcesContent":["import type { ClientTranslationsObject } from '@payloadcms/translations'\n\nimport type { SanitizedPermissions } from '../../auth/index.js'\nimport type { ImportMap } from '../../cli/commands/generateImportMap/generateImportMap.js'\nimport type { SanitizedCollectionConfig } from '../../collections/config/types.js'\nimport type { ClientConfig } from '../../config/client.js'\nimport type {\n CustomComponent,\n Locale,\n MetaConfig,\n PayloadComponent,\n SanitizedConfig,\n ServerProps,\n} from '../../config/types.js'\nimport type { SanitizedGlobalConfig } from '../../globals/config/types.js'\nimport type { PayloadRequest } from '../../types/index.js'\nimport type { LanguageOptions } from '../LanguageOptions.js'\nimport type { Data, StaticDescription } from '../types.js'\nimport type { DocumentSubViewTypes } from './document.js'\n\nexport type AdminViewConfig = {\n Component: PayloadComponent<AdminViewServerProps>\n /** Whether the path should be matched exactly or as a prefix */\n exact?: boolean\n meta?: MetaConfig\n /**\n * Any valid URL path or array of paths that [`path-to-regexp`](https://www.npmjs.com/package/path-to-regex) understands. Must begin with a forward slash (`/`).\n */\n path?: `/${string}`\n sensitive?: boolean\n strict?: boolean\n}\n\nexport type AdminViewClientProps = {\n clientConfig: ClientConfig\n collectionSlug?: SanitizedCollectionConfig['slug']\n docID?: number | string\n documentSubViewType?: DocumentSubViewTypes\n folderID?: number | string\n globalSlug?: SanitizedGlobalConfig['slug']\n viewType: ViewTypes\n}\n\nexport type AdminViewServerPropsOnly = {\n readonly clientConfig: ClientConfig\n readonly collectionConfig?: SanitizedCollectionConfig\n readonly disableActions?: boolean\n /**\n * @todo remove `docID` here as it is already contained in `initPageResult`\n */\n readonly docID?: number | string\n readonly globalConfig?: SanitizedGlobalConfig\n readonly importMap: ImportMap\n readonly initialData?: Data\n readonly initPageResult: InitPageResult\n readonly params?: { [key: string]: string | string[] | undefined }\n readonly redirectAfterCreate?: boolean\n readonly redirectAfterDelete?: boolean\n readonly redirectAfterDuplicate?: boolean\n readonly redirectAfterRestore?: boolean\n readonly viewActions?: CustomComponent[]\n} & ServerProps\n\nexport type AdminViewServerProps = AdminViewClientProps & AdminViewServerPropsOnly\n\n/**\n * @deprecated This should be removed in favor of direct props\n */\nexport type AdminViewComponent = PayloadComponent<AdminViewServerProps>\n\nexport type VisibleEntities = {\n collections: SanitizedCollectionConfig['slug'][]\n globals: SanitizedGlobalConfig['slug'][]\n}\n\nexport type InitPageResult = {\n collectionConfig?: SanitizedCollectionConfig\n cookies: Map<string, string>\n docID?: number | string\n globalConfig?: SanitizedGlobalConfig\n languageOptions: LanguageOptions\n locale?: Locale\n permissions: SanitizedPermissions\n redirectTo?: string\n req: PayloadRequest\n translations: ClientTranslationsObject\n visibleEntities: VisibleEntities\n}\n\n/**\n * @todo This should be renamed to `ViewType` (singular)\n */\nexport type ViewTypes =\n | 'account'\n | 'createFirstUser'\n | 'dashboard'\n | 'document'\n | 'hierarchy'\n | 'list'\n | 'reset'\n | 'trash'\n | 'verify'\n | 'version'\n | ({} & string)\n\nexport type ServerPropsFromView = {\n collectionConfig?: SanitizedConfig['collections'][number]\n globalConfig?: SanitizedConfig['globals'][number]\n viewActions: CustomComponent[]\n}\n\n// Description\nexport type ViewDescriptionClientProps = {\n collectionSlug?: SanitizedCollectionConfig['slug']\n description: StaticDescription\n}\n\nexport type ViewDescriptionServerPropsOnly = {} & ServerProps\n\nexport type ViewDescriptionServerProps = ViewDescriptionClientProps & ViewDescriptionServerPropsOnly\n"],"names":[],"mappings":"AAuHA,WAAoG"}
@@ -1 +1 @@
1
- {"version":3,"file":"apiKey.d.ts","sourceRoot":"","sources":["../../../src/auth/baseFields/apiKey.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,KAAK,EAAa,SAAS,EAAE,MAAM,8BAA8B,CAAA;AAO9F,KAAK,2BAA2B,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,CAAA;AAChF,KAAK,uBAAuB,GAAG,IAAI,CACjC,OAAO,CAAC,SAAS,CAAC,EAClB,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,UAAU,CACjE,CAAA;AAED,eAAO,MAAM,kBAAkB,gFAK5B;IACD,WAAW,CAAC,EAAE,uBAAuB,CAAA;IACrC,gBAAgB,CAAC,EAAE,uBAAuB,CAAA;IAC1C,iBAAiB,CAAC,EAAE,2BAA2B,CAAA;IAC/C,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B,KAAQ,KAAK,EAwEb,CAAA"}
1
+ {"version":3,"file":"apiKey.d.ts","sourceRoot":"","sources":["../../../src/auth/baseFields/apiKey.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,KAAK,EAAa,SAAS,EAAE,MAAM,8BAA8B,CAAA;AAqB9F,KAAK,2BAA2B,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,CAAA;AAChF,KAAK,uBAAuB,GAAG,IAAI,CACjC,OAAO,CAAC,SAAS,CAAC,EAClB,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,UAAU,CACjE,CAAA;AAED,eAAO,MAAM,kBAAkB,gFAK5B;IACD,WAAW,CAAC,EAAE,uBAAuB,CAAA;IACrC,gBAAgB,CAAC,EAAE,uBAAuB,CAAA;IAC1C,iBAAiB,CAAC,EAAE,2BAA2B,CAAA;IAC/C,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B,KAAQ,KAAK,EAwEb,CAAA"}
@@ -1,6 +1,21 @@
1
1
  import crypto from 'crypto';
2
2
  const encryptKey = ({ req, value })=>value ? req.payload.encrypt(value) : null;
3
- const decryptKey = ({ req, value })=>value ? req.payload.decrypt(value) : undefined;
3
+ const decryptKey = ({ req, value })=>{
4
+ if (!value) {
5
+ return undefined;
6
+ }
7
+ try {
8
+ return req.payload.decrypt(value);
9
+ } catch {
10
+ // The value was encrypted under a secret no longer in the keyring (e.g. a
11
+ // previousSecret was removed before rotateSecret re-keyed this row). Mask the
12
+ // field (return null, since an undefined afterRead result is treated as "no
13
+ // change" and would leak the ciphertext) rather than failing the whole
14
+ // document read; API key auth is unaffected (it matches the apiKeyIndex), and
15
+ // running rotateSecret restores the displayed value.
16
+ return null;
17
+ }
18
+ };
4
19
  export const createAPIKeyFields = ({ apiKeyField, apiKeyIndexField, enableAPIKeyField, includeEnableAPIKey = true } = {})=>{
5
20
  const fields = [];
6
21
  if (includeEnableAPIKey) {
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/auth/baseFields/apiKey.ts"],"sourcesContent":["import crypto from 'crypto'\n\nimport type { CheckboxField, Field, FieldHook, TextField } from '../../fields/config/types.js'\n\nconst encryptKey: FieldHook = ({ req, value }) =>\n value ? req.payload.encrypt(value as string) : null\nconst decryptKey: FieldHook = ({ req, value }) =>\n value ? req.payload.decrypt(value as string) : undefined\n\ntype APIKeyCheckboxFieldOverride = Omit<Partial<CheckboxField>, 'name' | 'type'>\ntype APIKeyTextFieldOverride = Omit<\n Partial<TextField>,\n 'hasMany' | 'maxRows' | 'minRows' | 'name' | 'type' | 'validate'\n>\n\nexport const createAPIKeyFields = ({\n apiKeyField,\n apiKeyIndexField,\n enableAPIKeyField,\n includeEnableAPIKey = true,\n}: {\n apiKeyField?: APIKeyTextFieldOverride\n apiKeyIndexField?: APIKeyTextFieldOverride\n enableAPIKeyField?: APIKeyCheckboxFieldOverride\n includeEnableAPIKey?: boolean\n} = {}): Field[] => {\n const fields: Field[] = []\n\n if (includeEnableAPIKey) {\n fields.push({\n name: 'enableAPIKey',\n type: 'checkbox',\n ...enableAPIKeyField,\n admin: {\n components: {\n Field: false,\n },\n ...enableAPIKeyField?.admin,\n },\n label: enableAPIKeyField?.label ?? (({ t }) => t('authentication:enableAPIKey')),\n })\n }\n\n fields.push(\n {\n name: 'apiKey',\n type: 'text',\n ...apiKeyField,\n admin: {\n components: {\n Field: false,\n },\n ...apiKeyField?.admin,\n },\n hooks: {\n afterRead: [decryptKey],\n beforeChange: [encryptKey],\n ...apiKeyField?.hooks,\n },\n label: apiKeyField?.label ?? (({ t }) => t('authentication:apiKey')),\n },\n {\n name: 'apiKeyIndex',\n type: 'text',\n ...apiKeyIndexField,\n admin: {\n disabled: true,\n ...apiKeyIndexField?.admin,\n },\n hidden: apiKeyIndexField?.hidden ?? true,\n hooks: {\n beforeValidate: [\n ({ data, req, value }) => {\n if (data?.apiKey === false || data?.apiKey === null || data?.apiKey === '') {\n return null\n }\n if (\n includeEnableAPIKey &&\n (data?.enableAPIKey === false || data?.enableAPIKey === null)\n ) {\n return null\n }\n if (data?.apiKey) {\n return crypto\n .createHmac('sha256', req.payload.secret)\n .update(data.apiKey as string)\n .digest('hex')\n }\n return value\n },\n ],\n ...apiKeyIndexField?.hooks,\n },\n },\n )\n\n return fields\n}\n"],"names":["crypto","encryptKey","req","value","payload","encrypt","decryptKey","decrypt","undefined","createAPIKeyFields","apiKeyField","apiKeyIndexField","enableAPIKeyField","includeEnableAPIKey","fields","push","name","type","admin","components","Field","label","t","hooks","afterRead","beforeChange","disabled","hidden","beforeValidate","data","apiKey","enableAPIKey","createHmac","secret","update","digest"],"mappings":"AAAA,OAAOA,YAAY,SAAQ;AAI3B,MAAMC,aAAwB,CAAC,EAAEC,GAAG,EAAEC,KAAK,EAAE,GAC3CA,QAAQD,IAAIE,OAAO,CAACC,OAAO,CAACF,SAAmB;AACjD,MAAMG,aAAwB,CAAC,EAAEJ,GAAG,EAAEC,KAAK,EAAE,GAC3CA,QAAQD,IAAIE,OAAO,CAACG,OAAO,CAACJ,SAAmBK;AAQjD,OAAO,MAAMC,qBAAqB,CAAC,EACjCC,WAAW,EACXC,gBAAgB,EAChBC,iBAAiB,EACjBC,sBAAsB,IAAI,EAM3B,GAAG,CAAC,CAAC;IACJ,MAAMC,SAAkB,EAAE;IAE1B,IAAID,qBAAqB;QACvBC,OAAOC,IAAI,CAAC;YACVC,MAAM;YACNC,MAAM;YACN,GAAGL,iBAAiB;YACpBM,OAAO;gBACLC,YAAY;oBACVC,OAAO;gBACT;gBACA,GAAGR,mBAAmBM,KAAK;YAC7B;YACAG,OAAOT,mBAAmBS,SAAU,CAAA,CAAC,EAAEC,CAAC,EAAE,GAAKA,EAAE,8BAA6B;QAChF;IACF;IAEAR,OAAOC,IAAI,CACT;QACEC,MAAM;QACNC,MAAM;QACN,GAAGP,WAAW;QACdQ,OAAO;YACLC,YAAY;gBACVC,OAAO;YACT;YACA,GAAGV,aAAaQ,KAAK;QACvB;QACAK,OAAO;YACLC,WAAW;gBAAClB;aAAW;YACvBmB,cAAc;gBAACxB;aAAW;YAC1B,GAAGS,aAAaa,KAAK;QACvB;QACAF,OAAOX,aAAaW,SAAU,CAAA,CAAC,EAAEC,CAAC,EAAE,GAAKA,EAAE,wBAAuB;IACpE,GACA;QACEN,MAAM;QACNC,MAAM;QACN,GAAGN,gBAAgB;QACnBO,OAAO;YACLQ,UAAU;YACV,GAAGf,kBAAkBO,KAAK;QAC5B;QACAS,QAAQhB,kBAAkBgB,UAAU;QACpCJ,OAAO;YACLK,gBAAgB;gBACd,CAAC,EAAEC,IAAI,EAAE3B,GAAG,EAAEC,KAAK,EAAE;oBACnB,IAAI0B,MAAMC,WAAW,SAASD,MAAMC,WAAW,QAAQD,MAAMC,WAAW,IAAI;wBAC1E,OAAO;oBACT;oBACA,IACEjB,uBACCgB,CAAAA,MAAME,iBAAiB,SAASF,MAAME,iBAAiB,IAAG,GAC3D;wBACA,OAAO;oBACT;oBACA,IAAIF,MAAMC,QAAQ;wBAChB,OAAO9B,OACJgC,UAAU,CAAC,UAAU9B,IAAIE,OAAO,CAAC6B,MAAM,EACvCC,MAAM,CAACL,KAAKC,MAAM,EAClBK,MAAM,CAAC;oBACZ;oBACA,OAAOhC;gBACT;aACD;YACD,GAAGQ,kBAAkBY,KAAK;QAC5B;IACF;IAGF,OAAOT;AACT,EAAC"}
1
+ {"version":3,"sources":["../../../src/auth/baseFields/apiKey.ts"],"sourcesContent":["import crypto from 'crypto'\n\nimport type { CheckboxField, Field, FieldHook, TextField } from '../../fields/config/types.js'\n\nconst encryptKey: FieldHook = ({ req, value }) =>\n value ? req.payload.encrypt(value as string) : null\nconst decryptKey: FieldHook = ({ req, value }) => {\n if (!value) {\n return undefined\n }\n try {\n return req.payload.decrypt(value as string)\n } catch {\n // The value was encrypted under a secret no longer in the keyring (e.g. a\n // previousSecret was removed before rotateSecret re-keyed this row). Mask the\n // field (return null, since an undefined afterRead result is treated as \"no\n // change\" and would leak the ciphertext) rather than failing the whole\n // document read; API key auth is unaffected (it matches the apiKeyIndex), and\n // running rotateSecret restores the displayed value.\n return null\n }\n}\n\ntype APIKeyCheckboxFieldOverride = Omit<Partial<CheckboxField>, 'name' | 'type'>\ntype APIKeyTextFieldOverride = Omit<\n Partial<TextField>,\n 'hasMany' | 'maxRows' | 'minRows' | 'name' | 'type' | 'validate'\n>\n\nexport const createAPIKeyFields = ({\n apiKeyField,\n apiKeyIndexField,\n enableAPIKeyField,\n includeEnableAPIKey = true,\n}: {\n apiKeyField?: APIKeyTextFieldOverride\n apiKeyIndexField?: APIKeyTextFieldOverride\n enableAPIKeyField?: APIKeyCheckboxFieldOverride\n includeEnableAPIKey?: boolean\n} = {}): Field[] => {\n const fields: Field[] = []\n\n if (includeEnableAPIKey) {\n fields.push({\n name: 'enableAPIKey',\n type: 'checkbox',\n ...enableAPIKeyField,\n admin: {\n components: {\n Field: false,\n },\n ...enableAPIKeyField?.admin,\n },\n label: enableAPIKeyField?.label ?? (({ t }) => t('authentication:enableAPIKey')),\n })\n }\n\n fields.push(\n {\n name: 'apiKey',\n type: 'text',\n ...apiKeyField,\n admin: {\n components: {\n Field: false,\n },\n ...apiKeyField?.admin,\n },\n hooks: {\n afterRead: [decryptKey],\n beforeChange: [encryptKey],\n ...apiKeyField?.hooks,\n },\n label: apiKeyField?.label ?? (({ t }) => t('authentication:apiKey')),\n },\n {\n name: 'apiKeyIndex',\n type: 'text',\n ...apiKeyIndexField,\n admin: {\n disabled: true,\n ...apiKeyIndexField?.admin,\n },\n hidden: apiKeyIndexField?.hidden ?? true,\n hooks: {\n beforeValidate: [\n ({ data, req, value }) => {\n if (data?.apiKey === false || data?.apiKey === null || data?.apiKey === '') {\n return null\n }\n if (\n includeEnableAPIKey &&\n (data?.enableAPIKey === false || data?.enableAPIKey === null)\n ) {\n return null\n }\n if (data?.apiKey) {\n return crypto\n .createHmac('sha256', req.payload.secret)\n .update(data.apiKey as string)\n .digest('hex')\n }\n return value\n },\n ],\n ...apiKeyIndexField?.hooks,\n },\n },\n )\n\n return fields\n}\n"],"names":["crypto","encryptKey","req","value","payload","encrypt","decryptKey","undefined","decrypt","createAPIKeyFields","apiKeyField","apiKeyIndexField","enableAPIKeyField","includeEnableAPIKey","fields","push","name","type","admin","components","Field","label","t","hooks","afterRead","beforeChange","disabled","hidden","beforeValidate","data","apiKey","enableAPIKey","createHmac","secret","update","digest"],"mappings":"AAAA,OAAOA,YAAY,SAAQ;AAI3B,MAAMC,aAAwB,CAAC,EAAEC,GAAG,EAAEC,KAAK,EAAE,GAC3CA,QAAQD,IAAIE,OAAO,CAACC,OAAO,CAACF,SAAmB;AACjD,MAAMG,aAAwB,CAAC,EAAEJ,GAAG,EAAEC,KAAK,EAAE;IAC3C,IAAI,CAACA,OAAO;QACV,OAAOI;IACT;IACA,IAAI;QACF,OAAOL,IAAIE,OAAO,CAACI,OAAO,CAACL;IAC7B,EAAE,OAAM;QACN,0EAA0E;QAC1E,8EAA8E;QAC9E,4EAA4E;QAC5E,uEAAuE;QACvE,8EAA8E;QAC9E,qDAAqD;QACrD,OAAO;IACT;AACF;AAQA,OAAO,MAAMM,qBAAqB,CAAC,EACjCC,WAAW,EACXC,gBAAgB,EAChBC,iBAAiB,EACjBC,sBAAsB,IAAI,EAM3B,GAAG,CAAC,CAAC;IACJ,MAAMC,SAAkB,EAAE;IAE1B,IAAID,qBAAqB;QACvBC,OAAOC,IAAI,CAAC;YACVC,MAAM;YACNC,MAAM;YACN,GAAGL,iBAAiB;YACpBM,OAAO;gBACLC,YAAY;oBACVC,OAAO;gBACT;gBACA,GAAGR,mBAAmBM,KAAK;YAC7B;YACAG,OAAOT,mBAAmBS,SAAU,CAAA,CAAC,EAAEC,CAAC,EAAE,GAAKA,EAAE,8BAA6B;QAChF;IACF;IAEAR,OAAOC,IAAI,CACT;QACEC,MAAM;QACNC,MAAM;QACN,GAAGP,WAAW;QACdQ,OAAO;YACLC,YAAY;gBACVC,OAAO;YACT;YACA,GAAGV,aAAaQ,KAAK;QACvB;QACAK,OAAO;YACLC,WAAW;gBAAClB;aAAW;YACvBmB,cAAc;gBAACxB;aAAW;YAC1B,GAAGS,aAAaa,KAAK;QACvB;QACAF,OAAOX,aAAaW,SAAU,CAAA,CAAC,EAAEC,CAAC,EAAE,GAAKA,EAAE,wBAAuB;IACpE,GACA;QACEN,MAAM;QACNC,MAAM;QACN,GAAGN,gBAAgB;QACnBO,OAAO;YACLQ,UAAU;YACV,GAAGf,kBAAkBO,KAAK;QAC5B;QACAS,QAAQhB,kBAAkBgB,UAAU;QACpCJ,OAAO;YACLK,gBAAgB;gBACd,CAAC,EAAEC,IAAI,EAAE3B,GAAG,EAAEC,KAAK,EAAE;oBACnB,IAAI0B,MAAMC,WAAW,SAASD,MAAMC,WAAW,QAAQD,MAAMC,WAAW,IAAI;wBAC1E,OAAO;oBACT;oBACA,IACEjB,uBACCgB,CAAAA,MAAME,iBAAiB,SAASF,MAAME,iBAAiB,IAAG,GAC3D;wBACA,OAAO;oBACT;oBACA,IAAIF,MAAMC,QAAQ;wBAChB,OAAO9B,OACJgC,UAAU,CAAC,UAAU9B,IAAIE,OAAO,CAAC6B,MAAM,EACvCC,MAAM,CAACL,KAAKC,MAAM,EAClBK,MAAM,CAAC;oBACZ;oBACA,OAAOhC;gBACT;aACD;YACD,GAAGQ,kBAAkBY,KAAK;QAC5B;IACF;IAGF,OAAOT;AACT,EAAC"}
@@ -1,3 +1,74 @@
1
- export declare function encrypt(text: string): string;
2
- export declare function decrypt(hash: string): string;
1
+ /**
2
+ * A single secret in the keyring, with its derived keys precomputed.
3
+ */
4
+ export type EncryptionKey = {
5
+ /** One-way fingerprint of `v1Key` (16 hex chars), stored in the v1 envelope. */
6
+ keyId: string;
7
+ /** Legacy 32-char key for aes-256-ctr and the apiKey HMAC index. */
8
+ legacyKey: string;
9
+ /** The raw `PAYLOAD_SECRET` string. */
10
+ secret: string;
11
+ /** True 32-byte key (HKDF) for the aes-256-gcm v1 envelope. */
12
+ v1Key: Buffer;
13
+ };
14
+ /**
15
+ * The set of secrets Payload accepts. `active` is used for all writes; every
16
+ * entry (active + `previousSecrets`) is accepted for reads.
17
+ */
18
+ export type EncryptionKeyring = {
19
+ /** Entry used for all new writes (the current `PAYLOAD_SECRET`). */
20
+ active: EncryptionKey;
21
+ all: EncryptionKey[];
22
+ /** keyId -> entry, for O(1) v1 key selection. */
23
+ byId: Record<string, EncryptionKey>;
24
+ };
25
+ type CryptoContext = {
26
+ encryptionKeyring: EncryptionKeyring;
27
+ secret: string;
28
+ };
29
+ /**
30
+ * Legacy key derivation (pre-v1 aes-256-ctr values and the apiKey HMAC index).
31
+ * Kept in sync with `BasePayload.secret`.
32
+ */
33
+ export declare const deriveSecretKey: (secret: string) => string;
34
+ /**
35
+ * v1 key derivation: a true 32-byte key via HKDF, correcting the reduced
36
+ * effective entropy of the legacy derivation.
37
+ */
38
+ export declare const deriveKeyV1: (secret: string) => Buffer;
39
+ /** Non-secret fingerprint of a v1 key, used to select the key on decrypt. */
40
+ export declare const keyIdFor: (v1Key: Buffer) => string;
41
+ export declare const buildEncryptionKey: (secret: string) => EncryptionKey;
42
+ /**
43
+ * Builds the keyring from the active secret followed by any previous secrets.
44
+ * The first entry is the active (writing) key.
45
+ */
46
+ export declare const buildEncryptionKeyring: (secrets: string[]) => EncryptionKeyring;
47
+ /**
48
+ * Encrypts `text` under the active secret using the versioned aes-256-gcm
49
+ * envelope `v1:<keyId>:<iv>:<authTag>:<ciphertext>`. Pass `options.secret` (the
50
+ * raw `PAYLOAD_SECRET`) to encrypt under a specific secret instead.
51
+ */
52
+ export declare function encrypt(this: CryptoContext, text: string, options?: {
53
+ secret?: string;
54
+ }): string;
55
+ /**
56
+ * Decrypts a value produced by {@link encrypt}. Dispatches on format: v1
57
+ * envelopes are authenticated (aes-256-gcm) and select their key by keyId from
58
+ * the keyring; pre-v1 values fall back to aes-256-ctr. Pass `options.secret` to
59
+ * decrypt under a specific secret (e.g. to read data encrypted under a previous
60
+ * secret during a rotation).
61
+ */
62
+ export declare function decrypt(this: CryptoContext, hash: string, options?: {
63
+ secret?: string;
64
+ }): string;
65
+ /**
66
+ * Re-encrypts a value that was encrypted under a previous secret: decrypts it
67
+ * with `options.oldSecret`, then re-encrypts it with the active secret. Also
68
+ * upgrades a legacy aes-256-ctr value to the v1 envelope.
69
+ */
70
+ export declare function reencrypt(this: CryptoContext, hash: string, options: {
71
+ oldSecret: string;
72
+ }): string;
73
+ export {};
3
74
  //# sourceMappingURL=crypto.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"crypto.d.ts","sourceRoot":"","sources":["../../src/auth/crypto.ts"],"names":[],"mappings":"AAIA,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAU5C;AAED,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAS5C"}
1
+ {"version":3,"file":"crypto.d.ts","sourceRoot":"","sources":["../../src/auth/crypto.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B,gFAAgF;IAChF,KAAK,EAAE,MAAM,CAAA;IACb,oEAAoE;IACpE,SAAS,EAAE,MAAM,CAAA;IACjB,uCAAuC;IACvC,MAAM,EAAE,MAAM,CAAA;IACd,+DAA+D;IAC/D,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AAED;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,oEAAoE;IACpE,MAAM,EAAE,aAAa,CAAA;IACrB,GAAG,EAAE,aAAa,EAAE,CAAA;IACpB,iDAAiD;IACjD,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CAAA;CACpC,CAAA;AAED,KAAK,aAAa,GAAG;IACnB,iBAAiB,EAAE,iBAAiB,CAAA;IACpC,MAAM,EAAE,MAAM,CAAA;CACf,CAAA;AAMD;;;GAGG;AACH,eAAO,MAAM,eAAe,WAAY,MAAM,KAAG,MACsB,CAAA;AAEvE;;;GAGG;AACH,eAAO,MAAM,WAAW,WAAY,MAAM,KAAG,MACgC,CAAA;AAE7E,6EAA6E;AAC7E,eAAO,MAAM,QAAQ,UAAW,MAAM,KAAG,MAC6B,CAAA;AAEtE,eAAO,MAAM,kBAAkB,WAAY,MAAM,KAAG,aAQnD,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,sBAAsB,YAAa,MAAM,EAAE,KAAG,iBAU1D,CAAA;AAED;;;;GAIG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,MAAM,CAUhG;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,MAAM,CAuChG;AAED;;;;GAIG;AACH,wBAAgB,SAAS,CACvB,IAAI,EAAE,aAAa,EACnB,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE;IAAE,SAAS,EAAE,MAAM,CAAA;CAAE,GAC7B,MAAM,CAGR"}
@@ -1,21 +1,98 @@
1
1
  import crypto from 'crypto';
2
- const algorithm = 'aes-256-ctr';
3
- export function encrypt(text) {
4
- const iv = crypto.randomBytes(16);
5
- // @ts-expect-error - vestiges of when tsconfig was not strict. Feel free to improve
6
- const secret = this.secret;
7
- const cipher = crypto.createCipheriv(algorithm, secret, iv);
8
- const encrypted = cipher.update(text, 'utf8', 'hex') + cipher.final('hex');
9
- const ivString = iv.toString('hex');
10
- return `${ivString}${encrypted}`;
2
+ const legacyAlgorithm = 'aes-256-ctr';
3
+ const v1Algorithm = 'aes-256-gcm';
4
+ const v1Prefix = 'v1';
5
+ /**
6
+ * Legacy key derivation (pre-v1 aes-256-ctr values and the apiKey HMAC index).
7
+ * Kept in sync with `BasePayload.secret`.
8
+ */ export const deriveSecretKey = (secret)=>crypto.createHash('sha256').update(secret).digest('hex').slice(0, 32);
9
+ /**
10
+ * v1 key derivation: a true 32-byte key via HKDF, correcting the reduced
11
+ * effective entropy of the legacy derivation.
12
+ */ export const deriveKeyV1 = (secret)=>Buffer.from(crypto.hkdfSync('sha256', secret, '', 'payload-secret-v1', 32));
13
+ /** Non-secret fingerprint of a v1 key, used to select the key on decrypt. */ export const keyIdFor = (v1Key)=>crypto.createHash('sha256').update(v1Key).digest('hex').slice(0, 16);
14
+ export const buildEncryptionKey = (secret)=>{
15
+ const v1Key = deriveKeyV1(secret);
16
+ return {
17
+ keyId: keyIdFor(v1Key),
18
+ legacyKey: deriveSecretKey(secret),
19
+ secret,
20
+ v1Key
21
+ };
22
+ };
23
+ /**
24
+ * Builds the keyring from the active secret followed by any previous secrets.
25
+ * The first entry is the active (writing) key.
26
+ */ export const buildEncryptionKeyring = (secrets)=>{
27
+ const all = secrets.map(buildEncryptionKey);
28
+ const byId = {};
29
+ for (const key of all){
30
+ // First writer wins if two secrets somehow share a keyId.
31
+ if (!byId[key.keyId]) {
32
+ byId[key.keyId] = key;
33
+ }
34
+ }
35
+ return {
36
+ active: all[0],
37
+ all,
38
+ byId
39
+ };
40
+ };
41
+ /**
42
+ * Encrypts `text` under the active secret using the versioned aes-256-gcm
43
+ * envelope `v1:<keyId>:<iv>:<authTag>:<ciphertext>`. Pass `options.secret` (the
44
+ * raw `PAYLOAD_SECRET`) to encrypt under a specific secret instead.
45
+ */ export function encrypt(text, options) {
46
+ const key = options?.secret ? buildEncryptionKey(options.secret) : this.encryptionKeyring.active;
47
+ const iv = crypto.randomBytes(12);
48
+ const cipher = crypto.createCipheriv(v1Algorithm, key.v1Key, iv);
49
+ const ciphertext = cipher.update(text, 'utf8', 'hex') + cipher.final('hex');
50
+ const authTag = cipher.getAuthTag().toString('hex');
51
+ return `${v1Prefix}:${key.keyId}:${iv.toString('hex')}:${authTag}:${ciphertext}`;
11
52
  }
12
- export function decrypt(hash) {
53
+ /**
54
+ * Decrypts a value produced by {@link encrypt}. Dispatches on format: v1
55
+ * envelopes are authenticated (aes-256-gcm) and select their key by keyId from
56
+ * the keyring; pre-v1 values fall back to aes-256-ctr. Pass `options.secret` to
57
+ * decrypt under a specific secret (e.g. to read data encrypted under a previous
58
+ * secret during a rotation).
59
+ */ export function decrypt(hash, options) {
60
+ if (hash.startsWith(`${v1Prefix}:`)) {
61
+ const parts = hash.split(':');
62
+ if (parts.length !== 5) {
63
+ throw new Error('decrypt: malformed v1 envelope, expected "v1:keyId:iv:authTag:ciphertext".');
64
+ }
65
+ const [, keyId, ivHex, authTagHex, ciphertext] = parts;
66
+ const key = options?.secret ? buildEncryptionKey(options.secret) : this.encryptionKeyring.byId[keyId];
67
+ if (!key) {
68
+ throw new Error(`decrypt: no secret in the keyring matches key id "${keyId}". Add the secret that encrypted this value to config.previousSecrets.`);
69
+ }
70
+ const decipher = crypto.createDecipheriv(v1Algorithm, key.v1Key, Buffer.from(ivHex, 'hex'));
71
+ decipher.setAuthTag(Buffer.from(authTagHex, 'hex'));
72
+ // final() throws on a wrong key or tampered ciphertext.
73
+ return decipher.update(ciphertext, 'hex', 'utf8') + decipher.final('utf8');
74
+ }
75
+ // Legacy aes-256-ctr is unauthenticated, so it cannot verify a key and a wrong
76
+ // key returns garbage instead of throwing. We therefore intentionally use only
77
+ // the explicit or active key here (never trial the keyring): a legacy value
78
+ // written under a previous secret decrypts to garbage until rotateSecret
79
+ // upgrades it to the authenticated v1 envelope. API key auth is unaffected
80
+ // (it matches the HMAC apiKeyIndex, which is keyring-aware).
81
+ const legacyKey = options?.secret ? deriveSecretKey(options.secret) : this.secret;
13
82
  const iv = hash.slice(0, 32);
14
83
  const content = hash.slice(32);
15
- // @ts-expect-error - vestiges of when tsconfig was not strict. Feel free to improve
16
- const secret = this.secret;
17
- const decipher = crypto.createDecipheriv(algorithm, secret, Buffer.from(iv, 'hex'));
84
+ const decipher = crypto.createDecipheriv(legacyAlgorithm, legacyKey, Buffer.from(iv, 'hex'));
18
85
  return decipher.update(content, 'hex', 'utf8') + decipher.final('utf8');
19
86
  }
87
+ /**
88
+ * Re-encrypts a value that was encrypted under a previous secret: decrypts it
89
+ * with `options.oldSecret`, then re-encrypts it with the active secret. Also
90
+ * upgrades a legacy aes-256-ctr value to the v1 envelope.
91
+ */ export function reencrypt(hash, options) {
92
+ const plaintext = decrypt.call(this, hash, {
93
+ secret: options.oldSecret
94
+ });
95
+ return encrypt.call(this, plaintext);
96
+ }
20
97
 
21
98
  //# sourceMappingURL=crypto.js.map