@salesforce/lds-adapters-industries-context 1.444.0 → 1.445.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 +1063 -1047
- package/dist/es/es2018/types/src/generated/adapters/deleteContextServiceAttributes.d.ts +17 -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/postConnectContextNodesContextAttributesDeleteByContextNodeId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/types/ContextAttributeListRepresentation.d.ts +2 -11
- package/package.json +4 -4
- package/sfdc/index.js +770 -751
- package/src/raml/api.raml +16 -0
- package/src/raml/luvio.raml +5 -0
package/src/raml/api.raml
CHANGED
|
@@ -3622,6 +3622,22 @@ types:
|
|
|
3622
3622
|
type: ContextAttributesListInputWrapperRepresentation
|
|
3623
3623
|
# required: false # TODO Hand rolled W-12486791.
|
|
3624
3624
|
(oas-body-name): contextAttributeListInput
|
|
3625
|
+
/delete:
|
|
3626
|
+
post:
|
|
3627
|
+
displayName: deleteContextServiceAttributes
|
|
3628
|
+
description: Delete Context Attributes
|
|
3629
|
+
responses:
|
|
3630
|
+
'200':
|
|
3631
|
+
description: Success
|
|
3632
|
+
body:
|
|
3633
|
+
application/json:
|
|
3634
|
+
type: ContextAttributeListRepresentation
|
|
3635
|
+
body:
|
|
3636
|
+
application/json:
|
|
3637
|
+
# TODO: Hand rolled 'type' to provide a wrapper that uses the oas-body-name
|
|
3638
|
+
type: ContextAttributesListInputWrapperRepresentation
|
|
3639
|
+
# required: false # TODO Hand rolled W-12486791.
|
|
3640
|
+
(oas-body-name): contextAttributesListInput
|
|
3625
3641
|
uriParameters:
|
|
3626
3642
|
contextNodeId:
|
|
3627
3643
|
description: Unique ID to represent a Context Node
|
package/src/raml/luvio.raml
CHANGED
|
@@ -71,6 +71,7 @@ types:
|
|
|
71
71
|
id: contextNodeMappingId
|
|
72
72
|
ContextAttributeListRepresentation:
|
|
73
73
|
(luvio.ttl): 1000
|
|
74
|
+
(luvio.opaque): true
|
|
74
75
|
(luvio.key):
|
|
75
76
|
id: contextAttributeListId
|
|
76
77
|
ContextAttributeMappingListRepresentation:
|
|
@@ -405,6 +406,10 @@ types:
|
|
|
405
406
|
post:
|
|
406
407
|
(luvio.adapter):
|
|
407
408
|
name: createContextAttributes
|
|
409
|
+
/delete:
|
|
410
|
+
post:
|
|
411
|
+
(luvio.adapter):
|
|
412
|
+
name: deleteContextServiceAttributes
|
|
408
413
|
uriParameters:
|
|
409
414
|
contextNodeId:
|
|
410
415
|
/context-nodes/{contextNodeId}/context-attributes/{contextAttributeId}:
|