@salesforce/lds-adapters-uiapi 1.264.0 → 1.266.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.
@@ -8,7 +8,7 @@ export declare const getFlexipageFormulaOverrides_ConfigPropertyNames: adapter$4
8
8
  export interface GetFlexipageFormulaOverridesConfig {
9
9
  actionFeature: string;
10
10
  application?: string;
11
- objectApiName?: string;
11
+ objectApiNames?: Array<string>;
12
12
  }
13
13
  export declare const createResourceParams: (config: GetFlexipageFormulaOverridesConfig) => resources_getUiApiActionsFormulaActivationByActionFeature_ResourceRequestConfig;
14
14
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetFlexipageFormulaOverridesConfig): string;
@@ -6,7 +6,7 @@ export interface ResourceRequestConfig {
6
6
  };
7
7
  queryParams: {
8
8
  application?: string;
9
- objectApiName?: string;
9
+ objectApiNames?: Array<string>;
10
10
  };
11
11
  }
12
12
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -5130,8 +5130,7 @@ function markNulledOutPath(record, path) {
5130
5130
  const resolved = link.follow();
5131
5131
  if (isGraphNode(resolved) &&
5132
5132
  resolved.isScalar('value') &&
5133
- path.length > 0 &&
5134
- // TODO [W-14082782]: temporary fix
5133
+ path.length > 0 && // TODO [W-14082782]: temporary fix
5135
5134
  !isFrozen(link.data)) {
5136
5135
  const linkState = link.linkData();
5137
5136
  const fields = linkState === undefined ? [] : linkState.fields;
@@ -9568,7 +9567,15 @@ function prepareRequest_getListRecords(luvio, context, config, listInfo, snapsho
9568
9567
  // eslint-disable-next-line @salesforce/lds/no-error-in-production
9569
9568
  throw new Error('how did MRU config get here?');
9570
9569
  }
9570
+ let releaseKeys = () => { };
9571
9571
  if (snapshot) {
9572
+ if (snapshot.state !== 'Error') {
9573
+ const { recordId, seenRecords } = snapshot;
9574
+ const snapshotRetainedIds = seenRecords === undefined ? [recordId] : [recordId, ...seenRecords.keysAsArray()];
9575
+ const snapshotKeys = [];
9576
+ snapshotRetainedIds.forEach((key) => snapshotKeys.push(key));
9577
+ releaseKeys = luvio.storeRetain(snapshotKeys);
9578
+ }
9572
9579
  const paginationKey = paginationKeyBuilder(luvio, {
9573
9580
  listViewId: listInfo.eTag,
9574
9581
  searchTerm: null,
@@ -9608,11 +9615,14 @@ function prepareRequest_getListRecords(luvio, context, config, listInfo, snapsho
9608
9615
  request.queryParams.pageToken = pageToken;
9609
9616
  }
9610
9617
  }
9611
- return request;
9618
+ return {
9619
+ request: request,
9620
+ releaseKeys: releaseKeys,
9621
+ };
9612
9622
  }
9613
9623
  // Only call this function if you are certain the list view hasn't changed (ie:
9614
9624
  // the listInfoEtag in the body is the same as the cached listInfo.eTag)
9615
- function onResourceSuccess_getListRecords(luvio, context, config, listInfo, response) {
9625
+ function onResourceSuccess_getListRecords(luvio, context, config, listInfo, response, releaseKeys) {
9616
9626
  const { body } = response;
9617
9627
  const { listInfoETag } = body;
9618
9628
  const fields = listFields(luvio, config, listInfo).processRecords(body.records);
@@ -9624,18 +9634,20 @@ function onResourceSuccess_getListRecords(luvio, context, config, listInfo, resp
9624
9634
  listViewApiName: listInfo.listReference.listViewApiName,
9625
9635
  }), ingest$1S, body);
9626
9636
  const snapshot = buildCachedSnapshot$7(luvio, luvio.storeLookup.bind(luvio), context, config, listInfo, fields);
9637
+ releaseKeys();
9627
9638
  return luvio.storeBroadcast().then(() => snapshot);
9628
9639
  }
9629
- function onResourceError_getListRecords(luvio, context, config, listInfo, err) {
9640
+ function onResourceError_getListRecords(luvio, context, config, listInfo, err, releaseKeys) {
9630
9641
  const errorSnapshot = luvio.errorSnapshot(err);
9631
9642
  luvio.storeIngestError(keyBuilder$38(luvio, {
9632
9643
  ...listInfo.listReference,
9633
9644
  sortBy: getSortBy(config, context),
9634
9645
  }), errorSnapshot);
9646
+ releaseKeys();
9635
9647
  return luvio.storeBroadcast().then(() => errorSnapshot);
9636
9648
  }
9637
9649
  function buildNetworkSnapshot_getListRecords(luvio, context, config, listInfo, dispatchOptions, snapshot) {
9638
- const request = prepareRequest_getListRecords(luvio, context, config, listInfo, snapshot);
9650
+ const { request, releaseKeys } = prepareRequest_getListRecords(luvio, context, config, listInfo, snapshot);
9639
9651
  return luvio.dispatchResourceRequest(request).then((response) => {
9640
9652
  const { body } = response;
9641
9653
  // fall back to list-ui if list view has changed
@@ -9649,14 +9661,14 @@ function buildNetworkSnapshot_getListRecords(luvio, context, config, listInfo, d
9649
9661
  body.sortBy = sortBy.split(',');
9650
9662
  }
9651
9663
  // else ingest
9652
- return luvio.handleSuccessResponse(() => onResourceSuccess_getListRecords(luvio, context, config, listInfo, response), () => {
9664
+ return luvio.handleSuccessResponse(() => onResourceSuccess_getListRecords(luvio, context, config, listInfo, response, releaseKeys), () => {
9653
9665
  const cache = new StoreKeyMap();
9654
9666
  getTypeCacheKeys$1V(cache, luvio, body);
9655
9667
  return cache;
9656
9668
  });
9657
9669
  }, (err) => {
9658
9670
  return luvio.handleErrorResponse(() => {
9659
- return onResourceError_getListRecords(luvio, context, config, listInfo, err);
9671
+ return onResourceError_getListRecords(luvio, context, config, listInfo, err, releaseKeys);
9660
9672
  });
9661
9673
  });
9662
9674
  }
@@ -15398,7 +15410,7 @@ function select$2t(luvio, params) {
15398
15410
  return select$2u();
15399
15411
  }
15400
15412
  function keyBuilder$2D(luvio, params) {
15401
- return keyPrefix + '::FlexipageFormulaActivationRepresentation:(' + 'application:' + params.queryParams.application + ',' + 'objectApiName:' + params.queryParams.objectApiName + ',' + 'actionFeature:' + params.urlParams.actionFeature + ')';
15413
+ return keyPrefix + '::FlexipageFormulaActivationRepresentation:(' + 'application:' + params.queryParams.application + ',' + 'objectApiNames:' + params.queryParams.objectApiNames + ',' + 'actionFeature:' + params.urlParams.actionFeature + ')';
15402
15414
  }
15403
15415
  function getResponseCacheKeys$U(storeKeyMap, luvio, resourceParams, response) {
15404
15416
  getTypeCacheKeys$1F(storeKeyMap, luvio, response, () => keyBuilder$2D(luvio, resourceParams));
@@ -15450,7 +15462,7 @@ const adapterName$P = 'getFlexipageFormulaOverrides';
15450
15462
  const getFlexipageFormulaOverrides_ConfigPropertyMetadata = [
15451
15463
  generateParamConfigMetadata('actionFeature', true, 0 /* UrlParameter */, 0 /* String */, false, getObjectApiName$1),
15452
15464
  generateParamConfigMetadata('application', false, 1 /* QueryParameter */, 0 /* String */, false, getObjectApiName$1),
15453
- generateParamConfigMetadata('objectApiName', false, 1 /* QueryParameter */, 0 /* String */, false, getObjectApiName$1),
15465
+ generateParamConfigMetadata('objectApiNames', false, 1 /* QueryParameter */, 0 /* String */, true, toSortedStringArray),
15454
15466
  ];
15455
15467
  const getFlexipageFormulaOverrides_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$P, getFlexipageFormulaOverrides_ConfigPropertyMetadata);
15456
15468
  const createResourceParams$S = /*#__PURE__*/ createResourceParams$13(getFlexipageFormulaOverrides_ConfigPropertyMetadata);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-uiapi",
3
- "version": "1.264.0",
3
+ "version": "1.266.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "Wire adapters for record related UI API endpoints",
6
6
  "main": "dist/es/es2018/uiapi-records-service.js",
@@ -68,14 +68,14 @@
68
68
  }
69
69
  },
70
70
  "dependencies": {
71
- "@salesforce/lds-bindings": "^1.264.0",
72
- "@salesforce/lds-default-luvio": "^1.264.0"
71
+ "@salesforce/lds-bindings": "^1.266.0",
72
+ "@salesforce/lds-default-luvio": "^1.266.0"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@databases/sqlite": "^3.0.0",
76
- "@salesforce/lds-compiler-plugins": "^1.264.0",
77
- "@salesforce/lds-jest": "^1.264.0",
78
- "@salesforce/lds-store-binary": "^1.264.0"
76
+ "@salesforce/lds-compiler-plugins": "^1.266.0",
77
+ "@salesforce/lds-jest": "^1.266.0",
78
+ "@salesforce/lds-store-binary": "^1.266.0"
79
79
  },
80
80
  "luvioBundlesize": [
81
81
  {
@@ -18003,4 +18003,4 @@ register({
18003
18003
  });
18004
18004
 
18005
18005
  export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
18006
- // version: 1.264.0-76ebb1758
18006
+ // version: 1.266.0-081d1ca4f
package/sfdc/index.js CHANGED
@@ -4996,8 +4996,7 @@ function markNulledOutPath(record, path) {
4996
4996
  const resolved = link.follow();
4997
4997
  if (isGraphNode(resolved) &&
4998
4998
  resolved.isScalar('value') &&
4999
- path.length > 0 &&
5000
- // TODO [W-14082782]: temporary fix
4999
+ path.length > 0 && // TODO [W-14082782]: temporary fix
5001
5000
  !isFrozen(link.data)) {
5002
5001
  const linkState = link.linkData();
5003
5002
  const fields = linkState === undefined ? [] : linkState.fields;
@@ -9100,7 +9099,15 @@ function prepareRequest_getListRecords(luvio, context, config, listInfo, snapsho
9100
9099
  // eslint-disable-next-line @salesforce/lds/no-error-in-production
9101
9100
  throw new Error('how did MRU config get here?');
9102
9101
  }
9102
+ let releaseKeys = () => { };
9103
9103
  if (snapshot) {
9104
+ if (snapshot.state !== 'Error') {
9105
+ const { recordId, seenRecords } = snapshot;
9106
+ const snapshotRetainedIds = seenRecords === undefined ? [recordId] : [recordId, ...seenRecords.keysAsArray()];
9107
+ const snapshotKeys = [];
9108
+ snapshotRetainedIds.forEach((key) => snapshotKeys.push(key));
9109
+ releaseKeys = luvio.storeRetain(snapshotKeys);
9110
+ }
9104
9111
  const paginationKey = paginationKeyBuilder(luvio, {
9105
9112
  listViewId: listInfo.eTag,
9106
9113
  searchTerm: null,
@@ -9140,11 +9147,14 @@ function prepareRequest_getListRecords(luvio, context, config, listInfo, snapsho
9140
9147
  request.queryParams.pageToken = pageToken;
9141
9148
  }
9142
9149
  }
9143
- return request;
9150
+ return {
9151
+ request: request,
9152
+ releaseKeys: releaseKeys,
9153
+ };
9144
9154
  }
9145
9155
  // Only call this function if you are certain the list view hasn't changed (ie:
9146
9156
  // the listInfoEtag in the body is the same as the cached listInfo.eTag)
9147
- function onResourceSuccess_getListRecords(luvio, context, config, listInfo, response) {
9157
+ function onResourceSuccess_getListRecords(luvio, context, config, listInfo, response, releaseKeys) {
9148
9158
  const { body } = response;
9149
9159
  const { listInfoETag } = body;
9150
9160
  const fields = listFields(luvio, config, listInfo).processRecords(body.records);
@@ -9156,18 +9166,20 @@ function onResourceSuccess_getListRecords(luvio, context, config, listInfo, resp
9156
9166
  listViewApiName: listInfo.listReference.listViewApiName,
9157
9167
  }), ingest$K, body);
9158
9168
  const snapshot = buildCachedSnapshot$7(luvio, luvio.storeLookup.bind(luvio), context, config, listInfo, fields);
9169
+ releaseKeys();
9159
9170
  return luvio.storeBroadcast().then(() => snapshot);
9160
9171
  }
9161
- function onResourceError_getListRecords(luvio, context, config, listInfo, err) {
9172
+ function onResourceError_getListRecords(luvio, context, config, listInfo, err, releaseKeys) {
9162
9173
  const errorSnapshot = luvio.errorSnapshot(err);
9163
9174
  luvio.storeIngestError(keyBuilder$1Y(luvio, {
9164
9175
  ...listInfo.listReference,
9165
9176
  sortBy: getSortBy(config, context),
9166
9177
  }), errorSnapshot);
9178
+ releaseKeys();
9167
9179
  return luvio.storeBroadcast().then(() => errorSnapshot);
9168
9180
  }
9169
9181
  function buildNetworkSnapshot_getListRecords(luvio, context, config, listInfo, dispatchOptions, snapshot) {
9170
- const request = prepareRequest_getListRecords(luvio, context, config, listInfo, snapshot);
9182
+ const { request, releaseKeys } = prepareRequest_getListRecords(luvio, context, config, listInfo, snapshot);
9171
9183
  return luvio.dispatchResourceRequest(request).then((response) => {
9172
9184
  const { body } = response;
9173
9185
  // fall back to list-ui if list view has changed
@@ -9181,14 +9193,14 @@ function buildNetworkSnapshot_getListRecords(luvio, context, config, listInfo, d
9181
9193
  body.sortBy = sortBy.split(',');
9182
9194
  }
9183
9195
  // else ingest
9184
- return luvio.handleSuccessResponse(() => onResourceSuccess_getListRecords(luvio, context, config, listInfo, response), () => {
9196
+ return luvio.handleSuccessResponse(() => onResourceSuccess_getListRecords(luvio, context, config, listInfo, response, releaseKeys), () => {
9185
9197
  const cache = new StoreKeyMap();
9186
9198
  getTypeCacheKeys$R(cache, luvio, body);
9187
9199
  return cache;
9188
9200
  });
9189
9201
  }, (err) => {
9190
9202
  return luvio.handleErrorResponse(() => {
9191
- return onResourceError_getListRecords(luvio, context, config, listInfo, err);
9203
+ return onResourceError_getListRecords(luvio, context, config, listInfo, err, releaseKeys);
9192
9204
  });
9193
9205
  });
9194
9206
  }
@@ -14930,7 +14942,7 @@ function select$1m(luvio, params) {
14930
14942
  return select$1n();
14931
14943
  }
14932
14944
  function keyBuilder$1v(luvio, params) {
14933
- return keyPrefix + '::FlexipageFormulaActivationRepresentation:(' + 'application:' + params.queryParams.application + ',' + 'objectApiName:' + params.queryParams.objectApiName + ',' + 'actionFeature:' + params.urlParams.actionFeature + ')';
14945
+ return keyPrefix + '::FlexipageFormulaActivationRepresentation:(' + 'application:' + params.queryParams.application + ',' + 'objectApiNames:' + params.queryParams.objectApiNames + ',' + 'actionFeature:' + params.urlParams.actionFeature + ')';
14934
14946
  }
14935
14947
  function getResponseCacheKeys$R(storeKeyMap, luvio, resourceParams, response) {
14936
14948
  getTypeCacheKeys$B(storeKeyMap, luvio, response, () => keyBuilder$1v(luvio, resourceParams));
@@ -14982,7 +14994,7 @@ const adapterName$R = 'getFlexipageFormulaOverrides';
14982
14994
  const getFlexipageFormulaOverrides_ConfigPropertyMetadata = [
14983
14995
  generateParamConfigMetadata('actionFeature', true, 0 /* UrlParameter */, 0 /* String */, false, getObjectApiName$1),
14984
14996
  generateParamConfigMetadata('application', false, 1 /* QueryParameter */, 0 /* String */, false, getObjectApiName$1),
14985
- generateParamConfigMetadata('objectApiName', false, 1 /* QueryParameter */, 0 /* String */, false, getObjectApiName$1),
14997
+ generateParamConfigMetadata('objectApiNames', false, 1 /* QueryParameter */, 0 /* String */, true, toSortedStringArray),
14986
14998
  ];
14987
14999
  const getFlexipageFormulaOverrides_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$R, getFlexipageFormulaOverrides_ConfigPropertyMetadata);
14988
15000
  const createResourceParams$P = /*#__PURE__*/ createResourceParams$10(getFlexipageFormulaOverrides_ConfigPropertyMetadata);
@@ -35291,7 +35303,7 @@ function bindExportsTo(luvio) {
35291
35303
  getListObjectInfo: createWireAdapterConstructor(luvio, getListObjectInfo_ldsAdapter, getListObjectInfoMetadata),
35292
35304
  getListPreferences: createWireAdapterConstructor(luvio, getListPreferences_ldsAdapter, getListPreferencesMetadata),
35293
35305
  getListRecordsByName: createWireAdapterConstructor(luvio, getListRecordsByName_ldsAdapter, getListRecordsByNameMetadata),
35294
- getListUi: createWireAdapterConstructor(luvio, getListUi_ldsAdapter, getListUiMetadata),
35306
+ getListUi: createInfiniteScrollingWireAdapterConstructor(luvio, getListUi_ldsAdapter, getListUiMetadata),
35295
35307
  getLookupActions: createWireAdapterConstructor(luvio, getLookupActions_ldsAdapter, getLookupActionsMetadata),
35296
35308
  getLookupMetadata: createWireAdapterConstructor(luvio, getLookupMetadata_ldsAdapter, getLookupMetadataMetadata),
35297
35309
  getLookupRecords: createWireAdapterConstructor(luvio, getLookupRecords_ldsAdapter, getLookupRecordsMetadata),
@@ -35578,4 +35590,4 @@ withDefaultLuvio((luvio) => {
35578
35590
  });
35579
35591
 
35580
35592
  export { API_NAMESPACE, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$I as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$N as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$S as RecordRepresentationRepresentationType, TTL$y as RecordRepresentationTTL, RepresentationType$S as RecordRepresentationType, VERSION$18 as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, 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, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListObjectInfo, getListObjectInfo_imperative, getListPreferences, getListPreferences_imperative, getListRecordsByName, 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, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActionsAdapterFactory, getRecordActions_imperative, factory$f as getRecordAdapterFactory, getRecordAvatars, getRecordAvatarsAdapterFactory, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoBatch, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsBatch, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$U as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$G as ingestObjectInfo, ingest$A as ingestQuickActionExecutionRepresentation, ingest$L as ingestRecord, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$A as keyBuilderFromTypeRecordRepresentation, keyBuilder$1R as keyBuilderObjectInfo, keyBuilder$1K as keyBuilderQuickActionExecutionRepresentation, keyBuilder$20 as keyBuilderRecord, notifyListInfoUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyQuickActionDefaultsUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, registerPrefetcher, updateLayoutUserState, updateListInfoByName, updateListPreferences, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
35581
- // version: 1.264.0-76ebb1758
35593
+ // version: 1.266.0-081d1ca4f
@@ -95,7 +95,7 @@ var TypeCheckShapes;
95
95
  TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
96
96
  TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
97
97
  })(TypeCheckShapes || (TypeCheckShapes = {}));
98
- // engine version: 0.154.4-7ff4ac46
98
+ // engine version: 0.154.6-a3a5150a
99
99
 
100
100
  const { keys: ObjectKeys, create: ObjectCreate } = Object;
101
101
 
package/src/raml/api.raml CHANGED
@@ -5235,9 +5235,12 @@ types:
5235
5235
  application:
5236
5236
  type: string
5237
5237
  required: false
5238
- objectApiName:
5239
- type: string
5238
+ objectApiNames:
5239
+ type: array
5240
5240
  required: false
5241
+ items:
5242
+ type: string
5243
+ (oas-collectionFormat): csv
5241
5244
  uriParameters:
5242
5245
  actionFeature:
5243
5246
  type: string
@@ -648,7 +648,7 @@ types:
648
648
  coercedParams:
649
649
  actionFeature: SalesforceObjectId
650
650
  application: SalesforceObjectId
651
- objectApiName: SalesforceObjectId
651
+ objectApiNames: SortedStringArray
652
652
  tests:
653
653
  expectedResponses:
654
654
  - configInput: |