@salesforce/lds-adapters-analytics-wave 1.426.1 → 1.428.0-dev1
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/analytics-wave.js +906 -758
- package/dist/es/es2018/types/src/generated/adapters/getDataConnectorSourceFieldsWithAdvProps.d.ts +31 -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/postWaveDataConnectorsSourceObjectsFieldsByConnectorIdOrApiNameAndSourceObjectName.d.ts +21 -0
- package/package.json +4 -4
- package/sfdc/index.js +1189 -984
- package/src/raml/api.raml +12 -0
- package/src/raml/luvio.raml +7 -0
package/src/raml/api.raml
CHANGED
|
@@ -6622,6 +6622,18 @@ types:
|
|
|
6622
6622
|
body:
|
|
6623
6623
|
application/json:
|
|
6624
6624
|
type: SourceFieldCollectionRepresentation
|
|
6625
|
+
post:
|
|
6626
|
+
description: Get a list of all the Source Fields of a particular Source Object with advanced filtering options.
|
|
6627
|
+
responses:
|
|
6628
|
+
'200':
|
|
6629
|
+
description: Success
|
|
6630
|
+
body:
|
|
6631
|
+
application/json:
|
|
6632
|
+
type: SourceFieldCollectionRepresentation
|
|
6633
|
+
body:
|
|
6634
|
+
application/json:
|
|
6635
|
+
type: SourceObjectDataInputWrapperRepresentation
|
|
6636
|
+
(oas-body-name): sourceObjectParam
|
|
6625
6637
|
uriParameters:
|
|
6626
6638
|
connectorIdOrApiName:
|
|
6627
6639
|
type: string
|
package/src/raml/luvio.raml
CHANGED
|
@@ -173,6 +173,13 @@ types:
|
|
|
173
173
|
(luvio.key):
|
|
174
174
|
connectorIdOrApiName: urlParams.connectorIdOrApiName
|
|
175
175
|
SourceObjectName: urlParams.sourceObjectName
|
|
176
|
+
post:
|
|
177
|
+
(luvio.adapter):
|
|
178
|
+
name: getDataConnectorSourceFieldsWithAdvProps
|
|
179
|
+
(luvio.method): get
|
|
180
|
+
(luvio.key):
|
|
181
|
+
connectorIdOrApiName: urlParams.connectorIdOrApiName
|
|
182
|
+
SourceObjectName: urlParams.sourceObjectName
|
|
176
183
|
/ingest:
|
|
177
184
|
post:
|
|
178
185
|
(luvio.adapter):
|