@salesforce/lds-adapters-uiapi 1.441.0 → 1.443.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.
@@ -1,5 +1,5 @@
1
1
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
- export declare const VERSION = "3f49d751896cf66e6e29788d8880e2cc";
2
+ export declare const VERSION = "885c858e27ff690e5f69edc41d68c32b";
3
3
  export declare function validate(obj: any, path?: string): TypeError | null;
4
4
  export declare const RepresentationType: string;
5
5
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -47,6 +47,8 @@ export interface PlatformActionRepresentationNormalized {
47
47
  label: string;
48
48
  /** LWC Component associated with the action */
49
49
  lwcComponent: string | null;
50
+ /** For Flexipage-backed Quick Actions, the FlexiPage's DeveloperName resolved server-side from QuickActionDefinition.ComponentId. */
51
+ pageDeveloperName: string | null;
50
52
  /** Hex Color Code, such as 7F8DE1 */
51
53
  primaryColor: string | null;
52
54
  /** Represents the ID of a record in an object’s related list. */
@@ -61,6 +63,8 @@ export interface PlatformActionRepresentationNormalized {
61
63
  subtype: string | null;
62
64
  /** Target Object for the action */
63
65
  targetObject: string | null;
66
+ /** The lookup field on the target object that points to the source (parent) record. For Quick Actions, resolved server-side from QuickActionDefinition.TargetField. */
67
+ targetParentField: string | null;
64
68
  /** Target URL for Custom Button Actions */
65
69
  targetUrl: string | null;
66
70
  /** The type of the action defined in PlatformActionTypeEnum */
@@ -85,6 +89,7 @@ export interface PlatformActionRepresentation {
85
89
  isMassAction: string;
86
90
  label: string;
87
91
  lwcComponent: string | null;
92
+ pageDeveloperName: string | null;
88
93
  primaryColor: string | null;
89
94
  relatedListRecordId: string | null;
90
95
  relatedSourceObject: string | null;
@@ -92,6 +97,7 @@ export interface PlatformActionRepresentation {
92
97
  sourceObject: string;
93
98
  subtype: string | null;
94
99
  targetObject: string | null;
100
+ targetParentField: string | null;
95
101
  targetUrl: string | null;
96
102
  type: string;
97
103
  }
@@ -13087,7 +13087,7 @@ function coerceFormFactor(form) {
13087
13087
  return undefined;
13088
13088
  }
13089
13089
 
13090
- const VERSION$2N = "3f49d751896cf66e6e29788d8880e2cc";
13090
+ const VERSION$2N = "885c858e27ff690e5f69edc41d68c32b";
13091
13091
  function validate$1A(obj, path = 'PlatformActionRepresentation') {
13092
13092
  const v_error = (() => {
13093
13093
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -13227,6 +13227,32 @@ function validate$1A(obj, path = 'PlatformActionRepresentation') {
13227
13227
  message += '\n' + obj_lwcComponent_union1.split('\n').map((line) => '\t' + line).join('\n');
13228
13228
  return new TypeError(message);
13229
13229
  }
13230
+ const obj_pageDeveloperName = obj.pageDeveloperName;
13231
+ const path_pageDeveloperName = path + '.pageDeveloperName';
13232
+ let obj_pageDeveloperName_union0 = null;
13233
+ const obj_pageDeveloperName_union0_error = (() => {
13234
+ if (typeof obj_pageDeveloperName !== 'string') {
13235
+ return new TypeError('Expected "string" but received "' + typeof obj_pageDeveloperName + '" (at "' + path_pageDeveloperName + '")');
13236
+ }
13237
+ })();
13238
+ if (obj_pageDeveloperName_union0_error != null) {
13239
+ obj_pageDeveloperName_union0 = obj_pageDeveloperName_union0_error.message;
13240
+ }
13241
+ let obj_pageDeveloperName_union1 = null;
13242
+ const obj_pageDeveloperName_union1_error = (() => {
13243
+ if (obj_pageDeveloperName !== null) {
13244
+ return new TypeError('Expected "null" but received "' + typeof obj_pageDeveloperName + '" (at "' + path_pageDeveloperName + '")');
13245
+ }
13246
+ })();
13247
+ if (obj_pageDeveloperName_union1_error != null) {
13248
+ obj_pageDeveloperName_union1 = obj_pageDeveloperName_union1_error.message;
13249
+ }
13250
+ if (obj_pageDeveloperName_union0 && obj_pageDeveloperName_union1) {
13251
+ let message = 'Object doesn\'t match union (at "' + path_pageDeveloperName + '")';
13252
+ message += '\n' + obj_pageDeveloperName_union0.split('\n').map((line) => '\t' + line).join('\n');
13253
+ message += '\n' + obj_pageDeveloperName_union1.split('\n').map((line) => '\t' + line).join('\n');
13254
+ return new TypeError(message);
13255
+ }
13230
13256
  const obj_primaryColor = obj.primaryColor;
13231
13257
  const path_primaryColor = path + '.primaryColor';
13232
13258
  let obj_primaryColor_union0 = null;
@@ -13388,6 +13414,32 @@ function validate$1A(obj, path = 'PlatformActionRepresentation') {
13388
13414
  message += '\n' + obj_targetObject_union1.split('\n').map((line) => '\t' + line).join('\n');
13389
13415
  return new TypeError(message);
13390
13416
  }
13417
+ const obj_targetParentField = obj.targetParentField;
13418
+ const path_targetParentField = path + '.targetParentField';
13419
+ let obj_targetParentField_union0 = null;
13420
+ const obj_targetParentField_union0_error = (() => {
13421
+ if (typeof obj_targetParentField !== 'string') {
13422
+ return new TypeError('Expected "string" but received "' + typeof obj_targetParentField + '" (at "' + path_targetParentField + '")');
13423
+ }
13424
+ })();
13425
+ if (obj_targetParentField_union0_error != null) {
13426
+ obj_targetParentField_union0 = obj_targetParentField_union0_error.message;
13427
+ }
13428
+ let obj_targetParentField_union1 = null;
13429
+ const obj_targetParentField_union1_error = (() => {
13430
+ if (obj_targetParentField !== null) {
13431
+ return new TypeError('Expected "null" but received "' + typeof obj_targetParentField + '" (at "' + path_targetParentField + '")');
13432
+ }
13433
+ })();
13434
+ if (obj_targetParentField_union1_error != null) {
13435
+ obj_targetParentField_union1 = obj_targetParentField_union1_error.message;
13436
+ }
13437
+ if (obj_targetParentField_union0 && obj_targetParentField_union1) {
13438
+ let message = 'Object doesn\'t match union (at "' + path_targetParentField + '")';
13439
+ message += '\n' + obj_targetParentField_union0.split('\n').map((line) => '\t' + line).join('\n');
13440
+ message += '\n' + obj_targetParentField_union1.split('\n').map((line) => '\t' + line).join('\n');
13441
+ return new TypeError(message);
13442
+ }
13391
13443
  const obj_targetUrl = obj.targetUrl;
13392
13444
  const path_targetUrl = path + '.targetUrl';
13393
13445
  let obj_targetUrl_union0 = null;
@@ -13481,6 +13533,10 @@ const select$3q = function PlatformActionRepresentationSelect() {
13481
13533
  name: 'lwcComponent',
13482
13534
  kind: 'Scalar'
13483
13535
  },
13536
+ {
13537
+ name: 'pageDeveloperName',
13538
+ kind: 'Scalar'
13539
+ },
13484
13540
  {
13485
13541
  name: 'primaryColor',
13486
13542
  kind: 'Scalar'
@@ -13509,6 +13565,10 @@ const select$3q = function PlatformActionRepresentationSelect() {
13509
13565
  name: 'targetObject',
13510
13566
  kind: 'Scalar'
13511
13567
  },
13568
+ {
13569
+ name: 'targetParentField',
13570
+ kind: 'Scalar'
13571
+ },
13512
13572
  {
13513
13573
  name: 'targetUrl',
13514
13574
  kind: 'Scalar'
@@ -13581,6 +13641,11 @@ function equals$W(existing, incoming) {
13581
13641
  if (!(existing_lwcComponent === incoming_lwcComponent)) {
13582
13642
  return false;
13583
13643
  }
13644
+ const existing_pageDeveloperName = existing.pageDeveloperName;
13645
+ const incoming_pageDeveloperName = incoming.pageDeveloperName;
13646
+ if (!(existing_pageDeveloperName === incoming_pageDeveloperName)) {
13647
+ return false;
13648
+ }
13584
13649
  const existing_primaryColor = existing.primaryColor;
13585
13650
  const incoming_primaryColor = incoming.primaryColor;
13586
13651
  if (!(existing_primaryColor === incoming_primaryColor)) {
@@ -13611,6 +13676,11 @@ function equals$W(existing, incoming) {
13611
13676
  if (!(existing_targetObject === incoming_targetObject)) {
13612
13677
  return false;
13613
13678
  }
13679
+ const existing_targetParentField = existing.targetParentField;
13680
+ const incoming_targetParentField = incoming.targetParentField;
13681
+ if (!(existing_targetParentField === incoming_targetParentField)) {
13682
+ return false;
13683
+ }
13614
13684
  const existing_targetUrl = existing.targetUrl;
13615
13685
  const incoming_targetUrl = incoming.targetUrl;
13616
13686
  if (!(existing_targetUrl === incoming_targetUrl)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-uiapi",
3
- "version": "1.441.0",
3
+ "version": "1.443.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "Wire adapters for record related UI API endpoints",
6
6
  "type": "module",
@@ -68,14 +68,14 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "@luvio/graphql-parser": "0.160.5",
71
- "@salesforce/lds-adapters-onestore-graphql": "^1.441.0",
72
- "@salesforce/lds-bindings": "^1.441.0",
73
- "@salesforce/lds-default-luvio": "^1.441.0"
71
+ "@salesforce/lds-bindings": "^1.443.0",
72
+ "@salesforce/lds-default-luvio": "^1.443.0"
74
73
  },
75
74
  "devDependencies": {
76
- "@salesforce/lds-compiler-plugins": "^1.441.0",
77
- "@salesforce/lds-jest": "^1.441.0",
78
- "@salesforce/lds-store-binary": "^1.441.0"
75
+ "@salesforce/lds-adapters-onestore-graphql": "^1.443.0",
76
+ "@salesforce/lds-compiler-plugins": "^1.443.0",
77
+ "@salesforce/lds-jest": "^1.443.0",
78
+ "@salesforce/lds-store-binary": "^1.443.0"
79
79
  },
80
80
  "luvioBundlesize": [
81
81
  {
@@ -28809,4 +28809,4 @@ register({
28809
28809
  });
28810
28810
 
28811
28811
  export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_deprecated, graphql_imperative, graphql_imperative_deprecated, graphql_imperative_onestore, graphql_onestore, graphql_state_manager, refreshGraphQL, refreshGraphQL_deprecated };
28812
- // version: 1.441.0-0055bd971e
28812
+ // version: 1.443.0-3de9a44799
package/sfdc/index.js CHANGED
@@ -12722,7 +12722,7 @@ function coerceFormFactor(form) {
12722
12722
  return undefined;
12723
12723
  }
12724
12724
 
12725
- const VERSION$10 = "3f49d751896cf66e6e29788d8880e2cc";
12725
+ const VERSION$10 = "885c858e27ff690e5f69edc41d68c32b";
12726
12726
  function validate$1w(obj, path = 'PlatformActionRepresentation') {
12727
12727
  const v_error = (() => {
12728
12728
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -12862,6 +12862,32 @@ function validate$1w(obj, path = 'PlatformActionRepresentation') {
12862
12862
  message += '\n' + obj_lwcComponent_union1.split('\n').map((line) => '\t' + line).join('\n');
12863
12863
  return new TypeError(message);
12864
12864
  }
12865
+ const obj_pageDeveloperName = obj.pageDeveloperName;
12866
+ const path_pageDeveloperName = path + '.pageDeveloperName';
12867
+ let obj_pageDeveloperName_union0 = null;
12868
+ const obj_pageDeveloperName_union0_error = (() => {
12869
+ if (typeof obj_pageDeveloperName !== 'string') {
12870
+ return new TypeError('Expected "string" but received "' + typeof obj_pageDeveloperName + '" (at "' + path_pageDeveloperName + '")');
12871
+ }
12872
+ })();
12873
+ if (obj_pageDeveloperName_union0_error != null) {
12874
+ obj_pageDeveloperName_union0 = obj_pageDeveloperName_union0_error.message;
12875
+ }
12876
+ let obj_pageDeveloperName_union1 = null;
12877
+ const obj_pageDeveloperName_union1_error = (() => {
12878
+ if (obj_pageDeveloperName !== null) {
12879
+ return new TypeError('Expected "null" but received "' + typeof obj_pageDeveloperName + '" (at "' + path_pageDeveloperName + '")');
12880
+ }
12881
+ })();
12882
+ if (obj_pageDeveloperName_union1_error != null) {
12883
+ obj_pageDeveloperName_union1 = obj_pageDeveloperName_union1_error.message;
12884
+ }
12885
+ if (obj_pageDeveloperName_union0 && obj_pageDeveloperName_union1) {
12886
+ let message = 'Object doesn\'t match union (at "' + path_pageDeveloperName + '")';
12887
+ message += '\n' + obj_pageDeveloperName_union0.split('\n').map((line) => '\t' + line).join('\n');
12888
+ message += '\n' + obj_pageDeveloperName_union1.split('\n').map((line) => '\t' + line).join('\n');
12889
+ return new TypeError(message);
12890
+ }
12865
12891
  const obj_primaryColor = obj.primaryColor;
12866
12892
  const path_primaryColor = path + '.primaryColor';
12867
12893
  let obj_primaryColor_union0 = null;
@@ -13023,6 +13049,32 @@ function validate$1w(obj, path = 'PlatformActionRepresentation') {
13023
13049
  message += '\n' + obj_targetObject_union1.split('\n').map((line) => '\t' + line).join('\n');
13024
13050
  return new TypeError(message);
13025
13051
  }
13052
+ const obj_targetParentField = obj.targetParentField;
13053
+ const path_targetParentField = path + '.targetParentField';
13054
+ let obj_targetParentField_union0 = null;
13055
+ const obj_targetParentField_union0_error = (() => {
13056
+ if (typeof obj_targetParentField !== 'string') {
13057
+ return new TypeError('Expected "string" but received "' + typeof obj_targetParentField + '" (at "' + path_targetParentField + '")');
13058
+ }
13059
+ })();
13060
+ if (obj_targetParentField_union0_error != null) {
13061
+ obj_targetParentField_union0 = obj_targetParentField_union0_error.message;
13062
+ }
13063
+ let obj_targetParentField_union1 = null;
13064
+ const obj_targetParentField_union1_error = (() => {
13065
+ if (obj_targetParentField !== null) {
13066
+ return new TypeError('Expected "null" but received "' + typeof obj_targetParentField + '" (at "' + path_targetParentField + '")');
13067
+ }
13068
+ })();
13069
+ if (obj_targetParentField_union1_error != null) {
13070
+ obj_targetParentField_union1 = obj_targetParentField_union1_error.message;
13071
+ }
13072
+ if (obj_targetParentField_union0 && obj_targetParentField_union1) {
13073
+ let message = 'Object doesn\'t match union (at "' + path_targetParentField + '")';
13074
+ message += '\n' + obj_targetParentField_union0.split('\n').map((line) => '\t' + line).join('\n');
13075
+ message += '\n' + obj_targetParentField_union1.split('\n').map((line) => '\t' + line).join('\n');
13076
+ return new TypeError(message);
13077
+ }
13026
13078
  const obj_targetUrl = obj.targetUrl;
13027
13079
  const path_targetUrl = path + '.targetUrl';
13028
13080
  let obj_targetUrl_union0 = null;
@@ -13116,6 +13168,10 @@ const select$1G = function PlatformActionRepresentationSelect() {
13116
13168
  name: 'lwcComponent',
13117
13169
  kind: 'Scalar'
13118
13170
  },
13171
+ {
13172
+ name: 'pageDeveloperName',
13173
+ kind: 'Scalar'
13174
+ },
13119
13175
  {
13120
13176
  name: 'primaryColor',
13121
13177
  kind: 'Scalar'
@@ -13144,6 +13200,10 @@ const select$1G = function PlatformActionRepresentationSelect() {
13144
13200
  name: 'targetObject',
13145
13201
  kind: 'Scalar'
13146
13202
  },
13203
+ {
13204
+ name: 'targetParentField',
13205
+ kind: 'Scalar'
13206
+ },
13147
13207
  {
13148
13208
  name: 'targetUrl',
13149
13209
  kind: 'Scalar'
@@ -13216,6 +13276,11 @@ function equals$S(existing, incoming) {
13216
13276
  if (!(existing_lwcComponent === incoming_lwcComponent)) {
13217
13277
  return false;
13218
13278
  }
13279
+ const existing_pageDeveloperName = existing.pageDeveloperName;
13280
+ const incoming_pageDeveloperName = incoming.pageDeveloperName;
13281
+ if (!(existing_pageDeveloperName === incoming_pageDeveloperName)) {
13282
+ return false;
13283
+ }
13219
13284
  const existing_primaryColor = existing.primaryColor;
13220
13285
  const incoming_primaryColor = incoming.primaryColor;
13221
13286
  if (!(existing_primaryColor === incoming_primaryColor)) {
@@ -13246,6 +13311,11 @@ function equals$S(existing, incoming) {
13246
13311
  if (!(existing_targetObject === incoming_targetObject)) {
13247
13312
  return false;
13248
13313
  }
13314
+ const existing_targetParentField = existing.targetParentField;
13315
+ const incoming_targetParentField = incoming.targetParentField;
13316
+ if (!(existing_targetParentField === incoming_targetParentField)) {
13317
+ return false;
13318
+ }
13249
13319
  const existing_targetUrl = existing.targetUrl;
13250
13320
  const incoming_targetUrl = incoming.targetUrl;
13251
13321
  if (!(existing_targetUrl === incoming_targetUrl)) {
@@ -37474,4 +37544,4 @@ withDefaultLuvio((luvio) => {
37474
37544
  });
37475
37545
 
37476
37546
  export { API_NAMESPACE, VERSION$1i as FieldValueRepresentationVersion, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$J as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$O as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$V as RecordRepresentationRepresentationType, TTL$z as RecordRepresentationTTL, RepresentationType$V as RecordRepresentationType, VERSION$1g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord, deleteListInfo, deleteRecord, executeBatchRecordOperations, extractRecordIdFromStoreKey, getActionOverrides, getActionOverrides_imperative, getAllApps, getAllApps_imperative, getAppDetails, getAppDetails_imperative, getDuplicateConfiguration, getDuplicateConfiguration_imperative, getDuplicates, getDuplicates_imperative, getFlexipageFormulaOverrides, getFlexipageFormulaOverrides_imperative, getGlobalActions, getGlobalActions_imperative, getKeywordSearchResults, getKeywordSearchResults_imperative, getLayout, getLayoutUserState, getLayoutUserState_imperative, getLayout_imperative, getListInfoByName, getListInfoByNameAdapterFactory, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListInfosByObjectName, getListInfosByObjectNameAdapterFactory, getListInfosByObjectName_imperative, getListObjectInfo, getListObjectInfoAdapterFactory, getListObjectInfo_imperative, getListPreferences, getListPreferences_imperative, getListRecordsByName, factory$a as getListRecordsByNameAdapterFactory, getListRecordsByName_imperative, getListUi, getListUi_imperative, getLookupActions, getLookupActions_imperative, getLookupMetadata, getLookupMetadata_imperative, getLookupRecords, getLookupRecords_imperative, getNavItems, getNavItems_imperative, getObjectCreateActions, getObjectCreateActions_imperative, getObjectInfo, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfo_imperative, getObjectInfos, getObjectInfosAdapterFactory, getObjectInfos_imperative, getPathLayout, getPathLayout_imperative, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionInfo, getQuickActionInfo_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActionsAdapterFactory, getRecordActions_imperative, factory$f as getRecordAdapterFactory, getRecordAvatars, getRecordAvatarsAdapterFactory, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordId18Array, getRecordIngestionOverride, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActionsAdapterFactory, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoAdapterFactory, getRelatedListInfoBatch, getRelatedListInfoBatchAdapterFactory, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatch, getRelatedListRecordsBatchAdapterFactory, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActionsAdapterFactory, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfoAdapterFactory, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$X as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$H as ingestObjectInfo, ingest$B as ingestQuickActionExecutionRepresentation, ingest$O as ingestRecord, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$E as keyBuilderFromTypeRecordRepresentation, keyBuilder$1Y as keyBuilderObjectInfo, keyBuilder$1R as keyBuilderQuickActionExecutionRepresentation, keyBuilder$29 as keyBuilderRecord, notifyAllListInfoSummaryUpdateAvailable, notifyAllListRecordUpdateAvailable, notifyListInfoSummaryUpdateAvailable, notifyListInfoUpdateAvailable, notifyListRecordCollectionUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyQuickActionDefaultsUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, registerPrefetcher, updateLayoutUserState, updateListInfoByName, updateListPreferences, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
37477
- // version: 1.441.0-0055bd971e
37547
+ // version: 1.443.0-3de9a44799
package/src/raml/api.raml CHANGED
@@ -3045,6 +3045,9 @@ types:
3045
3045
  lwcComponent:
3046
3046
  description: LWC Component associated with the action
3047
3047
  type: string | nil
3048
+ pageDeveloperName:
3049
+ description: For Flexipage-backed Quick Actions, the FlexiPage's DeveloperName resolved server-side from QuickActionDefinition.ComponentId.
3050
+ type: string | nil
3048
3051
  primaryColor:
3049
3052
  description: Hex Color Code, such as 7F8DE1
3050
3053
  type: string | nil
@@ -3073,6 +3076,9 @@ types:
3073
3076
  targetObject:
3074
3077
  description: Target Object for the action
3075
3078
  type: string | nil
3079
+ targetParentField:
3080
+ description: The lookup field on the target object that points to the source (parent) record. For Quick Actions, resolved server-side from QuickActionDefinition.TargetField.
3081
+ type: string | nil
3076
3082
  targetUrl:
3077
3083
  description: Target URL for Custom Button Actions
3078
3084
  type: string | nil