@salesforce/lds-adapters-industries-contextrules 1.292.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/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
@@ -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