@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.
- package/dist/es/es2018/types/src/generated/adapters/getActionOverrides.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getUiApiActionsOverridesByObjectApiName.d.ts +1 -0
- package/dist/es/es2018/types/src/wire/getLookupRecords/index.d.ts +19 -3
- package/dist/es/es2018/uiapi-records-service.js +3659 -3852
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +1 -1
- package/sfdc/index.js +2787 -2980
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +3 -0
- package/src/raml/luvio.raml +3 -0
- package/dist/es/es2018/types/src/raml-artifacts/adapters/getLookupRecords/validateAdapterConfig.d.ts +0 -20
- package/dist/es/es2018/types/src/raml-artifacts/resources/postUiApiLookupsByFieldApiNameAndObjectApiName/ingestSuccess.d.ts +0 -4
- package/dist/es/es2018/types/src/raml-artifacts/resources/postUiApiLookupsByFieldApiNameAndObjectApiName/select.d.ts +0 -5
|
@@ -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.
|
|
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
package/src/raml/luvio.raml
CHANGED
package/dist/es/es2018/types/src/raml-artifacts/adapters/getLookupRecords/validateAdapterConfig.d.ts
DELETED
|
@@ -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;
|