@salesforce/lds-adapters-uiapi 1.252.0 → 1.256.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.
@@ -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.153.0-32ab5c05
98
+ // engine version: 0.154.3-c6624f8e
99
99
 
100
100
  const { keys: ObjectKeys, create: ObjectCreate } = Object;
101
101
 
package/src/raml/api.raml CHANGED
@@ -5174,6 +5174,9 @@ types:
5174
5174
  type:
5175
5175
  type: string
5176
5176
  required: false
5177
+ defaultTemplateOnly:
5178
+ type: boolean
5179
+ required: false
5177
5180
  uriParameters:
5178
5181
  objectApiName:
5179
5182
  type: string
@@ -552,6 +552,9 @@ types:
552
552
  uriParameters:
553
553
  objectApiName:
554
554
  get:
555
+ queryParameters:
556
+ type: string
557
+ defaultTemplateOnly: boolean
555
558
  (luvio.adapter):
556
559
  name: getActionOverrides
557
560
  coercedParams:
@@ -1,20 +0,0 @@
1
- import type { AdapterValidationConfig } from '../../../generated/adapters/adapter-utils';
2
- import type { GetLookupRecordsConfig } from '../../../generated/adapters/getLookupRecords';
3
- import type { FieldId } from '../../../primitives/FieldId';
4
- import type { RecordInputRepresentation as types_RecordInputRepresentation_RecordInputRepresentation } from '../../../generated/types/RecordInputRepresentation';
5
- interface GetLookupRecordsConfigRequestParams {
6
- q?: string;
7
- page?: number;
8
- pageSize?: number;
9
- dependentFieldBindings?: string[];
10
- searchType?: 'Recent' | 'Search' | 'TypeAhead';
11
- sourceRecordId?: string;
12
- targetApiName?: string;
13
- sourceRecord?: types_RecordInputRepresentation_RecordInputRepresentation | null;
14
- }
15
- export interface GetLookupRecordsAdapterConfig {
16
- fieldApiName: string | FieldId;
17
- requestParams?: GetLookupRecordsConfigRequestParams;
18
- }
19
- export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: AdapterValidationConfig): GetLookupRecordsConfig | null;
20
- export {};
@@ -1,4 +0,0 @@
1
- import type { FetchResponse, FulfilledSnapshot, Luvio, PendingSnapshot, SnapshotRefresh, StaleSnapshot } from '@luvio/engine';
2
- import type { LookupValuesRepresentation } from '../../../generated/types/LookupValuesRepresentation';
3
- import type { ResourceRequestConfig } from '../../../generated/resources/postUiApiLookupsByFieldApiNameAndObjectApiName';
4
- export declare function ingestSuccess(luvio: Luvio, resourceParams: ResourceRequestConfig, response: FetchResponse<LookupValuesRepresentation>, snapshotRefresh?: SnapshotRefresh<LookupValuesRepresentation>): FulfilledSnapshot<LookupValuesRepresentation, {}> | StaleSnapshot<LookupValuesRepresentation, {}> | PendingSnapshot<LookupValuesRepresentation, any>;
@@ -1,5 +0,0 @@
1
- import type { Fragment, Luvio, AdapterContext } from '@luvio/engine';
2
- import type { LookupValuesRepresentation } from '../../../generated/types/LookupValuesRepresentation';
3
- import type { ResourceRequestConfig } from '../../../generated/resources/postUiApiLookupsByFieldApiNameAndObjectApiName';
4
- export declare function setContext(adapterContext: AdapterContext): void;
5
- export declare const select: (luvio: Luvio, params: ResourceRequestConfig, response?: LookupValuesRepresentation) => Fragment;