@salesforce/lds-adapters-uiapi 1.314.0 → 1.316.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/getLookupRecords.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/postUiApiLookupsByFieldApiNameAndObjectApiName.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/types/LookupPOSTRequestBodyRepresentation.d.ts +7 -4
- package/dist/es/es2018/types/src/main.d.ts +2 -0
- package/dist/es/es2018/types/src/primitives/SortedStringArrayTitleCase/coerce.d.ts +1 -0
- package/dist/es/es2018/types/src/validation/utils.d.ts +5 -0
- package/dist/es/es2018/types/src/wire/createContentDocumentAndVersion/configurationTypes.d.ts +2 -3
- package/dist/es/es2018/types/src/wire/createRecord/configurationTypes.d.ts +2 -3
- package/dist/es/es2018/types/src/wire/deleteRecord/configurationTypes.d.ts +3 -2
- package/dist/es/es2018/types/src/wire/getLookupRecords/index.d.ts +3 -1
- package/dist/es/es2018/types/src/wire/graphql/configurationTypes.d.ts +3 -3
- package/dist/es/es2018/types/src/wire/graphqlBatch/configurationTypes.d.ts +2 -3
- package/dist/es/es2018/types/src/wire/performQuickAction/index.d.ts +1 -1
- package/dist/es/es2018/types/src/wire/performUpdateRecordQuickAction/index.d.ts +1 -1
- package/dist/es/es2018/types/src/wire/updateRecord/configurationTypes.d.ts +2 -3
- package/dist/es/es2018/uiapi-records-service.js +698 -752
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +3 -3
- package/sfdc/index.js +720 -774
- package/src/raml/api.raml +7 -3
- package/src/raml/luvio.raml +4 -2
package/src/raml/api.raml
CHANGED
|
@@ -2373,9 +2373,13 @@ types:
|
|
|
2373
2373
|
properties:
|
|
2374
2374
|
sourceRecord:
|
|
2375
2375
|
description: The source record
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2376
|
+
type: RecordInputRepresentation
|
|
2377
|
+
required: false
|
|
2378
|
+
orderBy:
|
|
2379
|
+
description: The sorting preference for the results.
|
|
2380
|
+
type: array
|
|
2381
|
+
items:
|
|
2382
|
+
type: ListOrderedByInfoInputRepresentation
|
|
2379
2383
|
required: false
|
|
2380
2384
|
MatchRepresentation:
|
|
2381
2385
|
description: 'Representation of group of possible matches '
|
package/src/raml/luvio.raml
CHANGED
|
@@ -481,6 +481,8 @@ types:
|
|
|
481
481
|
(luvio.coerceFunction): ../primitives/SortedStringArray/coerce
|
|
482
482
|
SortedStringArrayAllowEmpty:
|
|
483
483
|
(luvio.coerceFunction): ../primitives/SortedStringArrayAllowEmpty/coerce
|
|
484
|
+
SortedStringArrayTitleCase:
|
|
485
|
+
(luvio.coerceFunction): ../primitives/SortedStringArrayTitleCase/coerce
|
|
484
486
|
SalesforceFieldIdArray:
|
|
485
487
|
(luvio.coerceFunction): ../primitives/FieldIdArray/coerce
|
|
486
488
|
SalesforceRecordId18:
|
|
@@ -1327,7 +1329,7 @@ types:
|
|
|
1327
1329
|
mockPayloadId: mockAccountResponse
|
|
1328
1330
|
coercedParams:
|
|
1329
1331
|
recordId: SalesforceRecordId18
|
|
1330
|
-
layoutTypes:
|
|
1332
|
+
layoutTypes: SortedStringArrayTitleCase
|
|
1331
1333
|
modes: SortedStringArray
|
|
1332
1334
|
fields: SalesforceFieldIdArray
|
|
1333
1335
|
optionalFields: SalesforceFieldIdArray
|
|
@@ -1368,7 +1370,7 @@ types:
|
|
|
1368
1370
|
name: getRecordUi
|
|
1369
1371
|
coercedParams:
|
|
1370
1372
|
recordIds: SalesforceRecordId18Array
|
|
1371
|
-
layoutTypes:
|
|
1373
|
+
layoutTypes: SortedStringArrayTitleCase
|
|
1372
1374
|
modes: SortedStringArray
|
|
1373
1375
|
optionalFields: SalesforceFieldIdArray
|
|
1374
1376
|
tests:
|