@salesforce/lds-adapters-uiapi 1.244.0 → 1.246.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/getListPreferences.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getListRecordsByName.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getLookupRecords.d.ts +6 -4
- package/dist/es/es2018/types/src/generated/adapters/getObjectInfoDirectory.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc_restAdapters.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getUiApiListPreferencesByListViewApiNameAndObjectApiName.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getUiApiListRecordsByListViewApiNameAndObjectApiName.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getUiApiListRecordsByListViewId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/{getUiApiLookupsByFieldApiNameAndObjectApiName.d.ts → postUiApiLookupsByFieldApiNameAndObjectApiName.d.ts} +4 -0
- package/dist/es/es2018/types/src/generated/types/ListColumnRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ListInfoRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ListPreferencesRepresentation.d.ts +59 -0
- package/dist/es/es2018/types/src/generated/types/ListRecordCollectionRepresentation.d.ts +13 -7
- package/dist/es/es2018/types/src/generated/types/ListScopeInputRepresentation.d.ts +5 -5
- package/dist/es/es2018/types/src/generated/types/LookupPOSTRequestBodyRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/ObjectInfoDirectoryEntryRepresentation.d.ts +13 -4
- package/dist/es/es2018/types/src/generated/types/ObjectInfoDirectoryRepresentation.d.ts +12 -3
- package/dist/es/es2018/types/src/main.d.ts +4 -0
- package/dist/es/es2018/types/src/predictive-loading/index.d.ts +1 -0
- package/dist/es/es2018/types/src/predictive-loading/registry.d.ts +7 -0
- package/dist/es/es2018/types/src/raml-artifacts/adapters/getLookupRecords/validateAdapterConfig.d.ts +2 -0
- package/dist/es/es2018/types/src/raml-artifacts/resources/{getUiApiLookupsByFieldApiNameAndObjectApiName → postUiApiLookupsByFieldApiNameAndObjectApiName}/ingestSuccess.d.ts +1 -1
- package/dist/es/es2018/types/src/raml-artifacts/resources/{getUiApiLookupsByFieldApiNameAndObjectApiName → postUiApiLookupsByFieldApiNameAndObjectApiName}/select.d.ts +1 -1
- package/dist/es/es2018/types/src/sfdc_rest.d.ts +2 -1
- package/dist/es/es2018/types/src/util/language.d.ts +2 -2
- package/dist/es/es2018/uiapi-records-service.js +3462 -2524
- package/package.json +14 -3
- package/sfdc/graphqlAdapters.js +2 -2
- package/sfdc/index.js +3269 -2323
- package/sfdc/uiapi-static-functions.js +2 -2
- package/src/raml/api.raml +77 -2
- package/src/raml/luvio.raml +43 -17
|
@@ -12,7 +12,7 @@ declare const assign: {
|
|
|
12
12
|
[idx: string]: object | U | null | undefined;
|
|
13
13
|
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
14
14
|
<T_2>(o: T_2): Readonly<T_2>;
|
|
15
|
-
}, keys: {
|
|
15
|
+
}, isFrozen: (o: any) => boolean, keys: {
|
|
16
16
|
(o: object): string[];
|
|
17
17
|
(o: {}): string[];
|
|
18
18
|
};
|
|
@@ -39,4 +39,4 @@ declare const parse: (text: string, reviver?: ((this: any, key: string, value: a
|
|
|
39
39
|
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
40
40
|
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
41
41
|
};
|
|
42
|
-
export { assign as ObjectAssign, create as ObjectCreate, freeze as ObjectFreeze, keys as ObjectKeys, hasOwnProperty as ObjectPrototypeHasOwnProperty, isArray as ArrayIsArray, concat as ArrayPrototypeConcat, filter as ArrayPrototypeFilter, includes as ArrayPrototypeIncludes, push as ArrayPrototypePush, reduce as ArrayPrototypeReduce, split as StringPrototypeSplit, endsWith as StringPrototypeEndsWith, parse as JSONParse, stringify as JSONStringify, };
|
|
42
|
+
export { assign as ObjectAssign, create as ObjectCreate, freeze as ObjectFreeze, isFrozen as ObjectIsFrozen, keys as ObjectKeys, hasOwnProperty as ObjectPrototypeHasOwnProperty, isArray as ArrayIsArray, concat as ArrayPrototypeConcat, filter as ArrayPrototypeFilter, includes as ArrayPrototypeIncludes, push as ArrayPrototypePush, reduce as ArrayPrototypeReduce, split as StringPrototypeSplit, endsWith as StringPrototypeEndsWith, parse as JSONParse, stringify as JSONStringify, };
|