@salesforce/lds-adapters-industries-context 1.312.1 → 1.314.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/industries-context.js +813 -676
- package/dist/es/es2018/types/src/generated/adapters/cloneContextMappings.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/postConnectContextMappingsClone.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/types/ContextMappingCloneInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/ContextMappingCloneInputWrapperRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/ContextMappingCloneListInputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/ContextMappingCloneListInputWrapperRepresentation.d.ts +29 -0
- package/package.json +4 -4
- package/sfdc/index.js +1917 -1777
- package/src/raml/api.raml +52 -0
- package/src/raml/luvio.raml +4 -0
package/src/raml/api.raml
CHANGED
|
@@ -1235,6 +1235,41 @@ types:
|
|
|
1235
1235
|
description: Generate Default SObject Mappings.
|
|
1236
1236
|
type: boolean
|
|
1237
1237
|
required: false # TODO Hand-rolled W-12486791
|
|
1238
|
+
ContextMappingCloneInputRepresentation:
|
|
1239
|
+
description: Input representation of Context Mapping Clone
|
|
1240
|
+
type: object
|
|
1241
|
+
properties:
|
|
1242
|
+
contextMappingName:
|
|
1243
|
+
description: Context Mapping Name - Required for Clone
|
|
1244
|
+
type: string
|
|
1245
|
+
originalContextMappingId:
|
|
1246
|
+
description: ID of this Original Context Mapping - Required for Cloning
|
|
1247
|
+
type: string
|
|
1248
|
+
# TODO Hand-rolled W-16593206
|
|
1249
|
+
ContextMappingCloneInputWrapperRepresentation:
|
|
1250
|
+
description: Wrapper Input representation for ContextMappingCloneInputRepresentation
|
|
1251
|
+
type: object
|
|
1252
|
+
properties:
|
|
1253
|
+
contextMappingCloneInput:
|
|
1254
|
+
description: Input representation of Context Node Mapping
|
|
1255
|
+
type: ContextMappingCloneInputRepresentation
|
|
1256
|
+
ContextMappingCloneListInputRepresentation:
|
|
1257
|
+
description: Input representation of Context Mapping Clone List
|
|
1258
|
+
type: object
|
|
1259
|
+
properties:
|
|
1260
|
+
contextMappingClones:
|
|
1261
|
+
description: List of ContextMappingClones
|
|
1262
|
+
type: array
|
|
1263
|
+
items:
|
|
1264
|
+
type: ContextMappingCloneInputRepresentation
|
|
1265
|
+
# TODO Hand-rolled W-16593206
|
|
1266
|
+
ContextMappingCloneListInputWrapperRepresentation:
|
|
1267
|
+
description: Wrapper Input representation for ContextMappingCloneListInputRepresentation
|
|
1268
|
+
type: object
|
|
1269
|
+
properties:
|
|
1270
|
+
contextMappingCloneInput:
|
|
1271
|
+
description: Input representation of Context Node List
|
|
1272
|
+
type: ContextMappingCloneListInputRepresentation
|
|
1238
1273
|
ContextMappingListRepresentation:
|
|
1239
1274
|
description: Output representation of List of Context Mappings
|
|
1240
1275
|
type: object
|
|
@@ -2410,6 +2445,23 @@ types:
|
|
|
2410
2445
|
description: Unique ID to represent a Context Definition
|
|
2411
2446
|
type: string
|
|
2412
2447
|
required: true
|
|
2448
|
+
|
|
2449
|
+
/context-mappings/clone:
|
|
2450
|
+
post:
|
|
2451
|
+
displayName: postContextMappingClone
|
|
2452
|
+
description: Clone Context Mapping
|
|
2453
|
+
responses:
|
|
2454
|
+
'200':
|
|
2455
|
+
description: Success
|
|
2456
|
+
body:
|
|
2457
|
+
application/json:
|
|
2458
|
+
type: ContextMappingListRepresentation
|
|
2459
|
+
body:
|
|
2460
|
+
application/json:
|
|
2461
|
+
type: ContextMappingCloneListInputWrapperRepresentation
|
|
2462
|
+
#required: false #TODO Hand rolled W-16593206
|
|
2463
|
+
(oas-body-name): contextMappingCloneInput
|
|
2464
|
+
|
|
2413
2465
|
/context-mappings/{contextMappingId}/context-node-mappings:
|
|
2414
2466
|
patch:
|
|
2415
2467
|
description: Update Context Node Mappings
|
package/src/raml/luvio.raml
CHANGED
|
@@ -261,6 +261,10 @@ types:
|
|
|
261
261
|
name: createContextNodeMappings
|
|
262
262
|
uriParameters:
|
|
263
263
|
contextMappingId:
|
|
264
|
+
/context-mappings/clone:
|
|
265
|
+
post:
|
|
266
|
+
(luvio.adapter):
|
|
267
|
+
name: cloneContextMappings
|
|
264
268
|
/context-mappings/{contextMappingId}/context-node-mappings/{contextNodeMappingId}:
|
|
265
269
|
get:
|
|
266
270
|
(luvio.adapter):
|