@salesforce/lds-adapters-uiapi 1.239.0 → 1.241.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/createListInfo.d.ts +25 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc_restAdapters.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/postUiApiListInfoByObjectApiName.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/types/ListInfoPostInputRepresentation.d.ts +49 -0
- package/dist/es/es2018/uiapi-records-service.js +9773 -9630
- package/package.json +1 -1
- package/sfdc/graphqlAdapters.js +9114 -9111
- package/sfdc/index.js +927 -784
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +59 -0
- package/src/raml/luvio.raml +10 -0
|
@@ -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.150.1-6f3c0558
|
|
99
99
|
|
|
100
100
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
101
101
|
|
package/src/raml/api.raml
CHANGED
|
@@ -1349,6 +1349,46 @@ types:
|
|
|
1349
1349
|
- Private
|
|
1350
1350
|
- Public
|
|
1351
1351
|
- Shared
|
|
1352
|
+
ListInfoPostInputRepresentation:
|
|
1353
|
+
description: Representation of a List Info input.
|
|
1354
|
+
type: object
|
|
1355
|
+
properties:
|
|
1356
|
+
displayColumns:
|
|
1357
|
+
description: Input representation for display columns (field API names).
|
|
1358
|
+
type: array
|
|
1359
|
+
required: false
|
|
1360
|
+
items:
|
|
1361
|
+
type: ListColumnRepresentation | nil
|
|
1362
|
+
filterLogicString:
|
|
1363
|
+
description: Input representation for filterLogicString.
|
|
1364
|
+
type: string | nil
|
|
1365
|
+
required: false
|
|
1366
|
+
filteredByInfo:
|
|
1367
|
+
description: Input representation for filter metadata.
|
|
1368
|
+
type: array
|
|
1369
|
+
required: false
|
|
1370
|
+
items:
|
|
1371
|
+
type: ListFilterByInfoRepresentation
|
|
1372
|
+
label:
|
|
1373
|
+
description: Input representation for label.
|
|
1374
|
+
type: string
|
|
1375
|
+
required: false
|
|
1376
|
+
listViewApiName:
|
|
1377
|
+
description: Input representation for listview API name.
|
|
1378
|
+
type: string
|
|
1379
|
+
required: false
|
|
1380
|
+
scope:
|
|
1381
|
+
description: Input representation for filterLogicString.
|
|
1382
|
+
type: ListScopeRepresentation | nil
|
|
1383
|
+
required: false
|
|
1384
|
+
visibility:
|
|
1385
|
+
description: Input representation for visibility.
|
|
1386
|
+
type: string
|
|
1387
|
+
required: false
|
|
1388
|
+
enum:
|
|
1389
|
+
- Private
|
|
1390
|
+
- Public
|
|
1391
|
+
- Shared
|
|
1352
1392
|
ListInfoRepresentation:
|
|
1353
1393
|
description: ListInfoRepresentation
|
|
1354
1394
|
type: object
|
|
@@ -5666,6 +5706,25 @@ types:
|
|
|
5666
5706
|
listViewId:
|
|
5667
5707
|
type: string
|
|
5668
5708
|
required: true
|
|
5709
|
+
/{objectApiName}:
|
|
5710
|
+
post:
|
|
5711
|
+
displayName: postListInfo
|
|
5712
|
+
description: Create a new listview.
|
|
5713
|
+
responses:
|
|
5714
|
+
'200':
|
|
5715
|
+
description: Success
|
|
5716
|
+
body:
|
|
5717
|
+
application/json:
|
|
5718
|
+
type: ListInfoRepresentation
|
|
5719
|
+
body:
|
|
5720
|
+
application/json:
|
|
5721
|
+
type: ListInfoPostInputRepresentation
|
|
5722
|
+
# required: false - W-9109412: Property 'required' not supported in a RAML 1.0 object node
|
|
5723
|
+
(oas-body-name): listInfoInput
|
|
5724
|
+
uriParameters:
|
|
5725
|
+
objectApiName:
|
|
5726
|
+
type: string
|
|
5727
|
+
required: true
|
|
5669
5728
|
/{objectApiName}/{listViewApiName}:
|
|
5670
5729
|
get:
|
|
5671
5730
|
displayName: getListInfo
|
package/src/raml/luvio.raml
CHANGED
|
@@ -824,6 +824,16 @@ types:
|
|
|
824
824
|
path: results
|
|
825
825
|
statusCode: statusCode
|
|
826
826
|
body: result
|
|
827
|
+
'/{objectApiName}':
|
|
828
|
+
uriParameters:
|
|
829
|
+
objectApiName:
|
|
830
|
+
examples:
|
|
831
|
+
mockListInfoAllAccounts: Account
|
|
832
|
+
post:
|
|
833
|
+
(luvio.adapter):
|
|
834
|
+
name: createListInfo
|
|
835
|
+
coercedParams:
|
|
836
|
+
objectApiName: SalesforceObjectId
|
|
827
837
|
'/{objectApiName}/{listViewApiName}':
|
|
828
838
|
uriParameters:
|
|
829
839
|
objectApiName:
|