@salesforce/lds-adapters-industries-contextrules 1.293.0 → 1.294.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-contextrules.js +474 -195
- package/dist/es/es2018/types/src/generated/adapters/getUsageTypeDetail.d.ts +28 -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 +4 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectContextRulesUsageTypesByUsageType.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/types/UsageSubtypeHashLookupColumnOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/UsageSubtypeOutputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/UsageTypeOutputRepresentation.d.ts +45 -0
- package/package.json +3 -3
- package/sfdc/index.js +514 -179
- package/src/raml/api.raml +53 -0
- package/src/raml/luvio.raml +11 -0
package/src/raml/api.raml
CHANGED
|
@@ -102,6 +102,45 @@ types:
|
|
|
102
102
|
type: array
|
|
103
103
|
items:
|
|
104
104
|
type: RuleLibraryTagMappingsReadOutputRepresentation
|
|
105
|
+
UsageTypeOutputRepresentation:
|
|
106
|
+
description: Output representation of context rule usageType
|
|
107
|
+
type: object
|
|
108
|
+
properties:
|
|
109
|
+
mappingNames:
|
|
110
|
+
description: mapping names
|
|
111
|
+
type: array
|
|
112
|
+
items:
|
|
113
|
+
type: string
|
|
114
|
+
usageSubtypes:
|
|
115
|
+
description: Usage Subtypes
|
|
116
|
+
type: array
|
|
117
|
+
items:
|
|
118
|
+
type: UsageSubtypeOutputRepresentation
|
|
119
|
+
usageType:
|
|
120
|
+
description: Usage type
|
|
121
|
+
type: string
|
|
122
|
+
UsageSubtypeOutputRepresentation:
|
|
123
|
+
description: Output representation of context rule usageSubtype
|
|
124
|
+
type: object
|
|
125
|
+
properties:
|
|
126
|
+
hashLookupColumns:
|
|
127
|
+
description: Hash Lookup Columns
|
|
128
|
+
type: array
|
|
129
|
+
items:
|
|
130
|
+
type: UsageSubtypeHashLookupColumnOutputRepresentation
|
|
131
|
+
usageSubtype:
|
|
132
|
+
description: Usage Subtype
|
|
133
|
+
type: string
|
|
134
|
+
UsageSubtypeHashLookupColumnOutputRepresentation:
|
|
135
|
+
description: Output representation of hash lookup columns
|
|
136
|
+
type: object
|
|
137
|
+
properties:
|
|
138
|
+
sequenceNumber:
|
|
139
|
+
description: Sequence number
|
|
140
|
+
type: integer
|
|
141
|
+
subtypeMappingName:
|
|
142
|
+
description: Usage Subtype mapping name
|
|
143
|
+
type: string
|
|
105
144
|
/connect/context-rules:
|
|
106
145
|
/context-tag-mappings/rule-library-api-name/{ruleLibraryApiName}/version-number/{versionNumber}:
|
|
107
146
|
get:
|
|
@@ -176,3 +215,17 @@ types:
|
|
|
176
215
|
versionNumber:
|
|
177
216
|
type: string
|
|
178
217
|
required: true
|
|
218
|
+
/usage-types/{usageType}:
|
|
219
|
+
get:
|
|
220
|
+
displayName: getContextRuleUsageType
|
|
221
|
+
description: Get UsageType detail
|
|
222
|
+
responses:
|
|
223
|
+
'200':
|
|
224
|
+
description: Success
|
|
225
|
+
body:
|
|
226
|
+
application/json:
|
|
227
|
+
type: UsageTypeOutputRepresentation
|
|
228
|
+
uriParameters:
|
|
229
|
+
usageType:
|
|
230
|
+
type: string
|
|
231
|
+
required: true
|
package/src/raml/luvio.raml
CHANGED
|
@@ -21,6 +21,11 @@ types:
|
|
|
21
21
|
(luvio.opaque): true
|
|
22
22
|
(luvio.key):
|
|
23
23
|
id: mappingName
|
|
24
|
+
UsageTypeOutputRepresentation:
|
|
25
|
+
(luvio.ttl): 1000
|
|
26
|
+
(luvio.opaque): true
|
|
27
|
+
(luvio.key):
|
|
28
|
+
id: usageType
|
|
24
29
|
|
|
25
30
|
/connect/context-rules:
|
|
26
31
|
/context-tag-mappings/rule-library-api-name/{ruleLibraryApiName}/version-number/{versionNumber}:
|
|
@@ -44,3 +49,9 @@ types:
|
|
|
44
49
|
name: deleteContextTagMapping
|
|
45
50
|
(luvio.key):
|
|
46
51
|
id: urlParams.mappingName
|
|
52
|
+
/usage-types/{usageType}:
|
|
53
|
+
get:
|
|
54
|
+
(luvio.adapter):
|
|
55
|
+
name: getUsageTypeDetail
|
|
56
|
+
(luvio.key):
|
|
57
|
+
id: urlParams.usageType
|