@wordpress/core-data 7.27.1-next.46f643fa0.0 → 7.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/README.md +2 -2
  3. package/build/actions.js +7 -0
  4. package/build/actions.js.map +1 -1
  5. package/build/entities.js +12 -1
  6. package/build/entities.js.map +1 -1
  7. package/build/hooks/use-resource-permissions.js +1 -1
  8. package/build/hooks/use-resource-permissions.js.map +1 -1
  9. package/build/index.js +50 -8
  10. package/build/index.js.map +1 -1
  11. package/build/private-actions.js +2 -2
  12. package/build/private-actions.js.map +1 -1
  13. package/build/private-selectors.js +3 -0
  14. package/build/private-selectors.js.map +1 -1
  15. package/build/resolvers.js +1 -1
  16. package/build/resolvers.js.map +1 -1
  17. package/build/selectors.js +26 -1
  18. package/build/selectors.js.map +1 -1
  19. package/build/utils/log-entity-deprecation.js +63 -0
  20. package/build/utils/log-entity-deprecation.js.map +1 -0
  21. package/build-module/actions.js +7 -0
  22. package/build-module/actions.js.map +1 -1
  23. package/build-module/entities.js +11 -0
  24. package/build-module/entities.js.map +1 -1
  25. package/build-module/hooks/use-resource-permissions.js +1 -1
  26. package/build-module/hooks/use-resource-permissions.js.map +1 -1
  27. package/build-module/index.js +50 -8
  28. package/build-module/index.js.map +1 -1
  29. package/build-module/private-actions.js +2 -2
  30. package/build-module/private-actions.js.map +1 -1
  31. package/build-module/private-selectors.js +2 -0
  32. package/build-module/private-selectors.js.map +1 -1
  33. package/build-module/resolvers.js +1 -1
  34. package/build-module/resolvers.js.map +1 -1
  35. package/build-module/selectors.js +26 -1
  36. package/build-module/selectors.js.map +1 -1
  37. package/build-module/utils/log-entity-deprecation.js +55 -0
  38. package/build-module/utils/log-entity-deprecation.js.map +1 -0
  39. package/build-types/actions.d.ts.map +1 -1
  40. package/build-types/entities.d.ts +11 -0
  41. package/build-types/entities.d.ts.map +1 -1
  42. package/build-types/index.d.ts.map +1 -1
  43. package/build-types/private-selectors.d.ts.map +1 -1
  44. package/build-types/selectors.d.ts +1 -1
  45. package/build-types/selectors.d.ts.map +1 -1
  46. package/build-types/utils/log-entity-deprecation.d.ts +15 -0
  47. package/build-types/utils/log-entity-deprecation.d.ts.map +1 -0
  48. package/package.json +18 -18
  49. package/src/actions.js +11 -0
  50. package/src/entities.js +12 -0
  51. package/src/hooks/test/use-resource-permissions.js +3 -3
  52. package/src/hooks/use-resource-permissions.ts +1 -1
  53. package/src/index.js +54 -14
  54. package/src/private-actions.js +2 -2
  55. package/src/private-selectors.ts +2 -0
  56. package/src/resolvers.js +1 -1
  57. package/src/selectors.ts +29 -1
  58. package/src/test/deprecated-entity-logging.js +291 -0
  59. package/src/test/private-actions.js +13 -13
  60. package/src/test/resolvers.js +7 -7
  61. package/src/test/selectors.js +18 -7
  62. package/src/utils/log-entity-deprecation.ts +67 -0
  63. package/src/utils/test/log-entity-deprecation.js +130 -0
  64. package/tsconfig.tsbuildinfo +1 -1
@@ -56,6 +56,7 @@ var _name = require("./name");
56
56
  var _queriedData = require("./queried-data");
57
57
  var _entities = require("./entities");
58
58
  var _utils = require("./utils");
59
+ var _logEntityDeprecation = _interopRequireDefault(require("./utils/log-entity-deprecation"));
59
60
  /**
60
61
  * WordPress dependencies
61
62
  */
@@ -199,6 +200,7 @@ function getEntity(state, kind, name) {
199
200
  * @return Entity config
200
201
  */
201
202
  function getEntityConfig(state, kind, name) {
203
+ (0, _logEntityDeprecation.default)(kind, name, 'getEntityConfig');
202
204
  return state.entities.config?.find(config => config.kind === kind && config.name === name);
203
205
  }
204
206
 
@@ -243,6 +245,7 @@ function getEntityConfig(state, kind, name) {
243
245
  */
244
246
  const getEntityRecord = exports.getEntityRecord = (0, _data.createSelector)((state, kind, name, key, query) => {
245
247
  var _query$context;
248
+ (0, _logEntityDeprecation.default)(kind, name, 'getEntityRecord');
246
249
  const queriedState = state.entities.records?.[kind]?.[name]?.queriedData;
247
250
  if (!queriedState) {
248
251
  return undefined;
@@ -318,6 +321,7 @@ function __experimentalGetEntityRecordNoResolver(state, kind, name, key) {
318
321
  * @return Object with the entity's raw attributes.
319
322
  */
320
323
  const getRawEntityRecord = exports.getRawEntityRecord = (0, _data.createSelector)((state, kind, name, key) => {
324
+ (0, _logEntityDeprecation.default)(kind, name, 'getRawEntityRecord');
321
325
  const record = getEntityRecord(state, kind, name, key);
322
326
  return record && Object.keys(record).reduce((accumulator, _key) => {
323
327
  if ((0, _utils.isRawAttribute)(getEntityConfig(state, kind, name), _key)) {
@@ -348,6 +352,7 @@ const getRawEntityRecord = exports.getRawEntityRecord = (0, _data.createSelector
348
352
  * @return Whether entity records have been received.
349
353
  */
350
354
  function hasEntityRecords(state, kind, name, query) {
355
+ (0, _logEntityDeprecation.default)(kind, name, 'hasEntityRecords');
351
356
  return Array.isArray(getEntityRecords(state, kind, name, query));
352
357
  }
353
358
 
@@ -372,6 +377,8 @@ function hasEntityRecords(state, kind, name, query) {
372
377
  * @return Records.
373
378
  */
374
379
  const getEntityRecords = (state, kind, name, query) => {
380
+ (0, _logEntityDeprecation.default)(kind, name, 'getEntityRecords');
381
+
375
382
  // Queried data state is prepopulated for all known entities. If this is not
376
383
  // assigned for the given parameters, then it is known to not exist.
377
384
  const queriedState = state.entities.records?.[kind]?.[name]?.queriedData;
@@ -394,6 +401,8 @@ const getEntityRecords = (state, kind, name, query) => {
394
401
  */
395
402
  exports.getEntityRecords = getEntityRecords;
396
403
  const getEntityRecordsTotalItems = (state, kind, name, query) => {
404
+ (0, _logEntityDeprecation.default)(kind, name, 'getEntityRecordsTotalItems');
405
+
397
406
  // Queried data state is prepopulated for all known entities. If this is not
398
407
  // assigned for the given parameters, then it is known to not exist.
399
408
  const queriedState = state.entities.records?.[kind]?.[name]?.queriedData;
@@ -416,6 +425,8 @@ const getEntityRecordsTotalItems = (state, kind, name, query) => {
416
425
  */
417
426
  exports.getEntityRecordsTotalItems = getEntityRecordsTotalItems;
418
427
  const getEntityRecordsTotalPages = (state, kind, name, query) => {
428
+ (0, _logEntityDeprecation.default)(kind, name, 'getEntityRecordsTotalPages');
429
+
419
430
  // Queried data state is prepopulated for all known entities. If this is not
420
431
  // assigned for the given parameters, then it is known to not exist.
421
432
  const queriedState = state.entities.records?.[kind]?.[name]?.queriedData;
@@ -523,6 +534,7 @@ const __experimentalGetEntitiesBeingSaved = exports.__experimentalGetEntitiesBei
523
534
  * @return The entity record's edits.
524
535
  */
525
536
  function getEntityRecordEdits(state, kind, name, recordId) {
537
+ (0, _logEntityDeprecation.default)(kind, name, 'getEntityRecordEdits');
526
538
  return state.entities.records?.[kind]?.[name]?.edits?.[recordId];
527
539
  }
528
540
 
@@ -541,6 +553,7 @@ function getEntityRecordEdits(state, kind, name, recordId) {
541
553
  * @return The entity record's non transient edits.
542
554
  */
543
555
  const getEntityRecordNonTransientEdits = exports.getEntityRecordNonTransientEdits = (0, _data.createSelector)((state, kind, name, recordId) => {
556
+ (0, _logEntityDeprecation.default)(kind, name, 'getEntityRecordNonTransientEdits');
544
557
  const {
545
558
  transientEdits
546
559
  } = getEntityConfig(state, kind, name) || {};
@@ -568,6 +581,7 @@ const getEntityRecordNonTransientEdits = exports.getEntityRecordNonTransientEdit
568
581
  * @return Whether the entity record has edits or not.
569
582
  */
570
583
  function hasEditsForEntityRecord(state, kind, name, recordId) {
584
+ (0, _logEntityDeprecation.default)(kind, name, 'hasEditsForEntityRecord');
571
585
  return isSavingEntityRecord(state, kind, name, recordId) || Object.keys(getEntityRecordNonTransientEdits(state, kind, name, recordId)).length > 0;
572
586
  }
573
587
 
@@ -582,6 +596,7 @@ function hasEditsForEntityRecord(state, kind, name, recordId) {
582
596
  * @return The entity record, merged with its edits.
583
597
  */
584
598
  const getEditedEntityRecord = exports.getEditedEntityRecord = (0, _data.createSelector)((state, kind, name, recordId) => {
599
+ (0, _logEntityDeprecation.default)(kind, name, 'getEditedEntityRecord');
585
600
  const raw = getRawEntityRecord(state, kind, name, recordId);
586
601
  const edited = getEntityRecordEdits(state, kind, name, recordId);
587
602
  // Never return a non-falsy empty object. Unfortunately we can't return
@@ -613,6 +628,7 @@ const getEditedEntityRecord = exports.getEditedEntityRecord = (0, _data.createSe
613
628
  */
614
629
  function isAutosavingEntityRecord(state, kind, name, recordId) {
615
630
  var _state$entities$recor;
631
+ (0, _logEntityDeprecation.default)(kind, name, 'isAutosavingEntityRecord');
616
632
  const {
617
633
  pending,
618
634
  isAutosave
@@ -632,6 +648,7 @@ function isAutosavingEntityRecord(state, kind, name, recordId) {
632
648
  */
633
649
  function isSavingEntityRecord(state, kind, name, recordId) {
634
650
  var _state$entities$recor2;
651
+ (0, _logEntityDeprecation.default)(kind, name, 'isSavingEntityRecord');
635
652
  return (_state$entities$recor2 = state.entities.records?.[kind]?.[name]?.saving?.[recordId]?.pending) !== null && _state$entities$recor2 !== void 0 ? _state$entities$recor2 : false;
636
653
  }
637
654
 
@@ -647,6 +664,7 @@ function isSavingEntityRecord(state, kind, name, recordId) {
647
664
  */
648
665
  function isDeletingEntityRecord(state, kind, name, recordId) {
649
666
  var _state$entities$recor3;
667
+ (0, _logEntityDeprecation.default)(kind, name, 'isDeletingEntityRecord');
650
668
  return (_state$entities$recor3 = state.entities.records?.[kind]?.[name]?.deleting?.[recordId]?.pending) !== null && _state$entities$recor3 !== void 0 ? _state$entities$recor3 : false;
651
669
  }
652
670
 
@@ -661,6 +679,7 @@ function isDeletingEntityRecord(state, kind, name, recordId) {
661
679
  * @return The entity record's save error.
662
680
  */
663
681
  function getLastEntitySaveError(state, kind, name, recordId) {
682
+ (0, _logEntityDeprecation.default)(kind, name, 'getLastEntitySaveError');
664
683
  return state.entities.records?.[kind]?.[name]?.saving?.[recordId]?.error;
665
684
  }
666
685
 
@@ -675,6 +694,7 @@ function getLastEntitySaveError(state, kind, name, recordId) {
675
694
  * @return The entity record's save error.
676
695
  */
677
696
  function getLastEntityDeleteError(state, kind, name, recordId) {
697
+ (0, _logEntityDeprecation.default)(kind, name, 'getLastEntityDeleteError');
678
698
  return state.entities.records?.[kind]?.[name]?.deleting?.[recordId]?.error;
679
699
  }
680
700
 
@@ -821,7 +841,7 @@ function isPreviewEmbedFallback(state, url) {
821
841
  *
822
842
  * @param state Data state.
823
843
  * @param action Action to check. One of: 'create', 'read', 'update', 'delete'.
824
- * @param resource Entity resource to check. Accepts entity object `{ kind: 'root', name: 'media', id: 1 }`
844
+ * @param resource Entity resource to check. Accepts entity object `{ kind: 'postType', name: 'attachment', id: 1 }`
825
845
  * or REST base as a string - `media`.
826
846
  * @param id Optional ID of the rest resource to check.
827
847
  *
@@ -833,6 +853,9 @@ function canUser(state, action, resource, id) {
833
853
  if (isEntity && (!resource.kind || !resource.name)) {
834
854
  return false;
835
855
  }
856
+ if (isEntity) {
857
+ (0, _logEntityDeprecation.default)(resource.kind, resource.name, 'canUser');
858
+ }
836
859
  const key = (0, _utils.getUserPermissionCacheKey)(action, resource, id);
837
860
  return state.userPermissions[key];
838
861
  }
@@ -1043,6 +1066,7 @@ function getDefaultTemplateId(state, query) {
1043
1066
  * @return Record.
1044
1067
  */
1045
1068
  const getRevisions = (state, kind, name, recordKey, query) => {
1069
+ (0, _logEntityDeprecation.default)(kind, name, 'getRevisions');
1046
1070
  const queriedStateRevisions = state.entities.records?.[kind]?.[name]?.revisions?.[recordKey];
1047
1071
  if (!queriedStateRevisions) {
1048
1072
  return null;
@@ -1066,6 +1090,7 @@ const getRevisions = (state, kind, name, recordKey, query) => {
1066
1090
  exports.getRevisions = getRevisions;
1067
1091
  const getRevision = exports.getRevision = (0, _data.createSelector)((state, kind, name, recordKey, revisionKey, query) => {
1068
1092
  var _query$context5;
1093
+ (0, _logEntityDeprecation.default)(kind, name, 'getRevision');
1069
1094
  const queriedState = state.entities.records?.[kind]?.[name]?.revisions?.[recordKey];
1070
1095
  if (!queriedState) {
1071
1096
  return undefined;
@@ -1 +1 @@
1
- {"version":3,"names":["_data","require","_url","_deprecated","_interopRequireDefault","_name","_queriedData","_entities","_utils","EMPTY_OBJECT","isRequestingEmbedPreview","exports","createRegistrySelector","select","state","url","STORE_NAME","isResolving","getAuthors","query","deprecated","since","alternative","path","addQueryArgs","getUserQueryResults","getCurrentUser","currentUser","createSelector","queryID","_state$users$queries$","queryResults","users","queries","map","id","byId","getEntitiesByKind","kind","getEntitiesConfig","entities","config","filter","entity","getEntity","name","getEntityConfig","find","getEntityRecord","key","_query$context","queriedState","records","queriedData","undefined","context","itemIsComplete","items","item","_fields","_getNormalizedCommaSe","filteredItem","fields","getNormalizedCommaSeparable","f","length","field","split","value","forEach","fieldName","setNestedValue","recordId","_query$context2","__unstableNormalizeArgs","args","newArgs","recordKey","isNumericID","Number","__experimentalGetEntityRecordNoResolver","getRawEntityRecord","record","Object","keys","reduce","accumulator","_key","isRawAttribute","raw","_query$context3","hasEntityRecords","Array","isArray","getEntityRecords","getQueriedItems","getEntityRecordsTotalItems","getQueriedTotalItems","getEntityRecordsTotalPages","per_page","totalItems","getQueriedTotalPages","Math","ceil","__experimentalGetDirtyEntityRecords","dirtyRecords","primaryKeys","edits","primaryKey","hasEditsForEntityRecord","entityConfig","entityRecord","getEditedEntityRecord","push","DEFAULT_ENTITY_KEY","title","getTitle","__experimentalGetEntitiesBeingSaved","recordsBeingSaved","saving","isSavingEntityRecord","getEntityRecordEdits","getEntityRecordNonTransientEdits","transientEdits","acc","edited","_query$context4","isAutosavingEntityRecord","_state$entities$recor","pending","isAutosave","Boolean","_state$entities$recor2","isDeletingEntityRecord","_state$entities$recor3","deleting","getLastEntitySaveError","error","getLastEntityDeleteError","getUndoEdit","getRedoEdit","hasUndo","undoManager","hasRedo","getCurrentTheme","currentTheme","__experimentalGetCurrentGlobalStylesId","currentGlobalStylesId","getThemeSupports","_getCurrentTheme$them","theme_supports","getEmbedPreview","embedPreviews","isPreviewEmbedFallback","preview","oEmbedLinkCheck","html","canUser","action","resource","isEntity","getUserPermissionCacheKey","userPermissions","canUserEditEntityRecord","getAutosaves","postType","postId","autosaves","getAutosave","authorId","autosave","author","hasFetchedAutosaves","hasFinishedResolution","getReferenceByDistinctEdits","editsReference","__experimentalGetCurrentThemeBaseGlobalStyles","themeBaseGlobalStyles","stylesheet","__experimentalGetCurrentThemeGlobalStylesVariations","themeGlobalStyleVariations","getBlockPatterns","blockPatterns","getBlockPatternCategories","blockPatternCategories","getUserPatternCategories","userPatternCategories","getCurrentThemeGlobalStylesRevisions","themeGlobalStyleRevisions","getDefaultTemplateId","defaultTemplates","JSON","stringify","getRevisions","queriedStateRevisions","revisions","getRevision","revisionKey","_query$context5","_getNormalizedCommaSe2","_query$context6"],"sources":["@wordpress/core-data/src/selectors.ts"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { createSelector, createRegistrySelector } from '@wordpress/data';\nimport { addQueryArgs } from '@wordpress/url';\nimport deprecated from '@wordpress/deprecated';\n\n/**\n * Internal dependencies\n */\nimport { STORE_NAME } from './name';\nimport {\n\tgetQueriedItems,\n\tgetQueriedTotalItems,\n\tgetQueriedTotalPages,\n} from './queried-data';\nimport { DEFAULT_ENTITY_KEY } from './entities';\nimport {\n\tgetNormalizedCommaSeparable,\n\tisRawAttribute,\n\tsetNestedValue,\n\tisNumericID,\n\tgetUserPermissionCacheKey,\n} from './utils';\nimport type * as ET from './entity-types';\nimport type { UndoManager } from '@wordpress/undo-manager';\n\n// This is an incomplete, high-level approximation of the State type.\n// It makes the selectors slightly more safe, but is intended to evolve\n// into a more detailed representation over time.\n// See https://github.com/WordPress/gutenberg/pull/40025#discussion_r865410589 for more context.\nexport interface State {\n\tautosaves: Record< string | number, Array< unknown > >;\n\tblockPatterns: Array< unknown >;\n\tblockPatternCategories: Array< unknown >;\n\tcurrentGlobalStylesId: string;\n\tcurrentTheme: string;\n\tcurrentUser: ET.User< 'edit' >;\n\tembedPreviews: Record< string, { html: string } >;\n\tentities: EntitiesState;\n\tthemeBaseGlobalStyles: Record< string, Object >;\n\tthemeGlobalStyleVariations: Record< string, string >;\n\tthemeGlobalStyleRevisions: Record< number, Object >;\n\tundoManager: UndoManager;\n\tuserPermissions: Record< string, boolean >;\n\tusers: UserState;\n\tnavigationFallbackId: EntityRecordKey;\n\tuserPatternCategories: Array< UserPatternCategory >;\n\tdefaultTemplates: Record< string, string >;\n\tregisteredPostMeta: Record< string, Object >;\n}\n\ntype EntityRecordKey = string | number;\n\ninterface EntitiesState {\n\tconfig: EntityConfig[];\n\trecords: Record< string, Record< string, EntityState< ET.EntityRecord > > >;\n}\n\ninterface QueriedData {\n\titems: Record< ET.Context, Record< number, ET.EntityRecord > >;\n\titemIsComplete: Record< ET.Context, Record< number, boolean > >;\n\tqueries: Record< ET.Context, Record< string, Array< number > > >;\n}\n\ntype RevisionRecord =\n\t| Record< ET.Context, Record< number, ET.PostRevision > >\n\t| Record< ET.Context, Record< number, ET.GlobalStylesRevision > >;\n\ninterface RevisionsQueriedData {\n\titems: RevisionRecord;\n\titemIsComplete: Record< ET.Context, Record< number, boolean > >;\n\tqueries: Record< ET.Context, Record< string, Array< number > > >;\n}\n\ninterface EntityState< EntityRecord extends ET.EntityRecord > {\n\tedits: Record< string, Partial< EntityRecord > >;\n\tsaving: Record<\n\t\tstring,\n\t\tPartial< { pending: boolean; isAutosave: boolean; error: Error } >\n\t>;\n\tdeleting: Record< string, Partial< { pending: boolean; error: Error } > >;\n\tqueriedData: QueriedData;\n\trevisions?: RevisionsQueriedData;\n}\n\ninterface EntityConfig {\n\tname: string;\n\tkind: string;\n}\n\ninterface UserState {\n\tqueries: Record< string, EntityRecordKey[] >;\n\tbyId: Record< EntityRecordKey, ET.User< 'edit' > >;\n}\n\ntype TemplateQuery = {\n\tslug?: string;\n\tis_custom?: boolean;\n\tignore_empty?: boolean;\n};\n\nexport interface UserPatternCategory {\n\tid: number;\n\tname: string;\n\tlabel: string;\n\tslug: string;\n\tdescription: string;\n}\n\ntype Optional< T > = T | undefined;\n\n/**\n * HTTP Query parameters sent with the API request to fetch the entity records.\n */\nexport type GetRecordsHttpQuery = Record< string, any >;\n\n/**\n * Arguments for EntityRecord selectors.\n */\ntype EntityRecordArgs =\n\t| [ string, string, EntityRecordKey ]\n\t| [ string, string, EntityRecordKey, GetRecordsHttpQuery ];\n\ntype EntityResource = { kind: string; name: string; id?: EntityRecordKey };\n\n/**\n * Shared reference to an empty object for cases where it is important to avoid\n * returning a new object reference on every invocation, as in a connected or\n * other pure component which performs `shouldComponentUpdate` check on props.\n * This should be used as a last resort, since the normalized data should be\n * maintained by the reducer result in state.\n */\nconst EMPTY_OBJECT = {};\n\n/**\n * Returns true if a request is in progress for embed preview data, or false\n * otherwise.\n *\n * @param state Data state.\n * @param url URL the preview would be for.\n *\n * @return Whether a request is in progress for an embed preview.\n */\nexport const isRequestingEmbedPreview = createRegistrySelector(\n\t( select: any ) =>\n\t\t( state: State, url: string ): boolean => {\n\t\t\treturn select( STORE_NAME ).isResolving( 'getEmbedPreview', [\n\t\t\t\turl,\n\t\t\t] );\n\t\t}\n);\n\n/**\n * Returns all available authors.\n *\n * @deprecated since 11.3. Callers should use `select( 'core' ).getUsers({ who: 'authors' })` instead.\n *\n * @param state Data state.\n * @param query Optional object of query parameters to\n * include with request. For valid query parameters see the [Users page](https://developer.wordpress.org/rest-api/reference/users/) in the REST API Handbook and see the arguments for [List Users](https://developer.wordpress.org/rest-api/reference/users/#list-users) and [Retrieve a User](https://developer.wordpress.org/rest-api/reference/users/#retrieve-a-user).\n * @return Authors list.\n */\nexport function getAuthors(\n\tstate: State,\n\tquery?: GetRecordsHttpQuery\n): ET.User[] {\n\tdeprecated( \"select( 'core' ).getAuthors()\", {\n\t\tsince: '5.9',\n\t\talternative: \"select( 'core' ).getUsers({ who: 'authors' })\",\n\t} );\n\n\tconst path = addQueryArgs(\n\t\t'/wp/v2/users/?who=authors&per_page=100',\n\t\tquery\n\t);\n\treturn getUserQueryResults( state, path );\n}\n\n/**\n * Returns the current user.\n *\n * @param state Data state.\n *\n * @return Current user object.\n */\nexport function getCurrentUser( state: State ): ET.User< 'edit' > {\n\treturn state.currentUser;\n}\n\n/**\n * Returns all the users returned by a query ID.\n *\n * @param state Data state.\n * @param queryID Query ID.\n *\n * @return Users list.\n */\nexport const getUserQueryResults = createSelector(\n\t( state: State, queryID: string ): ET.User< 'edit' >[] => {\n\t\tconst queryResults = state.users.queries[ queryID ] ?? [];\n\n\t\treturn queryResults.map( ( id ) => state.users.byId[ id ] );\n\t},\n\t( state: State, queryID: string ) => [\n\t\tstate.users.queries[ queryID ],\n\t\tstate.users.byId,\n\t]\n);\n\n/**\n * Returns the loaded entities for the given kind.\n *\n * @deprecated since WordPress 6.0. Use getEntitiesConfig instead\n * @param state Data state.\n * @param kind Entity kind.\n *\n * @return Array of entities with config matching kind.\n */\nexport function getEntitiesByKind( state: State, kind: string ): Array< any > {\n\tdeprecated( \"wp.data.select( 'core' ).getEntitiesByKind()\", {\n\t\tsince: '6.0',\n\t\talternative: \"wp.data.select( 'core' ).getEntitiesConfig()\",\n\t} );\n\treturn getEntitiesConfig( state, kind );\n}\n\n/**\n * Returns the loaded entities for the given kind.\n *\n * @param state Data state.\n * @param kind Entity kind.\n *\n * @return Array of entities with config matching kind.\n */\nexport const getEntitiesConfig = createSelector(\n\t( state: State, kind: string ): Array< any > =>\n\t\tstate.entities.config.filter( ( entity ) => entity.kind === kind ),\n\t/* eslint-disable @typescript-eslint/no-unused-vars */\n\t( state: State, kind: string ) => state.entities.config\n\t/* eslint-enable @typescript-eslint/no-unused-vars */\n);\n/**\n * Returns the entity config given its kind and name.\n *\n * @deprecated since WordPress 6.0. Use getEntityConfig instead\n * @param state Data state.\n * @param kind Entity kind.\n * @param name Entity name.\n *\n * @return Entity config\n */\nexport function getEntity( state: State, kind: string, name: string ): any {\n\tdeprecated( \"wp.data.select( 'core' ).getEntity()\", {\n\t\tsince: '6.0',\n\t\talternative: \"wp.data.select( 'core' ).getEntityConfig()\",\n\t} );\n\treturn getEntityConfig( state, kind, name );\n}\n\n/**\n * Returns the entity config given its kind and name.\n *\n * @param state Data state.\n * @param kind Entity kind.\n * @param name Entity name.\n *\n * @return Entity config\n */\nexport function getEntityConfig(\n\tstate: State,\n\tkind: string,\n\tname: string\n): any {\n\treturn state.entities.config?.find(\n\t\t( config ) => config.kind === kind && config.name === name\n\t);\n}\n\n/**\n * GetEntityRecord is declared as a *callable interface* with\n * two signatures to work around the fact that TypeScript doesn't\n * allow currying generic functions:\n *\n * ```ts\n * \t\ttype CurriedState = F extends ( state: any, ...args: infer P ) => infer R\n * \t\t\t? ( ...args: P ) => R\n * \t\t\t: F;\n * \t\ttype Selector = <K extends string | number>(\n * state: any,\n * kind: K,\n * key: K extends string ? 'string value' : false\n * ) => K;\n * \t\ttype BadlyInferredSignature = CurriedState< Selector >\n * // BadlyInferredSignature evaluates to:\n * // (kind: string number, key: false | \"string value\") => string number\n * ```\n *\n * The signature without the state parameter shipped as CurriedSignature\n * is used in the return value of `select( coreStore )`.\n *\n * See https://github.com/WordPress/gutenberg/pull/41578 for more details.\n */\nexport interface GetEntityRecord {\n\t<\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\tkey?: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t): EntityRecord | undefined;\n\n\tCurriedSignature: <\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tkind: string,\n\t\tname: string,\n\t\tkey?: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t) => EntityRecord | undefined;\n\t__unstableNormalizeArgs?: ( args: EntityRecordArgs ) => EntityRecordArgs;\n}\n\n/**\n * Returns the Entity's record object by key. Returns `null` if the value is not\n * yet received, undefined if the value entity is known to not exist, or the\n * entity object if it exists and is received.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param key Optional record's key. If requesting a global record (e.g. site settings), the key can be omitted. If requesting a specific item, the key must always be included.\n * @param query Optional query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available \"Retrieve a [Entity kind]\".\n *\n * @return Record.\n */\nexport const getEntityRecord = createSelector(\n\t( <\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\tkey?: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t): EntityRecord | undefined => {\n\t\tconst queriedState =\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData;\n\t\tif ( ! queriedState ) {\n\t\t\treturn undefined;\n\t\t}\n\t\tconst context = query?.context ?? 'default';\n\n\t\tif ( query === undefined ) {\n\t\t\t// If expecting a complete item, validate that completeness.\n\t\t\tif ( ! queriedState.itemIsComplete[ context ]?.[ key ] ) {\n\t\t\t\treturn undefined;\n\t\t\t}\n\n\t\t\treturn queriedState.items[ context ][ key ];\n\t\t}\n\n\t\tconst item = queriedState.items[ context ]?.[ key ];\n\t\tif ( item && query._fields ) {\n\t\t\tconst filteredItem = {};\n\t\t\tconst fields = getNormalizedCommaSeparable( query._fields ) ?? [];\n\t\t\tfor ( let f = 0; f < fields.length; f++ ) {\n\t\t\t\tconst field = fields[ f ].split( '.' );\n\t\t\t\tlet value = item;\n\t\t\t\tfield.forEach( ( fieldName ) => {\n\t\t\t\t\tvalue = value?.[ fieldName ];\n\t\t\t\t} );\n\t\t\t\tsetNestedValue( filteredItem, field, value );\n\t\t\t}\n\t\t\treturn filteredItem as EntityRecord;\n\t\t}\n\n\t\treturn item;\n\t} ) as GetEntityRecord,\n\t( state: State, kind, name, recordId, query ) => {\n\t\tconst context = query?.context ?? 'default';\n\t\treturn [\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData?.items[\n\t\t\t\tcontext\n\t\t\t]?.[ recordId ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData\n\t\t\t\t?.itemIsComplete[ context ]?.[ recordId ],\n\t\t];\n\t}\n) as GetEntityRecord;\n\n/**\n * Normalizes `recordKey`s that look like numeric IDs to numbers.\n *\n * @param args EntityRecordArgs the selector arguments.\n * @return EntityRecordArgs the normalized arguments.\n */\ngetEntityRecord.__unstableNormalizeArgs = (\n\targs: EntityRecordArgs\n): EntityRecordArgs => {\n\tconst newArgs = [ ...args ] as EntityRecordArgs;\n\tconst recordKey = newArgs?.[ 2 ];\n\n\t// If recordKey looks to be a numeric ID then coerce to number.\n\tnewArgs[ 2 ] = isNumericID( recordKey ) ? Number( recordKey ) : recordKey;\n\n\treturn newArgs;\n};\n\n/**\n * Returns the Entity's record object by key. Doesn't trigger a resolver nor requests the entity records from the API if the entity record isn't available in the local state.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param key Record's key\n *\n * @return Record.\n */\nexport function __experimentalGetEntityRecordNoResolver<\n\tEntityRecord extends ET.EntityRecord< any >,\n>( state: State, kind: string, name: string, key: EntityRecordKey ) {\n\treturn getEntityRecord< EntityRecord >( state, kind, name, key );\n}\n\n/**\n * Returns the entity's record object by key,\n * with its attributes mapped to their raw values.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param key Record's key.\n *\n * @return Object with the entity's raw attributes.\n */\nexport const getRawEntityRecord = createSelector(\n\t< EntityRecord extends ET.EntityRecord< any > >(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\tkey: EntityRecordKey\n\t): EntityRecord | undefined => {\n\t\tconst record = getEntityRecord< EntityRecord >(\n\t\t\tstate,\n\t\t\tkind,\n\t\t\tname,\n\t\t\tkey\n\t\t);\n\t\treturn (\n\t\t\trecord &&\n\t\t\tObject.keys( record ).reduce( ( accumulator, _key ) => {\n\t\t\t\tif (\n\t\t\t\t\tisRawAttribute( getEntityConfig( state, kind, name ), _key )\n\t\t\t\t) {\n\t\t\t\t\t// Because edits are the \"raw\" attribute values,\n\t\t\t\t\t// we return those from record selectors to make rendering,\n\t\t\t\t\t// comparisons, and joins with edits easier.\n\t\t\t\t\taccumulator[ _key ] =\n\t\t\t\t\t\trecord[ _key ]?.raw !== undefined\n\t\t\t\t\t\t\t? record[ _key ]?.raw\n\t\t\t\t\t\t\t: record[ _key ];\n\t\t\t\t} else {\n\t\t\t\t\taccumulator[ _key ] = record[ _key ];\n\t\t\t\t}\n\t\t\t\treturn accumulator;\n\t\t\t}, {} as any )\n\t\t);\n\t},\n\t(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordId: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t) => {\n\t\tconst context = query?.context ?? 'default';\n\t\treturn [\n\t\t\tstate.entities.config,\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData?.items[\n\t\t\t\tcontext\n\t\t\t]?.[ recordId ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData\n\t\t\t\t?.itemIsComplete[ context ]?.[ recordId ],\n\t\t];\n\t}\n);\n\n/**\n * Returns true if records have been received for the given set of parameters,\n * or false otherwise.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param query Optional terms query. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for \"List [Entity kind]s\".\n *\n * @return Whether entity records have been received.\n */\nexport function hasEntityRecords(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\tquery?: GetRecordsHttpQuery\n): boolean {\n\treturn Array.isArray( getEntityRecords( state, kind, name, query ) );\n}\n\n/**\n * GetEntityRecord is declared as a *callable interface* with\n * two signatures to work around the fact that TypeScript doesn't\n * allow currying generic functions.\n *\n * @see GetEntityRecord\n * @see https://github.com/WordPress/gutenberg/pull/41578\n */\nexport interface GetEntityRecords {\n\t<\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\tquery?: GetRecordsHttpQuery\n\t): EntityRecord[] | null;\n\n\tCurriedSignature: <\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tkind: string,\n\t\tname: string,\n\t\tquery?: GetRecordsHttpQuery\n\t) => EntityRecord[] | null;\n}\n\n/**\n * Returns the Entity's records.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param query Optional terms query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for \"List [Entity kind]s\".\n *\n * @return Records.\n */\nexport const getEntityRecords = ( <\n\tEntityRecord extends\n\t\t| ET.EntityRecord< any >\n\t\t| Partial< ET.EntityRecord< any > >,\n>(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\tquery: GetRecordsHttpQuery\n): EntityRecord[] | null => {\n\t// Queried data state is prepopulated for all known entities. If this is not\n\t// assigned for the given parameters, then it is known to not exist.\n\tconst queriedState =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData;\n\tif ( ! queriedState ) {\n\t\treturn null;\n\t}\n\treturn getQueriedItems( queriedState, query );\n} ) as GetEntityRecords;\n\n/**\n * Returns the Entity's total available records for a given query (ignoring pagination).\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param query Optional terms query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for \"List [Entity kind]s\".\n *\n * @return number | null.\n */\nexport const getEntityRecordsTotalItems = (\n\tstate: State,\n\tkind: string,\n\tname: string,\n\tquery: GetRecordsHttpQuery\n): number | null => {\n\t// Queried data state is prepopulated for all known entities. If this is not\n\t// assigned for the given parameters, then it is known to not exist.\n\tconst queriedState =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData;\n\tif ( ! queriedState ) {\n\t\treturn null;\n\t}\n\treturn getQueriedTotalItems( queriedState, query );\n};\n\n/**\n * Returns the number of available pages for the given query.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param query Optional terms query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for \"List [Entity kind]s\".\n *\n * @return number | null.\n */\nexport const getEntityRecordsTotalPages = (\n\tstate: State,\n\tkind: string,\n\tname: string,\n\tquery: GetRecordsHttpQuery\n): number | null => {\n\t// Queried data state is prepopulated for all known entities. If this is not\n\t// assigned for the given parameters, then it is known to not exist.\n\tconst queriedState =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData;\n\tif ( ! queriedState ) {\n\t\treturn null;\n\t}\n\tif ( query.per_page === -1 ) {\n\t\treturn 1;\n\t}\n\tconst totalItems = getQueriedTotalItems( queriedState, query );\n\tif ( ! totalItems ) {\n\t\treturn totalItems;\n\t}\n\t// If `per_page` is not set and the query relies on the defaults of the\n\t// REST endpoint, get the info from query's meta.\n\tif ( ! query.per_page ) {\n\t\treturn getQueriedTotalPages( queriedState, query );\n\t}\n\treturn Math.ceil( totalItems / query.per_page );\n};\n\ntype DirtyEntityRecord = {\n\ttitle: string;\n\tkey: EntityRecordKey;\n\tname: string;\n\tkind: string;\n};\n/**\n * Returns the list of dirty entity records.\n *\n * @param state State tree.\n *\n * @return The list of updated records\n */\nexport const __experimentalGetDirtyEntityRecords = createSelector(\n\t( state: State ): Array< DirtyEntityRecord > => {\n\t\tconst {\n\t\t\tentities: { records },\n\t\t} = state;\n\t\tconst dirtyRecords: DirtyEntityRecord[] = [];\n\t\tObject.keys( records ).forEach( ( kind ) => {\n\t\t\tObject.keys( records[ kind ] ).forEach( ( name ) => {\n\t\t\t\tconst primaryKeys = (\n\t\t\t\t\tObject.keys( records[ kind ][ name ].edits ) as string[]\n\t\t\t\t ).filter(\n\t\t\t\t\t( primaryKey ) =>\n\t\t\t\t\t\t// The entity record must exist (not be deleted),\n\t\t\t\t\t\t// and it must have edits.\n\t\t\t\t\t\tgetEntityRecord( state, kind, name, primaryKey ) &&\n\t\t\t\t\t\thasEditsForEntityRecord( state, kind, name, primaryKey )\n\t\t\t\t);\n\n\t\t\t\tif ( primaryKeys.length ) {\n\t\t\t\t\tconst entityConfig = getEntityConfig( state, kind, name );\n\t\t\t\t\tprimaryKeys.forEach( ( primaryKey ) => {\n\t\t\t\t\t\tconst entityRecord = getEditedEntityRecord(\n\t\t\t\t\t\t\tstate,\n\t\t\t\t\t\t\tkind,\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tprimaryKey\n\t\t\t\t\t\t);\n\t\t\t\t\t\tdirtyRecords.push( {\n\t\t\t\t\t\t\t// We avoid using primaryKey because it's transformed into a string\n\t\t\t\t\t\t\t// when it's used as an object key.\n\t\t\t\t\t\t\tkey: entityRecord\n\t\t\t\t\t\t\t\t? entityRecord[\n\t\t\t\t\t\t\t\t\t\tentityConfig.key || DEFAULT_ENTITY_KEY\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: undefined,\n\t\t\t\t\t\t\ttitle:\n\t\t\t\t\t\t\t\tentityConfig?.getTitle?.( entityRecord ) || '',\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tkind,\n\t\t\t\t\t\t} );\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\n\t\treturn dirtyRecords;\n\t},\n\t( state ) => [ state.entities.records ]\n);\n\n/**\n * Returns the list of entities currently being saved.\n *\n * @param state State tree.\n *\n * @return The list of records being saved.\n */\nexport const __experimentalGetEntitiesBeingSaved = createSelector(\n\t( state: State ): Array< DirtyEntityRecord > => {\n\t\tconst {\n\t\t\tentities: { records },\n\t\t} = state;\n\t\tconst recordsBeingSaved: DirtyEntityRecord[] = [];\n\t\tObject.keys( records ).forEach( ( kind ) => {\n\t\t\tObject.keys( records[ kind ] ).forEach( ( name ) => {\n\t\t\t\tconst primaryKeys = (\n\t\t\t\t\tObject.keys( records[ kind ][ name ].saving ) as string[]\n\t\t\t\t ).filter( ( primaryKey ) =>\n\t\t\t\t\tisSavingEntityRecord( state, kind, name, primaryKey )\n\t\t\t\t);\n\n\t\t\t\tif ( primaryKeys.length ) {\n\t\t\t\t\tconst entityConfig = getEntityConfig( state, kind, name );\n\t\t\t\t\tprimaryKeys.forEach( ( primaryKey ) => {\n\t\t\t\t\t\tconst entityRecord = getEditedEntityRecord(\n\t\t\t\t\t\t\tstate,\n\t\t\t\t\t\t\tkind,\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tprimaryKey\n\t\t\t\t\t\t);\n\t\t\t\t\t\trecordsBeingSaved.push( {\n\t\t\t\t\t\t\t// We avoid using primaryKey because it's transformed into a string\n\t\t\t\t\t\t\t// when it's used as an object key.\n\t\t\t\t\t\t\tkey: entityRecord\n\t\t\t\t\t\t\t\t? entityRecord[\n\t\t\t\t\t\t\t\t\t\tentityConfig.key || DEFAULT_ENTITY_KEY\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: undefined,\n\t\t\t\t\t\t\ttitle:\n\t\t\t\t\t\t\t\tentityConfig?.getTitle?.( entityRecord ) || '',\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tkind,\n\t\t\t\t\t\t} );\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t\treturn recordsBeingSaved;\n\t},\n\t( state ) => [ state.entities.records ]\n);\n\n/**\n * Returns the specified entity record's edits.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record's edits.\n */\nexport function getEntityRecordEdits(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): Optional< any > {\n\treturn state.entities.records?.[ kind ]?.[ name ]?.edits?.[\n\t\trecordId as string | number\n\t];\n}\n\n/**\n * Returns the specified entity record's non transient edits.\n *\n * Transient edits don't create an undo level, and\n * are not considered for change detection.\n * They are defined in the entity's config.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record's non transient edits.\n */\nexport const getEntityRecordNonTransientEdits = createSelector(\n\t(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordId: EntityRecordKey\n\t): Optional< any > => {\n\t\tconst { transientEdits } = getEntityConfig( state, kind, name ) || {};\n\t\tconst edits = getEntityRecordEdits( state, kind, name, recordId ) || {};\n\t\tif ( ! transientEdits ) {\n\t\t\treturn edits;\n\t\t}\n\t\treturn Object.keys( edits ).reduce( ( acc, key ) => {\n\t\t\tif ( ! transientEdits[ key ] ) {\n\t\t\t\tacc[ key ] = edits[ key ];\n\t\t\t}\n\t\t\treturn acc;\n\t\t}, {} );\n\t},\n\t( state: State, kind: string, name: string, recordId: EntityRecordKey ) => [\n\t\tstate.entities.config,\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.edits?.[ recordId ],\n\t]\n);\n\n/**\n * Returns true if the specified entity record has edits,\n * and false otherwise.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return Whether the entity record has edits or not.\n */\nexport function hasEditsForEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean {\n\treturn (\n\t\tisSavingEntityRecord( state, kind, name, recordId ) ||\n\t\tObject.keys(\n\t\t\tgetEntityRecordNonTransientEdits( state, kind, name, recordId )\n\t\t).length > 0\n\t);\n}\n\n/**\n * Returns the specified entity record, merged with its edits.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record, merged with its edits.\n */\nexport const getEditedEntityRecord = createSelector(\n\t< EntityRecord extends ET.EntityRecord< any > >(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordId: EntityRecordKey\n\t): ET.Updatable< EntityRecord > | false => {\n\t\tconst raw = getRawEntityRecord( state, kind, name, recordId );\n\t\tconst edited = getEntityRecordEdits( state, kind, name, recordId );\n\t\t// Never return a non-falsy empty object. Unfortunately we can't return\n\t\t// undefined or null because we were previously returning an empty\n\t\t// object, so trying to read properties from the result would throw.\n\t\t// Using false here is a workaround to avoid breaking changes.\n\t\tif ( ! raw && ! edited ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn {\n\t\t\t...raw,\n\t\t\t...edited,\n\t\t};\n\t},\n\t(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordId: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t) => {\n\t\tconst context = query?.context ?? 'default';\n\t\treturn [\n\t\t\tstate.entities.config,\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData.items[\n\t\t\t\tcontext\n\t\t\t]?.[ recordId ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData\n\t\t\t\t.itemIsComplete[ context ]?.[ recordId ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.edits?.[ recordId ],\n\t\t];\n\t}\n);\n\n/**\n * Returns true if the specified entity record is autosaving, and false otherwise.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return Whether the entity record is autosaving or not.\n */\nexport function isAutosavingEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean {\n\tconst { pending, isAutosave } =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.saving?.[ recordId ] ?? {};\n\treturn Boolean( pending && isAutosave );\n}\n\n/**\n * Returns true if the specified entity record is saving, and false otherwise.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return Whether the entity record is saving or not.\n */\nexport function isSavingEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean {\n\treturn (\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.saving?.[\n\t\t\trecordId as EntityRecordKey\n\t\t]?.pending ?? false\n\t);\n}\n\n/**\n * Returns true if the specified entity record is deleting, and false otherwise.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return Whether the entity record is deleting or not.\n */\nexport function isDeletingEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean {\n\treturn (\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.deleting?.[\n\t\t\trecordId as EntityRecordKey\n\t\t]?.pending ?? false\n\t);\n}\n\n/**\n * Returns the specified entity record's last save error.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record's save error.\n */\nexport function getLastEntitySaveError(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): any {\n\treturn state.entities.records?.[ kind ]?.[ name ]?.saving?.[ recordId ]\n\t\t?.error;\n}\n\n/**\n * Returns the specified entity record's last delete error.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record's save error.\n */\nexport function getLastEntityDeleteError(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): any {\n\treturn state.entities.records?.[ kind ]?.[ name ]?.deleting?.[ recordId ]\n\t\t?.error;\n}\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Returns the previous edit from the current undo offset\n * for the entity records edits history, if any.\n *\n * @deprecated since 6.3\n *\n * @param state State tree.\n *\n * @return The edit.\n */\nexport function getUndoEdit( state: State ): Optional< any > {\n\tdeprecated( \"select( 'core' ).getUndoEdit()\", {\n\t\tsince: '6.3',\n\t} );\n\treturn undefined;\n}\n/* eslint-enable @typescript-eslint/no-unused-vars */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Returns the next edit from the current undo offset\n * for the entity records edits history, if any.\n *\n * @deprecated since 6.3\n *\n * @param state State tree.\n *\n * @return The edit.\n */\nexport function getRedoEdit( state: State ): Optional< any > {\n\tdeprecated( \"select( 'core' ).getRedoEdit()\", {\n\t\tsince: '6.3',\n\t} );\n\treturn undefined;\n}\n/* eslint-enable @typescript-eslint/no-unused-vars */\n\n/**\n * Returns true if there is a previous edit from the current undo offset\n * for the entity records edits history, and false otherwise.\n *\n * @param state State tree.\n *\n * @return Whether there is a previous edit or not.\n */\nexport function hasUndo( state: State ): boolean {\n\treturn state.undoManager.hasUndo();\n}\n\n/**\n * Returns true if there is a next edit from the current undo offset\n * for the entity records edits history, and false otherwise.\n *\n * @param state State tree.\n *\n * @return Whether there is a next edit or not.\n */\nexport function hasRedo( state: State ): boolean {\n\treturn state.undoManager.hasRedo();\n}\n\n/**\n * Return the current theme.\n *\n * @param state Data state.\n *\n * @return The current theme.\n */\nexport function getCurrentTheme( state: State ): any {\n\tif ( ! state.currentTheme ) {\n\t\treturn null;\n\t}\n\treturn getEntityRecord( state, 'root', 'theme', state.currentTheme );\n}\n\n/**\n * Return the ID of the current global styles object.\n *\n * @param state Data state.\n *\n * @return The current global styles ID.\n */\nexport function __experimentalGetCurrentGlobalStylesId( state: State ): string {\n\treturn state.currentGlobalStylesId;\n}\n\n/**\n * Return theme supports data in the index.\n *\n * @param state Data state.\n *\n * @return Index data.\n */\nexport function getThemeSupports( state: State ): any {\n\treturn getCurrentTheme( state )?.theme_supports ?? EMPTY_OBJECT;\n}\n\n/**\n * Returns the embed preview for the given URL.\n *\n * @param state Data state.\n * @param url Embedded URL.\n *\n * @return Undefined if the preview has not been fetched, otherwise, the preview fetched from the embed preview API.\n */\nexport function getEmbedPreview( state: State, url: string ): any {\n\treturn state.embedPreviews[ url ];\n}\n\n/**\n * Determines if the returned preview is an oEmbed link fallback.\n *\n * WordPress can be configured to return a simple link to a URL if it is not embeddable.\n * We need to be able to determine if a URL is embeddable or not, based on what we\n * get back from the oEmbed preview API.\n *\n * @param state Data state.\n * @param url Embedded URL.\n *\n * @return Is the preview for the URL an oEmbed link fallback.\n */\nexport function isPreviewEmbedFallback( state: State, url: string ): boolean {\n\tconst preview = state.embedPreviews[ url ];\n\tconst oEmbedLinkCheck = '<a href=\"' + url + '\">' + url + '</a>';\n\tif ( ! preview ) {\n\t\treturn false;\n\t}\n\treturn preview.html === oEmbedLinkCheck;\n}\n\n/**\n * Returns whether the current user can perform the given action on the given\n * REST resource.\n *\n * Calling this may trigger an OPTIONS request to the REST API via the\n * `canUser()` resolver.\n *\n * https://developer.wordpress.org/rest-api/reference/\n *\n * @param state Data state.\n * @param action Action to check. One of: 'create', 'read', 'update', 'delete'.\n * @param resource Entity resource to check. Accepts entity object `{ kind: 'root', name: 'media', id: 1 }`\n * or REST base as a string - `media`.\n * @param id Optional ID of the rest resource to check.\n *\n * @return Whether or not the user can perform the action,\n * or `undefined` if the OPTIONS request is still being made.\n */\nexport function canUser(\n\tstate: State,\n\taction: string,\n\tresource: string | EntityResource,\n\tid?: EntityRecordKey\n): boolean | undefined {\n\tconst isEntity = typeof resource === 'object';\n\tif ( isEntity && ( ! resource.kind || ! resource.name ) ) {\n\t\treturn false;\n\t}\n\n\tconst key = getUserPermissionCacheKey( action, resource, id );\n\n\treturn state.userPermissions[ key ];\n}\n\n/**\n * Returns whether the current user can edit the given entity.\n *\n * Calling this may trigger an OPTIONS request to the REST API via the\n * `canUser()` resolver.\n *\n * https://developer.wordpress.org/rest-api/reference/\n *\n * @param state Data state.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record's id.\n * @return Whether or not the user can edit,\n * or `undefined` if the OPTIONS request is still being made.\n */\nexport function canUserEditEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean | undefined {\n\tdeprecated( `wp.data.select( 'core' ).canUserEditEntityRecord()`, {\n\t\tsince: '6.7',\n\t\talternative: `wp.data.select( 'core' ).canUser( 'update', { kind, name, id } )`,\n\t} );\n\n\treturn canUser( state, 'update', { kind, name, id: recordId } );\n}\n\n/**\n * Returns the latest autosaves for the post.\n *\n * May return multiple autosaves since the backend stores one autosave per\n * author for each post.\n *\n * @param state State tree.\n * @param postType The type of the parent post.\n * @param postId The id of the parent post.\n *\n * @return An array of autosaves for the post, or undefined if there is none.\n */\nexport function getAutosaves(\n\tstate: State,\n\tpostType: string,\n\tpostId: EntityRecordKey\n): Array< any > | undefined {\n\treturn state.autosaves[ postId ];\n}\n\n/**\n * Returns the autosave for the post and author.\n *\n * @param state State tree.\n * @param postType The type of the parent post.\n * @param postId The id of the parent post.\n * @param authorId The id of the author.\n *\n * @return The autosave for the post and author.\n */\nexport function getAutosave< EntityRecord extends ET.EntityRecord< any > >(\n\tstate: State,\n\tpostType: string,\n\tpostId: EntityRecordKey,\n\tauthorId: EntityRecordKey\n): EntityRecord | undefined {\n\tif ( authorId === undefined ) {\n\t\treturn;\n\t}\n\n\tconst autosaves = state.autosaves[ postId ];\n\n\treturn autosaves?.find(\n\t\t( autosave: any ) => autosave.author === authorId\n\t) as EntityRecord | undefined;\n}\n\n/**\n * Returns true if the REST request for autosaves has completed.\n *\n * @param state State tree.\n * @param postType The type of the parent post.\n * @param postId The id of the parent post.\n *\n * @return True if the REST request was completed. False otherwise.\n */\nexport const hasFetchedAutosaves = createRegistrySelector(\n\t( select ) =>\n\t\t(\n\t\t\tstate: State,\n\t\t\tpostType: string,\n\t\t\tpostId: EntityRecordKey\n\t\t): boolean => {\n\t\t\treturn select( STORE_NAME ).hasFinishedResolution( 'getAutosaves', [\n\t\t\t\tpostType,\n\t\t\t\tpostId,\n\t\t\t] );\n\t\t}\n);\n\n/**\n * Returns a new reference when edited values have changed. This is useful in\n * inferring where an edit has been made between states by comparison of the\n * return values using strict equality.\n *\n * @example\n *\n * ```\n * const hasEditOccurred = (\n * getReferenceByDistinctEdits( beforeState ) !==\n * getReferenceByDistinctEdits( afterState )\n * );\n * ```\n *\n * @param state Editor state.\n *\n * @return A value whose reference will change only when an edit occurs.\n */\nexport function getReferenceByDistinctEdits( state ) {\n\treturn state.editsReference;\n}\n\n/**\n * Retrieve the current theme's base global styles\n *\n * @param state Editor state.\n *\n * @return The Global Styles object.\n */\nexport function __experimentalGetCurrentThemeBaseGlobalStyles(\n\tstate: State\n): any {\n\tconst currentTheme = getCurrentTheme( state );\n\tif ( ! currentTheme ) {\n\t\treturn null;\n\t}\n\treturn state.themeBaseGlobalStyles[ currentTheme.stylesheet ];\n}\n\n/**\n * Return the ID of the current global styles object.\n *\n * @param state Data state.\n *\n * @return The current global styles ID.\n */\nexport function __experimentalGetCurrentThemeGlobalStylesVariations(\n\tstate: State\n): string | null {\n\tconst currentTheme = getCurrentTheme( state );\n\tif ( ! currentTheme ) {\n\t\treturn null;\n\t}\n\treturn state.themeGlobalStyleVariations[ currentTheme.stylesheet ];\n}\n\n/**\n * Retrieve the list of registered block patterns.\n *\n * @param state Data state.\n *\n * @return Block pattern list.\n */\nexport function getBlockPatterns( state: State ): Array< any > {\n\treturn state.blockPatterns;\n}\n\n/**\n * Retrieve the list of registered block pattern categories.\n *\n * @param state Data state.\n *\n * @return Block pattern category list.\n */\nexport function getBlockPatternCategories( state: State ): Array< any > {\n\treturn state.blockPatternCategories;\n}\n\n/**\n * Retrieve the registered user pattern categories.\n *\n * @param state Data state.\n *\n * @return User patterns category array.\n */\n\nexport function getUserPatternCategories(\n\tstate: State\n): Array< UserPatternCategory > {\n\treturn state.userPatternCategories;\n}\n\n/**\n * Returns the revisions of the current global styles theme.\n *\n * @deprecated since WordPress 6.5.0. Callers should use `select( 'core' ).getRevisions( 'root', 'globalStyles', ${ recordKey } )` instead, where `recordKey` is the id of the global styles parent post.\n *\n * @param state Data state.\n *\n * @return The current global styles.\n */\nexport function getCurrentThemeGlobalStylesRevisions(\n\tstate: State\n): Array< object > | null {\n\tdeprecated( \"select( 'core' ).getCurrentThemeGlobalStylesRevisions()\", {\n\t\tsince: '6.5.0',\n\t\talternative:\n\t\t\t\"select( 'core' ).getRevisions( 'root', 'globalStyles', ${ recordKey } )\",\n\t} );\n\tconst currentGlobalStylesId =\n\t\t__experimentalGetCurrentGlobalStylesId( state );\n\n\tif ( ! currentGlobalStylesId ) {\n\t\treturn null;\n\t}\n\n\treturn state.themeGlobalStyleRevisions[ currentGlobalStylesId ];\n}\n\n/**\n * Returns the default template use to render a given query.\n *\n * @param state Data state.\n * @param query Query.\n *\n * @return The default template id for the given query.\n */\nexport function getDefaultTemplateId(\n\tstate: State,\n\tquery: TemplateQuery\n): string {\n\treturn state.defaultTemplates[ JSON.stringify( query ) ];\n}\n\n/**\n * Returns an entity's revisions.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordKey The key of the entity record whose revisions you want to fetch.\n * @param query Optional query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see revisions schema in [the REST API Handbook](https://developer.wordpress.org/rest-api/reference/). Then see the arguments available \"Retrieve a [Entity kind]\".\n *\n * @return Record.\n */\nexport const getRevisions = (\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordKey: EntityRecordKey,\n\tquery?: GetRecordsHttpQuery\n): RevisionRecord[] | null => {\n\tconst queriedStateRevisions =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.revisions?.[ recordKey ];\n\tif ( ! queriedStateRevisions ) {\n\t\treturn null;\n\t}\n\n\treturn getQueriedItems( queriedStateRevisions, query );\n};\n\n/**\n * Returns a single, specific revision of a parent entity.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordKey The key of the entity record whose revisions you want to fetch.\n * @param revisionKey The revision's key.\n * @param query Optional query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see revisions schema in [the REST API Handbook](https://developer.wordpress.org/rest-api/reference/). Then see the arguments available \"Retrieve a [entity kind]\".\n *\n * @return Record.\n */\nexport const getRevision = createSelector(\n\t(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordKey: EntityRecordKey,\n\t\trevisionKey: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t): RevisionRecord | Record< PropertyKey, never > | undefined => {\n\t\tconst queriedState =\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.revisions?.[\n\t\t\t\trecordKey\n\t\t\t];\n\n\t\tif ( ! queriedState ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\tconst context = query?.context ?? 'default';\n\n\t\tif ( query === undefined ) {\n\t\t\t// If expecting a complete item, validate that completeness.\n\t\t\tif ( ! queriedState.itemIsComplete[ context ]?.[ revisionKey ] ) {\n\t\t\t\treturn undefined;\n\t\t\t}\n\n\t\t\treturn queriedState.items[ context ][ revisionKey ];\n\t\t}\n\n\t\tconst item = queriedState.items[ context ]?.[ revisionKey ];\n\t\tif ( item && query._fields ) {\n\t\t\tconst filteredItem = {};\n\t\t\tconst fields = getNormalizedCommaSeparable( query._fields ) ?? [];\n\n\t\t\tfor ( let f = 0; f < fields.length; f++ ) {\n\t\t\t\tconst field = fields[ f ].split( '.' );\n\t\t\t\tlet value = item;\n\t\t\t\tfield.forEach( ( fieldName ) => {\n\t\t\t\t\tvalue = value?.[ fieldName ];\n\t\t\t\t} );\n\t\t\t\tsetNestedValue( filteredItem, field, value );\n\t\t\t}\n\n\t\t\treturn filteredItem;\n\t\t}\n\n\t\treturn item;\n\t},\n\t( state: State, kind, name, recordKey, revisionKey, query ) => {\n\t\tconst context = query?.context ?? 'default';\n\t\treturn [\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.revisions?.[ recordKey ]\n\t\t\t\t?.items?.[ context ]?.[ revisionKey ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.revisions?.[ recordKey ]\n\t\t\t\t?.itemIsComplete?.[ context ]?.[ revisionKey ],\n\t\t];\n\t}\n);\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_data","require","_url","_deprecated","_interopRequireDefault","_name","_queriedData","_entities","_utils","_logEntityDeprecation","EMPTY_OBJECT","isRequestingEmbedPreview","exports","createRegistrySelector","select","state","url","STORE_NAME","isResolving","getAuthors","query","deprecated","since","alternative","path","addQueryArgs","getUserQueryResults","getCurrentUser","currentUser","createSelector","queryID","_state$users$queries$","queryResults","users","queries","map","id","byId","getEntitiesByKind","kind","getEntitiesConfig","entities","config","filter","entity","getEntity","name","getEntityConfig","logEntityDeprecation","find","getEntityRecord","key","_query$context","queriedState","records","queriedData","undefined","context","itemIsComplete","items","item","_fields","_getNormalizedCommaSe","filteredItem","fields","getNormalizedCommaSeparable","f","length","field","split","value","forEach","fieldName","setNestedValue","recordId","_query$context2","__unstableNormalizeArgs","args","newArgs","recordKey","isNumericID","Number","__experimentalGetEntityRecordNoResolver","getRawEntityRecord","record","Object","keys","reduce","accumulator","_key","isRawAttribute","raw","_query$context3","hasEntityRecords","Array","isArray","getEntityRecords","getQueriedItems","getEntityRecordsTotalItems","getQueriedTotalItems","getEntityRecordsTotalPages","per_page","totalItems","getQueriedTotalPages","Math","ceil","__experimentalGetDirtyEntityRecords","dirtyRecords","primaryKeys","edits","primaryKey","hasEditsForEntityRecord","entityConfig","entityRecord","getEditedEntityRecord","push","DEFAULT_ENTITY_KEY","title","getTitle","__experimentalGetEntitiesBeingSaved","recordsBeingSaved","saving","isSavingEntityRecord","getEntityRecordEdits","getEntityRecordNonTransientEdits","transientEdits","acc","edited","_query$context4","isAutosavingEntityRecord","_state$entities$recor","pending","isAutosave","Boolean","_state$entities$recor2","isDeletingEntityRecord","_state$entities$recor3","deleting","getLastEntitySaveError","error","getLastEntityDeleteError","getUndoEdit","getRedoEdit","hasUndo","undoManager","hasRedo","getCurrentTheme","currentTheme","__experimentalGetCurrentGlobalStylesId","currentGlobalStylesId","getThemeSupports","_getCurrentTheme$them","theme_supports","getEmbedPreview","embedPreviews","isPreviewEmbedFallback","preview","oEmbedLinkCheck","html","canUser","action","resource","isEntity","getUserPermissionCacheKey","userPermissions","canUserEditEntityRecord","getAutosaves","postType","postId","autosaves","getAutosave","authorId","autosave","author","hasFetchedAutosaves","hasFinishedResolution","getReferenceByDistinctEdits","editsReference","__experimentalGetCurrentThemeBaseGlobalStyles","themeBaseGlobalStyles","stylesheet","__experimentalGetCurrentThemeGlobalStylesVariations","themeGlobalStyleVariations","getBlockPatterns","blockPatterns","getBlockPatternCategories","blockPatternCategories","getUserPatternCategories","userPatternCategories","getCurrentThemeGlobalStylesRevisions","themeGlobalStyleRevisions","getDefaultTemplateId","defaultTemplates","JSON","stringify","getRevisions","queriedStateRevisions","revisions","getRevision","revisionKey","_query$context5","_getNormalizedCommaSe2","_query$context6"],"sources":["@wordpress/core-data/src/selectors.ts"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { createSelector, createRegistrySelector } from '@wordpress/data';\nimport { addQueryArgs } from '@wordpress/url';\nimport deprecated from '@wordpress/deprecated';\n\n/**\n * Internal dependencies\n */\nimport { STORE_NAME } from './name';\nimport {\n\tgetQueriedItems,\n\tgetQueriedTotalItems,\n\tgetQueriedTotalPages,\n} from './queried-data';\nimport { DEFAULT_ENTITY_KEY } from './entities';\nimport {\n\tgetNormalizedCommaSeparable,\n\tisRawAttribute,\n\tsetNestedValue,\n\tisNumericID,\n\tgetUserPermissionCacheKey,\n} from './utils';\nimport type * as ET from './entity-types';\nimport type { UndoManager } from '@wordpress/undo-manager';\nimport logEntityDeprecation from './utils/log-entity-deprecation';\n\n// This is an incomplete, high-level approximation of the State type.\n// It makes the selectors slightly more safe, but is intended to evolve\n// into a more detailed representation over time.\n// See https://github.com/WordPress/gutenberg/pull/40025#discussion_r865410589 for more context.\nexport interface State {\n\tautosaves: Record< string | number, Array< unknown > >;\n\tblockPatterns: Array< unknown >;\n\tblockPatternCategories: Array< unknown >;\n\tcurrentGlobalStylesId: string;\n\tcurrentTheme: string;\n\tcurrentUser: ET.User< 'edit' >;\n\tembedPreviews: Record< string, { html: string } >;\n\tentities: EntitiesState;\n\tthemeBaseGlobalStyles: Record< string, Object >;\n\tthemeGlobalStyleVariations: Record< string, string >;\n\tthemeGlobalStyleRevisions: Record< number, Object >;\n\tundoManager: UndoManager;\n\tuserPermissions: Record< string, boolean >;\n\tusers: UserState;\n\tnavigationFallbackId: EntityRecordKey;\n\tuserPatternCategories: Array< UserPatternCategory >;\n\tdefaultTemplates: Record< string, string >;\n\tregisteredPostMeta: Record< string, Object >;\n}\n\ntype EntityRecordKey = string | number;\n\ninterface EntitiesState {\n\tconfig: EntityConfig[];\n\trecords: Record< string, Record< string, EntityState< ET.EntityRecord > > >;\n}\n\ninterface QueriedData {\n\titems: Record< ET.Context, Record< number, ET.EntityRecord > >;\n\titemIsComplete: Record< ET.Context, Record< number, boolean > >;\n\tqueries: Record< ET.Context, Record< string, Array< number > > >;\n}\n\ntype RevisionRecord =\n\t| Record< ET.Context, Record< number, ET.PostRevision > >\n\t| Record< ET.Context, Record< number, ET.GlobalStylesRevision > >;\n\ninterface RevisionsQueriedData {\n\titems: RevisionRecord;\n\titemIsComplete: Record< ET.Context, Record< number, boolean > >;\n\tqueries: Record< ET.Context, Record< string, Array< number > > >;\n}\n\ninterface EntityState< EntityRecord extends ET.EntityRecord > {\n\tedits: Record< string, Partial< EntityRecord > >;\n\tsaving: Record<\n\t\tstring,\n\t\tPartial< { pending: boolean; isAutosave: boolean; error: Error } >\n\t>;\n\tdeleting: Record< string, Partial< { pending: boolean; error: Error } > >;\n\tqueriedData: QueriedData;\n\trevisions?: RevisionsQueriedData;\n}\n\ninterface EntityConfig {\n\tname: string;\n\tkind: string;\n}\n\ninterface UserState {\n\tqueries: Record< string, EntityRecordKey[] >;\n\tbyId: Record< EntityRecordKey, ET.User< 'edit' > >;\n}\n\ntype TemplateQuery = {\n\tslug?: string;\n\tis_custom?: boolean;\n\tignore_empty?: boolean;\n};\n\nexport interface UserPatternCategory {\n\tid: number;\n\tname: string;\n\tlabel: string;\n\tslug: string;\n\tdescription: string;\n}\n\ntype Optional< T > = T | undefined;\n\n/**\n * HTTP Query parameters sent with the API request to fetch the entity records.\n */\nexport type GetRecordsHttpQuery = Record< string, any >;\n\n/**\n * Arguments for EntityRecord selectors.\n */\ntype EntityRecordArgs =\n\t| [ string, string, EntityRecordKey ]\n\t| [ string, string, EntityRecordKey, GetRecordsHttpQuery ];\n\ntype EntityResource = { kind: string; name: string; id?: EntityRecordKey };\n\n/**\n * Shared reference to an empty object for cases where it is important to avoid\n * returning a new object reference on every invocation, as in a connected or\n * other pure component which performs `shouldComponentUpdate` check on props.\n * This should be used as a last resort, since the normalized data should be\n * maintained by the reducer result in state.\n */\nconst EMPTY_OBJECT = {};\n\n/**\n * Returns true if a request is in progress for embed preview data, or false\n * otherwise.\n *\n * @param state Data state.\n * @param url URL the preview would be for.\n *\n * @return Whether a request is in progress for an embed preview.\n */\nexport const isRequestingEmbedPreview = createRegistrySelector(\n\t( select: any ) =>\n\t\t( state: State, url: string ): boolean => {\n\t\t\treturn select( STORE_NAME ).isResolving( 'getEmbedPreview', [\n\t\t\t\turl,\n\t\t\t] );\n\t\t}\n);\n\n/**\n * Returns all available authors.\n *\n * @deprecated since 11.3. Callers should use `select( 'core' ).getUsers({ who: 'authors' })` instead.\n *\n * @param state Data state.\n * @param query Optional object of query parameters to\n * include with request. For valid query parameters see the [Users page](https://developer.wordpress.org/rest-api/reference/users/) in the REST API Handbook and see the arguments for [List Users](https://developer.wordpress.org/rest-api/reference/users/#list-users) and [Retrieve a User](https://developer.wordpress.org/rest-api/reference/users/#retrieve-a-user).\n * @return Authors list.\n */\nexport function getAuthors(\n\tstate: State,\n\tquery?: GetRecordsHttpQuery\n): ET.User[] {\n\tdeprecated( \"select( 'core' ).getAuthors()\", {\n\t\tsince: '5.9',\n\t\talternative: \"select( 'core' ).getUsers({ who: 'authors' })\",\n\t} );\n\n\tconst path = addQueryArgs(\n\t\t'/wp/v2/users/?who=authors&per_page=100',\n\t\tquery\n\t);\n\treturn getUserQueryResults( state, path );\n}\n\n/**\n * Returns the current user.\n *\n * @param state Data state.\n *\n * @return Current user object.\n */\nexport function getCurrentUser( state: State ): ET.User< 'edit' > {\n\treturn state.currentUser;\n}\n\n/**\n * Returns all the users returned by a query ID.\n *\n * @param state Data state.\n * @param queryID Query ID.\n *\n * @return Users list.\n */\nexport const getUserQueryResults = createSelector(\n\t( state: State, queryID: string ): ET.User< 'edit' >[] => {\n\t\tconst queryResults = state.users.queries[ queryID ] ?? [];\n\n\t\treturn queryResults.map( ( id ) => state.users.byId[ id ] );\n\t},\n\t( state: State, queryID: string ) => [\n\t\tstate.users.queries[ queryID ],\n\t\tstate.users.byId,\n\t]\n);\n\n/**\n * Returns the loaded entities for the given kind.\n *\n * @deprecated since WordPress 6.0. Use getEntitiesConfig instead\n * @param state Data state.\n * @param kind Entity kind.\n *\n * @return Array of entities with config matching kind.\n */\nexport function getEntitiesByKind( state: State, kind: string ): Array< any > {\n\tdeprecated( \"wp.data.select( 'core' ).getEntitiesByKind()\", {\n\t\tsince: '6.0',\n\t\talternative: \"wp.data.select( 'core' ).getEntitiesConfig()\",\n\t} );\n\treturn getEntitiesConfig( state, kind );\n}\n\n/**\n * Returns the loaded entities for the given kind.\n *\n * @param state Data state.\n * @param kind Entity kind.\n *\n * @return Array of entities with config matching kind.\n */\nexport const getEntitiesConfig = createSelector(\n\t( state: State, kind: string ): Array< any > =>\n\t\tstate.entities.config.filter( ( entity ) => entity.kind === kind ),\n\t/* eslint-disable @typescript-eslint/no-unused-vars */\n\t( state: State, kind: string ) => state.entities.config\n\t/* eslint-enable @typescript-eslint/no-unused-vars */\n);\n/**\n * Returns the entity config given its kind and name.\n *\n * @deprecated since WordPress 6.0. Use getEntityConfig instead\n * @param state Data state.\n * @param kind Entity kind.\n * @param name Entity name.\n *\n * @return Entity config\n */\nexport function getEntity( state: State, kind: string, name: string ): any {\n\tdeprecated( \"wp.data.select( 'core' ).getEntity()\", {\n\t\tsince: '6.0',\n\t\talternative: \"wp.data.select( 'core' ).getEntityConfig()\",\n\t} );\n\treturn getEntityConfig( state, kind, name );\n}\n\n/**\n * Returns the entity config given its kind and name.\n *\n * @param state Data state.\n * @param kind Entity kind.\n * @param name Entity name.\n *\n * @return Entity config\n */\nexport function getEntityConfig(\n\tstate: State,\n\tkind: string,\n\tname: string\n): any {\n\tlogEntityDeprecation( kind, name, 'getEntityConfig' );\n\n\treturn state.entities.config?.find(\n\t\t( config ) => config.kind === kind && config.name === name\n\t);\n}\n\n/**\n * GetEntityRecord is declared as a *callable interface* with\n * two signatures to work around the fact that TypeScript doesn't\n * allow currying generic functions:\n *\n * ```ts\n * \t\ttype CurriedState = F extends ( state: any, ...args: infer P ) => infer R\n * \t\t\t? ( ...args: P ) => R\n * \t\t\t: F;\n * \t\ttype Selector = <K extends string | number>(\n * state: any,\n * kind: K,\n * key: K extends string ? 'string value' : false\n * ) => K;\n * \t\ttype BadlyInferredSignature = CurriedState< Selector >\n * // BadlyInferredSignature evaluates to:\n * // (kind: string number, key: false | \"string value\") => string number\n * ```\n *\n * The signature without the state parameter shipped as CurriedSignature\n * is used in the return value of `select( coreStore )`.\n *\n * See https://github.com/WordPress/gutenberg/pull/41578 for more details.\n */\nexport interface GetEntityRecord {\n\t<\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\tkey?: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t): EntityRecord | undefined;\n\n\tCurriedSignature: <\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tkind: string,\n\t\tname: string,\n\t\tkey?: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t) => EntityRecord | undefined;\n\t__unstableNormalizeArgs?: ( args: EntityRecordArgs ) => EntityRecordArgs;\n}\n\n/**\n * Returns the Entity's record object by key. Returns `null` if the value is not\n * yet received, undefined if the value entity is known to not exist, or the\n * entity object if it exists and is received.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param key Optional record's key. If requesting a global record (e.g. site settings), the key can be omitted. If requesting a specific item, the key must always be included.\n * @param query Optional query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available \"Retrieve a [Entity kind]\".\n *\n * @return Record.\n */\nexport const getEntityRecord = createSelector(\n\t( <\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\tkey?: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t): EntityRecord | undefined => {\n\t\tlogEntityDeprecation( kind, name, 'getEntityRecord' );\n\n\t\tconst queriedState =\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData;\n\t\tif ( ! queriedState ) {\n\t\t\treturn undefined;\n\t\t}\n\t\tconst context = query?.context ?? 'default';\n\n\t\tif ( query === undefined ) {\n\t\t\t// If expecting a complete item, validate that completeness.\n\t\t\tif ( ! queriedState.itemIsComplete[ context ]?.[ key ] ) {\n\t\t\t\treturn undefined;\n\t\t\t}\n\n\t\t\treturn queriedState.items[ context ][ key ];\n\t\t}\n\n\t\tconst item = queriedState.items[ context ]?.[ key ];\n\t\tif ( item && query._fields ) {\n\t\t\tconst filteredItem = {};\n\t\t\tconst fields = getNormalizedCommaSeparable( query._fields ) ?? [];\n\t\t\tfor ( let f = 0; f < fields.length; f++ ) {\n\t\t\t\tconst field = fields[ f ].split( '.' );\n\t\t\t\tlet value = item;\n\t\t\t\tfield.forEach( ( fieldName ) => {\n\t\t\t\t\tvalue = value?.[ fieldName ];\n\t\t\t\t} );\n\t\t\t\tsetNestedValue( filteredItem, field, value );\n\t\t\t}\n\t\t\treturn filteredItem as EntityRecord;\n\t\t}\n\n\t\treturn item;\n\t} ) as GetEntityRecord,\n\t( state: State, kind, name, recordId, query ) => {\n\t\tconst context = query?.context ?? 'default';\n\t\treturn [\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData?.items[\n\t\t\t\tcontext\n\t\t\t]?.[ recordId ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData\n\t\t\t\t?.itemIsComplete[ context ]?.[ recordId ],\n\t\t];\n\t}\n) as GetEntityRecord;\n\n/**\n * Normalizes `recordKey`s that look like numeric IDs to numbers.\n *\n * @param args EntityRecordArgs the selector arguments.\n * @return EntityRecordArgs the normalized arguments.\n */\ngetEntityRecord.__unstableNormalizeArgs = (\n\targs: EntityRecordArgs\n): EntityRecordArgs => {\n\tconst newArgs = [ ...args ] as EntityRecordArgs;\n\tconst recordKey = newArgs?.[ 2 ];\n\n\t// If recordKey looks to be a numeric ID then coerce to number.\n\tnewArgs[ 2 ] = isNumericID( recordKey ) ? Number( recordKey ) : recordKey;\n\n\treturn newArgs;\n};\n\n/**\n * Returns the Entity's record object by key. Doesn't trigger a resolver nor requests the entity records from the API if the entity record isn't available in the local state.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param key Record's key\n *\n * @return Record.\n */\nexport function __experimentalGetEntityRecordNoResolver<\n\tEntityRecord extends ET.EntityRecord< any >,\n>( state: State, kind: string, name: string, key: EntityRecordKey ) {\n\treturn getEntityRecord< EntityRecord >( state, kind, name, key );\n}\n\n/**\n * Returns the entity's record object by key,\n * with its attributes mapped to their raw values.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param key Record's key.\n *\n * @return Object with the entity's raw attributes.\n */\nexport const getRawEntityRecord = createSelector(\n\t< EntityRecord extends ET.EntityRecord< any > >(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\tkey: EntityRecordKey\n\t): EntityRecord | undefined => {\n\t\tlogEntityDeprecation( kind, name, 'getRawEntityRecord' );\n\n\t\tconst record = getEntityRecord< EntityRecord >(\n\t\t\tstate,\n\t\t\tkind,\n\t\t\tname,\n\t\t\tkey\n\t\t);\n\t\treturn (\n\t\t\trecord &&\n\t\t\tObject.keys( record ).reduce( ( accumulator, _key ) => {\n\t\t\t\tif (\n\t\t\t\t\tisRawAttribute( getEntityConfig( state, kind, name ), _key )\n\t\t\t\t) {\n\t\t\t\t\t// Because edits are the \"raw\" attribute values,\n\t\t\t\t\t// we return those from record selectors to make rendering,\n\t\t\t\t\t// comparisons, and joins with edits easier.\n\t\t\t\t\taccumulator[ _key ] =\n\t\t\t\t\t\trecord[ _key ]?.raw !== undefined\n\t\t\t\t\t\t\t? record[ _key ]?.raw\n\t\t\t\t\t\t\t: record[ _key ];\n\t\t\t\t} else {\n\t\t\t\t\taccumulator[ _key ] = record[ _key ];\n\t\t\t\t}\n\t\t\t\treturn accumulator;\n\t\t\t}, {} as any )\n\t\t);\n\t},\n\t(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordId: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t) => {\n\t\tconst context = query?.context ?? 'default';\n\t\treturn [\n\t\t\tstate.entities.config,\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData?.items[\n\t\t\t\tcontext\n\t\t\t]?.[ recordId ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData\n\t\t\t\t?.itemIsComplete[ context ]?.[ recordId ],\n\t\t];\n\t}\n);\n\n/**\n * Returns true if records have been received for the given set of parameters,\n * or false otherwise.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param query Optional terms query. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for \"List [Entity kind]s\".\n *\n * @return Whether entity records have been received.\n */\nexport function hasEntityRecords(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\tquery?: GetRecordsHttpQuery\n): boolean {\n\tlogEntityDeprecation( kind, name, 'hasEntityRecords' );\n\treturn Array.isArray( getEntityRecords( state, kind, name, query ) );\n}\n\n/**\n * GetEntityRecord is declared as a *callable interface* with\n * two signatures to work around the fact that TypeScript doesn't\n * allow currying generic functions.\n *\n * @see GetEntityRecord\n * @see https://github.com/WordPress/gutenberg/pull/41578\n */\nexport interface GetEntityRecords {\n\t<\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\tquery?: GetRecordsHttpQuery\n\t): EntityRecord[] | null;\n\n\tCurriedSignature: <\n\t\tEntityRecord extends\n\t\t\t| ET.EntityRecord< any >\n\t\t\t| Partial< ET.EntityRecord< any > >,\n\t>(\n\t\tkind: string,\n\t\tname: string,\n\t\tquery?: GetRecordsHttpQuery\n\t) => EntityRecord[] | null;\n}\n\n/**\n * Returns the Entity's records.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param query Optional terms query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for \"List [Entity kind]s\".\n *\n * @return Records.\n */\nexport const getEntityRecords = ( <\n\tEntityRecord extends\n\t\t| ET.EntityRecord< any >\n\t\t| Partial< ET.EntityRecord< any > >,\n>(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\tquery: GetRecordsHttpQuery\n): EntityRecord[] | null => {\n\tlogEntityDeprecation( kind, name, 'getEntityRecords' );\n\n\t// Queried data state is prepopulated for all known entities. If this is not\n\t// assigned for the given parameters, then it is known to not exist.\n\tconst queriedState =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData;\n\tif ( ! queriedState ) {\n\t\treturn null;\n\t}\n\treturn getQueriedItems( queriedState, query );\n} ) as GetEntityRecords;\n\n/**\n * Returns the Entity's total available records for a given query (ignoring pagination).\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param query Optional terms query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for \"List [Entity kind]s\".\n *\n * @return number | null.\n */\nexport const getEntityRecordsTotalItems = (\n\tstate: State,\n\tkind: string,\n\tname: string,\n\tquery: GetRecordsHttpQuery\n): number | null => {\n\tlogEntityDeprecation( kind, name, 'getEntityRecordsTotalItems' );\n\n\t// Queried data state is prepopulated for all known entities. If this is not\n\t// assigned for the given parameters, then it is known to not exist.\n\tconst queriedState =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData;\n\tif ( ! queriedState ) {\n\t\treturn null;\n\t}\n\treturn getQueriedTotalItems( queriedState, query );\n};\n\n/**\n * Returns the number of available pages for the given query.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param query Optional terms query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see the [Reference](https://developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for \"List [Entity kind]s\".\n *\n * @return number | null.\n */\nexport const getEntityRecordsTotalPages = (\n\tstate: State,\n\tkind: string,\n\tname: string,\n\tquery: GetRecordsHttpQuery\n): number | null => {\n\tlogEntityDeprecation( kind, name, 'getEntityRecordsTotalPages' );\n\n\t// Queried data state is prepopulated for all known entities. If this is not\n\t// assigned for the given parameters, then it is known to not exist.\n\tconst queriedState =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData;\n\tif ( ! queriedState ) {\n\t\treturn null;\n\t}\n\tif ( query.per_page === -1 ) {\n\t\treturn 1;\n\t}\n\tconst totalItems = getQueriedTotalItems( queriedState, query );\n\tif ( ! totalItems ) {\n\t\treturn totalItems;\n\t}\n\t// If `per_page` is not set and the query relies on the defaults of the\n\t// REST endpoint, get the info from query's meta.\n\tif ( ! query.per_page ) {\n\t\treturn getQueriedTotalPages( queriedState, query );\n\t}\n\treturn Math.ceil( totalItems / query.per_page );\n};\n\ntype DirtyEntityRecord = {\n\ttitle: string;\n\tkey: EntityRecordKey;\n\tname: string;\n\tkind: string;\n};\n/**\n * Returns the list of dirty entity records.\n *\n * @param state State tree.\n *\n * @return The list of updated records\n */\nexport const __experimentalGetDirtyEntityRecords = createSelector(\n\t( state: State ): Array< DirtyEntityRecord > => {\n\t\tconst {\n\t\t\tentities: { records },\n\t\t} = state;\n\t\tconst dirtyRecords: DirtyEntityRecord[] = [];\n\t\tObject.keys( records ).forEach( ( kind ) => {\n\t\t\tObject.keys( records[ kind ] ).forEach( ( name ) => {\n\t\t\t\tconst primaryKeys = (\n\t\t\t\t\tObject.keys( records[ kind ][ name ].edits ) as string[]\n\t\t\t\t ).filter(\n\t\t\t\t\t( primaryKey ) =>\n\t\t\t\t\t\t// The entity record must exist (not be deleted),\n\t\t\t\t\t\t// and it must have edits.\n\t\t\t\t\t\tgetEntityRecord( state, kind, name, primaryKey ) &&\n\t\t\t\t\t\thasEditsForEntityRecord( state, kind, name, primaryKey )\n\t\t\t\t);\n\n\t\t\t\tif ( primaryKeys.length ) {\n\t\t\t\t\tconst entityConfig = getEntityConfig( state, kind, name );\n\t\t\t\t\tprimaryKeys.forEach( ( primaryKey ) => {\n\t\t\t\t\t\tconst entityRecord = getEditedEntityRecord(\n\t\t\t\t\t\t\tstate,\n\t\t\t\t\t\t\tkind,\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tprimaryKey\n\t\t\t\t\t\t);\n\t\t\t\t\t\tdirtyRecords.push( {\n\t\t\t\t\t\t\t// We avoid using primaryKey because it's transformed into a string\n\t\t\t\t\t\t\t// when it's used as an object key.\n\t\t\t\t\t\t\tkey: entityRecord\n\t\t\t\t\t\t\t\t? entityRecord[\n\t\t\t\t\t\t\t\t\t\tentityConfig.key || DEFAULT_ENTITY_KEY\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: undefined,\n\t\t\t\t\t\t\ttitle:\n\t\t\t\t\t\t\t\tentityConfig?.getTitle?.( entityRecord ) || '',\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tkind,\n\t\t\t\t\t\t} );\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\n\t\treturn dirtyRecords;\n\t},\n\t( state ) => [ state.entities.records ]\n);\n\n/**\n * Returns the list of entities currently being saved.\n *\n * @param state State tree.\n *\n * @return The list of records being saved.\n */\nexport const __experimentalGetEntitiesBeingSaved = createSelector(\n\t( state: State ): Array< DirtyEntityRecord > => {\n\t\tconst {\n\t\t\tentities: { records },\n\t\t} = state;\n\t\tconst recordsBeingSaved: DirtyEntityRecord[] = [];\n\t\tObject.keys( records ).forEach( ( kind ) => {\n\t\t\tObject.keys( records[ kind ] ).forEach( ( name ) => {\n\t\t\t\tconst primaryKeys = (\n\t\t\t\t\tObject.keys( records[ kind ][ name ].saving ) as string[]\n\t\t\t\t ).filter( ( primaryKey ) =>\n\t\t\t\t\tisSavingEntityRecord( state, kind, name, primaryKey )\n\t\t\t\t);\n\n\t\t\t\tif ( primaryKeys.length ) {\n\t\t\t\t\tconst entityConfig = getEntityConfig( state, kind, name );\n\t\t\t\t\tprimaryKeys.forEach( ( primaryKey ) => {\n\t\t\t\t\t\tconst entityRecord = getEditedEntityRecord(\n\t\t\t\t\t\t\tstate,\n\t\t\t\t\t\t\tkind,\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tprimaryKey\n\t\t\t\t\t\t);\n\t\t\t\t\t\trecordsBeingSaved.push( {\n\t\t\t\t\t\t\t// We avoid using primaryKey because it's transformed into a string\n\t\t\t\t\t\t\t// when it's used as an object key.\n\t\t\t\t\t\t\tkey: entityRecord\n\t\t\t\t\t\t\t\t? entityRecord[\n\t\t\t\t\t\t\t\t\t\tentityConfig.key || DEFAULT_ENTITY_KEY\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: undefined,\n\t\t\t\t\t\t\ttitle:\n\t\t\t\t\t\t\t\tentityConfig?.getTitle?.( entityRecord ) || '',\n\t\t\t\t\t\t\tname,\n\t\t\t\t\t\t\tkind,\n\t\t\t\t\t\t} );\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t\treturn recordsBeingSaved;\n\t},\n\t( state ) => [ state.entities.records ]\n);\n\n/**\n * Returns the specified entity record's edits.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record's edits.\n */\nexport function getEntityRecordEdits(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): Optional< any > {\n\tlogEntityDeprecation( kind, name, 'getEntityRecordEdits' );\n\treturn state.entities.records?.[ kind ]?.[ name ]?.edits?.[\n\t\trecordId as string | number\n\t];\n}\n\n/**\n * Returns the specified entity record's non transient edits.\n *\n * Transient edits don't create an undo level, and\n * are not considered for change detection.\n * They are defined in the entity's config.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record's non transient edits.\n */\nexport const getEntityRecordNonTransientEdits = createSelector(\n\t(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordId: EntityRecordKey\n\t): Optional< any > => {\n\t\tlogEntityDeprecation( kind, name, 'getEntityRecordNonTransientEdits' );\n\t\tconst { transientEdits } = getEntityConfig( state, kind, name ) || {};\n\t\tconst edits = getEntityRecordEdits( state, kind, name, recordId ) || {};\n\t\tif ( ! transientEdits ) {\n\t\t\treturn edits;\n\t\t}\n\t\treturn Object.keys( edits ).reduce( ( acc, key ) => {\n\t\t\tif ( ! transientEdits[ key ] ) {\n\t\t\t\tacc[ key ] = edits[ key ];\n\t\t\t}\n\t\t\treturn acc;\n\t\t}, {} );\n\t},\n\t( state: State, kind: string, name: string, recordId: EntityRecordKey ) => [\n\t\tstate.entities.config,\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.edits?.[ recordId ],\n\t]\n);\n\n/**\n * Returns true if the specified entity record has edits,\n * and false otherwise.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return Whether the entity record has edits or not.\n */\nexport function hasEditsForEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean {\n\tlogEntityDeprecation( kind, name, 'hasEditsForEntityRecord' );\n\treturn (\n\t\tisSavingEntityRecord( state, kind, name, recordId ) ||\n\t\tObject.keys(\n\t\t\tgetEntityRecordNonTransientEdits( state, kind, name, recordId )\n\t\t).length > 0\n\t);\n}\n\n/**\n * Returns the specified entity record, merged with its edits.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record, merged with its edits.\n */\nexport const getEditedEntityRecord = createSelector(\n\t< EntityRecord extends ET.EntityRecord< any > >(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordId: EntityRecordKey\n\t): ET.Updatable< EntityRecord > | false => {\n\t\tlogEntityDeprecation( kind, name, 'getEditedEntityRecord' );\n\t\tconst raw = getRawEntityRecord( state, kind, name, recordId );\n\t\tconst edited = getEntityRecordEdits( state, kind, name, recordId );\n\t\t// Never return a non-falsy empty object. Unfortunately we can't return\n\t\t// undefined or null because we were previously returning an empty\n\t\t// object, so trying to read properties from the result would throw.\n\t\t// Using false here is a workaround to avoid breaking changes.\n\t\tif ( ! raw && ! edited ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn {\n\t\t\t...raw,\n\t\t\t...edited,\n\t\t};\n\t},\n\t(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordId: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t) => {\n\t\tconst context = query?.context ?? 'default';\n\t\treturn [\n\t\t\tstate.entities.config,\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData.items[\n\t\t\t\tcontext\n\t\t\t]?.[ recordId ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.queriedData\n\t\t\t\t.itemIsComplete[ context ]?.[ recordId ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.edits?.[ recordId ],\n\t\t];\n\t}\n);\n\n/**\n * Returns true if the specified entity record is autosaving, and false otherwise.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return Whether the entity record is autosaving or not.\n */\nexport function isAutosavingEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean {\n\tlogEntityDeprecation( kind, name, 'isAutosavingEntityRecord' );\n\tconst { pending, isAutosave } =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.saving?.[ recordId ] ?? {};\n\treturn Boolean( pending && isAutosave );\n}\n\n/**\n * Returns true if the specified entity record is saving, and false otherwise.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return Whether the entity record is saving or not.\n */\nexport function isSavingEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean {\n\tlogEntityDeprecation( kind, name, 'isSavingEntityRecord' );\n\treturn (\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.saving?.[\n\t\t\trecordId as EntityRecordKey\n\t\t]?.pending ?? false\n\t);\n}\n\n/**\n * Returns true if the specified entity record is deleting, and false otherwise.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return Whether the entity record is deleting or not.\n */\nexport function isDeletingEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean {\n\tlogEntityDeprecation( kind, name, 'isDeletingEntityRecord' );\n\treturn (\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.deleting?.[\n\t\t\trecordId as EntityRecordKey\n\t\t]?.pending ?? false\n\t);\n}\n\n/**\n * Returns the specified entity record's last save error.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record's save error.\n */\nexport function getLastEntitySaveError(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): any {\n\tlogEntityDeprecation( kind, name, 'getLastEntitySaveError' );\n\treturn state.entities.records?.[ kind ]?.[ name ]?.saving?.[ recordId ]\n\t\t?.error;\n}\n\n/**\n * Returns the specified entity record's last delete error.\n *\n * @param state State tree.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record ID.\n *\n * @return The entity record's save error.\n */\nexport function getLastEntityDeleteError(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): any {\n\tlogEntityDeprecation( kind, name, 'getLastEntityDeleteError' );\n\treturn state.entities.records?.[ kind ]?.[ name ]?.deleting?.[ recordId ]\n\t\t?.error;\n}\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Returns the previous edit from the current undo offset\n * for the entity records edits history, if any.\n *\n * @deprecated since 6.3\n *\n * @param state State tree.\n *\n * @return The edit.\n */\nexport function getUndoEdit( state: State ): Optional< any > {\n\tdeprecated( \"select( 'core' ).getUndoEdit()\", {\n\t\tsince: '6.3',\n\t} );\n\treturn undefined;\n}\n/* eslint-enable @typescript-eslint/no-unused-vars */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n/**\n * Returns the next edit from the current undo offset\n * for the entity records edits history, if any.\n *\n * @deprecated since 6.3\n *\n * @param state State tree.\n *\n * @return The edit.\n */\nexport function getRedoEdit( state: State ): Optional< any > {\n\tdeprecated( \"select( 'core' ).getRedoEdit()\", {\n\t\tsince: '6.3',\n\t} );\n\treturn undefined;\n}\n/* eslint-enable @typescript-eslint/no-unused-vars */\n\n/**\n * Returns true if there is a previous edit from the current undo offset\n * for the entity records edits history, and false otherwise.\n *\n * @param state State tree.\n *\n * @return Whether there is a previous edit or not.\n */\nexport function hasUndo( state: State ): boolean {\n\treturn state.undoManager.hasUndo();\n}\n\n/**\n * Returns true if there is a next edit from the current undo offset\n * for the entity records edits history, and false otherwise.\n *\n * @param state State tree.\n *\n * @return Whether there is a next edit or not.\n */\nexport function hasRedo( state: State ): boolean {\n\treturn state.undoManager.hasRedo();\n}\n\n/**\n * Return the current theme.\n *\n * @param state Data state.\n *\n * @return The current theme.\n */\nexport function getCurrentTheme( state: State ): any {\n\tif ( ! state.currentTheme ) {\n\t\treturn null;\n\t}\n\treturn getEntityRecord( state, 'root', 'theme', state.currentTheme );\n}\n\n/**\n * Return the ID of the current global styles object.\n *\n * @param state Data state.\n *\n * @return The current global styles ID.\n */\nexport function __experimentalGetCurrentGlobalStylesId( state: State ): string {\n\treturn state.currentGlobalStylesId;\n}\n\n/**\n * Return theme supports data in the index.\n *\n * @param state Data state.\n *\n * @return Index data.\n */\nexport function getThemeSupports( state: State ): any {\n\treturn getCurrentTheme( state )?.theme_supports ?? EMPTY_OBJECT;\n}\n\n/**\n * Returns the embed preview for the given URL.\n *\n * @param state Data state.\n * @param url Embedded URL.\n *\n * @return Undefined if the preview has not been fetched, otherwise, the preview fetched from the embed preview API.\n */\nexport function getEmbedPreview( state: State, url: string ): any {\n\treturn state.embedPreviews[ url ];\n}\n\n/**\n * Determines if the returned preview is an oEmbed link fallback.\n *\n * WordPress can be configured to return a simple link to a URL if it is not embeddable.\n * We need to be able to determine if a URL is embeddable or not, based on what we\n * get back from the oEmbed preview API.\n *\n * @param state Data state.\n * @param url Embedded URL.\n *\n * @return Is the preview for the URL an oEmbed link fallback.\n */\nexport function isPreviewEmbedFallback( state: State, url: string ): boolean {\n\tconst preview = state.embedPreviews[ url ];\n\tconst oEmbedLinkCheck = '<a href=\"' + url + '\">' + url + '</a>';\n\tif ( ! preview ) {\n\t\treturn false;\n\t}\n\treturn preview.html === oEmbedLinkCheck;\n}\n\n/**\n * Returns whether the current user can perform the given action on the given\n * REST resource.\n *\n * Calling this may trigger an OPTIONS request to the REST API via the\n * `canUser()` resolver.\n *\n * https://developer.wordpress.org/rest-api/reference/\n *\n * @param state Data state.\n * @param action Action to check. One of: 'create', 'read', 'update', 'delete'.\n * @param resource Entity resource to check. Accepts entity object `{ kind: 'postType', name: 'attachment', id: 1 }`\n * or REST base as a string - `media`.\n * @param id Optional ID of the rest resource to check.\n *\n * @return Whether or not the user can perform the action,\n * or `undefined` if the OPTIONS request is still being made.\n */\nexport function canUser(\n\tstate: State,\n\taction: string,\n\tresource: string | EntityResource,\n\tid?: EntityRecordKey\n): boolean | undefined {\n\tconst isEntity = typeof resource === 'object';\n\tif ( isEntity && ( ! resource.kind || ! resource.name ) ) {\n\t\treturn false;\n\t}\n\tif ( isEntity ) {\n\t\tlogEntityDeprecation( resource.kind, resource.name, 'canUser' );\n\t}\n\n\tconst key = getUserPermissionCacheKey( action, resource, id );\n\n\treturn state.userPermissions[ key ];\n}\n\n/**\n * Returns whether the current user can edit the given entity.\n *\n * Calling this may trigger an OPTIONS request to the REST API via the\n * `canUser()` resolver.\n *\n * https://developer.wordpress.org/rest-api/reference/\n *\n * @param state Data state.\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordId Record's id.\n * @return Whether or not the user can edit,\n * or `undefined` if the OPTIONS request is still being made.\n */\nexport function canUserEditEntityRecord(\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordId: EntityRecordKey\n): boolean | undefined {\n\tdeprecated( `wp.data.select( 'core' ).canUserEditEntityRecord()`, {\n\t\tsince: '6.7',\n\t\talternative: `wp.data.select( 'core' ).canUser( 'update', { kind, name, id } )`,\n\t} );\n\n\treturn canUser( state, 'update', { kind, name, id: recordId } );\n}\n\n/**\n * Returns the latest autosaves for the post.\n *\n * May return multiple autosaves since the backend stores one autosave per\n * author for each post.\n *\n * @param state State tree.\n * @param postType The type of the parent post.\n * @param postId The id of the parent post.\n *\n * @return An array of autosaves for the post, or undefined if there is none.\n */\nexport function getAutosaves(\n\tstate: State,\n\tpostType: string,\n\tpostId: EntityRecordKey\n): Array< any > | undefined {\n\treturn state.autosaves[ postId ];\n}\n\n/**\n * Returns the autosave for the post and author.\n *\n * @param state State tree.\n * @param postType The type of the parent post.\n * @param postId The id of the parent post.\n * @param authorId The id of the author.\n *\n * @return The autosave for the post and author.\n */\nexport function getAutosave< EntityRecord extends ET.EntityRecord< any > >(\n\tstate: State,\n\tpostType: string,\n\tpostId: EntityRecordKey,\n\tauthorId: EntityRecordKey\n): EntityRecord | undefined {\n\tif ( authorId === undefined ) {\n\t\treturn;\n\t}\n\n\tconst autosaves = state.autosaves[ postId ];\n\n\treturn autosaves?.find(\n\t\t( autosave: any ) => autosave.author === authorId\n\t) as EntityRecord | undefined;\n}\n\n/**\n * Returns true if the REST request for autosaves has completed.\n *\n * @param state State tree.\n * @param postType The type of the parent post.\n * @param postId The id of the parent post.\n *\n * @return True if the REST request was completed. False otherwise.\n */\nexport const hasFetchedAutosaves = createRegistrySelector(\n\t( select ) =>\n\t\t(\n\t\t\tstate: State,\n\t\t\tpostType: string,\n\t\t\tpostId: EntityRecordKey\n\t\t): boolean => {\n\t\t\treturn select( STORE_NAME ).hasFinishedResolution( 'getAutosaves', [\n\t\t\t\tpostType,\n\t\t\t\tpostId,\n\t\t\t] );\n\t\t}\n);\n\n/**\n * Returns a new reference when edited values have changed. This is useful in\n * inferring where an edit has been made between states by comparison of the\n * return values using strict equality.\n *\n * @example\n *\n * ```\n * const hasEditOccurred = (\n * getReferenceByDistinctEdits( beforeState ) !==\n * getReferenceByDistinctEdits( afterState )\n * );\n * ```\n *\n * @param state Editor state.\n *\n * @return A value whose reference will change only when an edit occurs.\n */\nexport function getReferenceByDistinctEdits( state ) {\n\treturn state.editsReference;\n}\n\n/**\n * Retrieve the current theme's base global styles\n *\n * @param state Editor state.\n *\n * @return The Global Styles object.\n */\nexport function __experimentalGetCurrentThemeBaseGlobalStyles(\n\tstate: State\n): any {\n\tconst currentTheme = getCurrentTheme( state );\n\tif ( ! currentTheme ) {\n\t\treturn null;\n\t}\n\treturn state.themeBaseGlobalStyles[ currentTheme.stylesheet ];\n}\n\n/**\n * Return the ID of the current global styles object.\n *\n * @param state Data state.\n *\n * @return The current global styles ID.\n */\nexport function __experimentalGetCurrentThemeGlobalStylesVariations(\n\tstate: State\n): string | null {\n\tconst currentTheme = getCurrentTheme( state );\n\tif ( ! currentTheme ) {\n\t\treturn null;\n\t}\n\treturn state.themeGlobalStyleVariations[ currentTheme.stylesheet ];\n}\n\n/**\n * Retrieve the list of registered block patterns.\n *\n * @param state Data state.\n *\n * @return Block pattern list.\n */\nexport function getBlockPatterns( state: State ): Array< any > {\n\treturn state.blockPatterns;\n}\n\n/**\n * Retrieve the list of registered block pattern categories.\n *\n * @param state Data state.\n *\n * @return Block pattern category list.\n */\nexport function getBlockPatternCategories( state: State ): Array< any > {\n\treturn state.blockPatternCategories;\n}\n\n/**\n * Retrieve the registered user pattern categories.\n *\n * @param state Data state.\n *\n * @return User patterns category array.\n */\n\nexport function getUserPatternCategories(\n\tstate: State\n): Array< UserPatternCategory > {\n\treturn state.userPatternCategories;\n}\n\n/**\n * Returns the revisions of the current global styles theme.\n *\n * @deprecated since WordPress 6.5.0. Callers should use `select( 'core' ).getRevisions( 'root', 'globalStyles', ${ recordKey } )` instead, where `recordKey` is the id of the global styles parent post.\n *\n * @param state Data state.\n *\n * @return The current global styles.\n */\nexport function getCurrentThemeGlobalStylesRevisions(\n\tstate: State\n): Array< object > | null {\n\tdeprecated( \"select( 'core' ).getCurrentThemeGlobalStylesRevisions()\", {\n\t\tsince: '6.5.0',\n\t\talternative:\n\t\t\t\"select( 'core' ).getRevisions( 'root', 'globalStyles', ${ recordKey } )\",\n\t} );\n\tconst currentGlobalStylesId =\n\t\t__experimentalGetCurrentGlobalStylesId( state );\n\n\tif ( ! currentGlobalStylesId ) {\n\t\treturn null;\n\t}\n\n\treturn state.themeGlobalStyleRevisions[ currentGlobalStylesId ];\n}\n\n/**\n * Returns the default template use to render a given query.\n *\n * @param state Data state.\n * @param query Query.\n *\n * @return The default template id for the given query.\n */\nexport function getDefaultTemplateId(\n\tstate: State,\n\tquery: TemplateQuery\n): string {\n\treturn state.defaultTemplates[ JSON.stringify( query ) ];\n}\n\n/**\n * Returns an entity's revisions.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordKey The key of the entity record whose revisions you want to fetch.\n * @param query Optional query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see revisions schema in [the REST API Handbook](https://developer.wordpress.org/rest-api/reference/). Then see the arguments available \"Retrieve a [Entity kind]\".\n *\n * @return Record.\n */\nexport const getRevisions = (\n\tstate: State,\n\tkind: string,\n\tname: string,\n\trecordKey: EntityRecordKey,\n\tquery?: GetRecordsHttpQuery\n): RevisionRecord[] | null => {\n\tlogEntityDeprecation( kind, name, 'getRevisions' );\n\tconst queriedStateRevisions =\n\t\tstate.entities.records?.[ kind ]?.[ name ]?.revisions?.[ recordKey ];\n\tif ( ! queriedStateRevisions ) {\n\t\treturn null;\n\t}\n\n\treturn getQueriedItems( queriedStateRevisions, query );\n};\n\n/**\n * Returns a single, specific revision of a parent entity.\n *\n * @param state State tree\n * @param kind Entity kind.\n * @param name Entity name.\n * @param recordKey The key of the entity record whose revisions you want to fetch.\n * @param revisionKey The revision's key.\n * @param query Optional query. If requesting specific\n * fields, fields must always include the ID. For valid query parameters see revisions schema in [the REST API Handbook](https://developer.wordpress.org/rest-api/reference/). Then see the arguments available \"Retrieve a [entity kind]\".\n *\n * @return Record.\n */\nexport const getRevision = createSelector(\n\t(\n\t\tstate: State,\n\t\tkind: string,\n\t\tname: string,\n\t\trecordKey: EntityRecordKey,\n\t\trevisionKey: EntityRecordKey,\n\t\tquery?: GetRecordsHttpQuery\n\t): RevisionRecord | Record< PropertyKey, never > | undefined => {\n\t\tlogEntityDeprecation( kind, name, 'getRevision' );\n\t\tconst queriedState =\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.revisions?.[\n\t\t\t\trecordKey\n\t\t\t];\n\n\t\tif ( ! queriedState ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\tconst context = query?.context ?? 'default';\n\n\t\tif ( query === undefined ) {\n\t\t\t// If expecting a complete item, validate that completeness.\n\t\t\tif ( ! queriedState.itemIsComplete[ context ]?.[ revisionKey ] ) {\n\t\t\t\treturn undefined;\n\t\t\t}\n\n\t\t\treturn queriedState.items[ context ][ revisionKey ];\n\t\t}\n\n\t\tconst item = queriedState.items[ context ]?.[ revisionKey ];\n\t\tif ( item && query._fields ) {\n\t\t\tconst filteredItem = {};\n\t\t\tconst fields = getNormalizedCommaSeparable( query._fields ) ?? [];\n\n\t\t\tfor ( let f = 0; f < fields.length; f++ ) {\n\t\t\t\tconst field = fields[ f ].split( '.' );\n\t\t\t\tlet value = item;\n\t\t\t\tfield.forEach( ( fieldName ) => {\n\t\t\t\t\tvalue = value?.[ fieldName ];\n\t\t\t\t} );\n\t\t\t\tsetNestedValue( filteredItem, field, value );\n\t\t\t}\n\n\t\t\treturn filteredItem;\n\t\t}\n\n\t\treturn item;\n\t},\n\t( state: State, kind, name, recordKey, revisionKey, query ) => {\n\t\tconst context = query?.context ?? 'default';\n\t\treturn [\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.revisions?.[ recordKey ]\n\t\t\t\t?.items?.[ context ]?.[ revisionKey ],\n\t\t\tstate.entities.records?.[ kind ]?.[ name ]?.revisions?.[ recordKey ]\n\t\t\t\t?.itemIsComplete?.[ context ]?.[ revisionKey ],\n\t\t];\n\t}\n);\n"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = logEntityDeprecation;
8
+ var _deprecated = _interopRequireDefault(require("@wordpress/deprecated"));
9
+ var _entities = require("../entities");
10
+ /**
11
+ * WordPress dependencies
12
+ */
13
+
14
+ /**
15
+ * Internal dependencies
16
+ */
17
+
18
+ let loggedAlready = false;
19
+
20
+ /**
21
+ * Logs a deprecation warning for an entity, if it's deprecated.
22
+ *
23
+ * @param kind The kind of the entity.
24
+ * @param name The name of the entity.
25
+ * @param functionName The name of the function that was called with a deprecated entity.
26
+ * @param options The options for the deprecation warning.
27
+ * @param options.alternativeFunctionName The name of the alternative function that should be used instead.
28
+ * @param options.isShorthandSelector Whether the function is a shorthand selector.
29
+ */
30
+ function logEntityDeprecation(kind, name, functionName, {
31
+ alternativeFunctionName,
32
+ isShorthandSelector = false
33
+ } = {}) {
34
+ const deprecation = _entities.deprecatedEntities[kind]?.[name];
35
+ if (!deprecation) {
36
+ return;
37
+ }
38
+ if (!loggedAlready) {
39
+ const {
40
+ alternative
41
+ } = deprecation;
42
+ const message = isShorthandSelector ? `'${functionName}'` : `The '${kind}', '${name}' entity (used via '${functionName}')`;
43
+ let alternativeMessage = `the '${alternative.kind}', '${alternative.name}' entity`;
44
+ if (alternativeFunctionName) {
45
+ alternativeMessage += ` via the '${alternativeFunctionName}' function`;
46
+ }
47
+ (0, _deprecated.default)(message, {
48
+ ...deprecation,
49
+ alternative: alternativeMessage
50
+ });
51
+ }
52
+
53
+ // Only log an entity deprecation once per call stack,
54
+ // else there's spurious logging when selections or actions call through to other selectors or actions.
55
+ // Note: this won't prevent the deprecation warning being logged if a selector or action makes an async call
56
+ // to another selector or action, but this is probably the best we can do.
57
+ loggedAlready = true;
58
+ // At the end of the call stack, reset the flag.
59
+ setTimeout(() => {
60
+ loggedAlready = false;
61
+ }, 0);
62
+ }
63
+ //# sourceMappingURL=log-entity-deprecation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_deprecated","_interopRequireDefault","require","_entities","loggedAlready","logEntityDeprecation","kind","name","functionName","alternativeFunctionName","isShorthandSelector","deprecation","deprecatedEntities","alternative","message","alternativeMessage","deprecated","setTimeout"],"sources":["@wordpress/core-data/src/utils/log-entity-deprecation.ts"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport deprecated from '@wordpress/deprecated';\n\n/**\n * Internal dependencies\n */\nimport { deprecatedEntities } from '../entities';\n\nlet loggedAlready = false;\n\n/**\n * Logs a deprecation warning for an entity, if it's deprecated.\n *\n * @param kind The kind of the entity.\n * @param name The name of the entity.\n * @param functionName The name of the function that was called with a deprecated entity.\n * @param options The options for the deprecation warning.\n * @param options.alternativeFunctionName The name of the alternative function that should be used instead.\n * @param options.isShorthandSelector Whether the function is a shorthand selector.\n */\nexport default function logEntityDeprecation(\n\tkind: string,\n\tname: string,\n\tfunctionName: string,\n\t{\n\t\talternativeFunctionName,\n\t\tisShorthandSelector = false,\n\t}: {\n\t\talternativeFunctionName?: string;\n\t\tisShorthandSelector?: boolean;\n\t} = {}\n) {\n\tconst deprecation = deprecatedEntities[ kind ]?.[ name ];\n\tif ( ! deprecation ) {\n\t\treturn;\n\t}\n\n\tif ( ! loggedAlready ) {\n\t\tconst { alternative } = deprecation;\n\n\t\tconst message = isShorthandSelector\n\t\t\t? `'${ functionName }'`\n\t\t\t: `The '${ kind }', '${ name }' entity (used via '${ functionName }')`;\n\n\t\tlet alternativeMessage = `the '${ alternative.kind }', '${ alternative.name }' entity`;\n\t\tif ( alternativeFunctionName ) {\n\t\t\talternativeMessage += ` via the '${ alternativeFunctionName }' function`;\n\t\t}\n\n\t\tdeprecated( message, {\n\t\t\t...deprecation,\n\t\t\talternative: alternativeMessage,\n\t\t} );\n\t}\n\n\t// Only log an entity deprecation once per call stack,\n\t// else there's spurious logging when selections or actions call through to other selectors or actions.\n\t// Note: this won't prevent the deprecation warning being logged if a selector or action makes an async call\n\t// to another selector or action, but this is probably the best we can do.\n\tloggedAlready = true;\n\t// At the end of the call stack, reset the flag.\n\tsetTimeout( () => {\n\t\tloggedAlready = false;\n\t}, 0 );\n}\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,sBAAA,CAAAC,OAAA;AAKA,IAAAC,SAAA,GAAAD,OAAA;AARA;AACA;AACA;;AAGA;AACA;AACA;;AAGA,IAAIE,aAAa,GAAG,KAAK;;AAEzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAASC,oBAAoBA,CAC3CC,IAAY,EACZC,IAAY,EACZC,YAAoB,EACpB;EACCC,uBAAuB;EACvBC,mBAAmB,GAAG;AAIvB,CAAC,GAAG,CAAC,CAAC,EACL;EACD,MAAMC,WAAW,GAAGC,4BAAkB,CAAEN,IAAI,CAAE,GAAIC,IAAI,CAAE;EACxD,IAAK,CAAEI,WAAW,EAAG;IACpB;EACD;EAEA,IAAK,CAAEP,aAAa,EAAG;IACtB,MAAM;MAAES;IAAY,CAAC,GAAGF,WAAW;IAEnC,MAAMG,OAAO,GAAGJ,mBAAmB,GAChC,IAAKF,YAAY,GAAI,GACrB,QAASF,IAAI,OAASC,IAAI,uBAAyBC,YAAY,IAAK;IAEvE,IAAIO,kBAAkB,GAAG,QAASF,WAAW,CAACP,IAAI,OAASO,WAAW,CAACN,IAAI,UAAW;IACtF,IAAKE,uBAAuB,EAAG;MAC9BM,kBAAkB,IAAI,aAAcN,uBAAuB,YAAa;IACzE;IAEA,IAAAO,mBAAU,EAAEF,OAAO,EAAE;MACpB,GAAGH,WAAW;MACdE,WAAW,EAAEE;IACd,CAAE,CAAC;EACJ;;EAEA;EACA;EACA;EACA;EACAX,aAAa,GAAG,IAAI;EACpB;EACAa,UAAU,CAAE,MAAM;IACjBb,aAAa,GAAG,KAAK;EACtB,CAAC,EAAE,CAAE,CAAC;AACP","ignoreList":[]}