@salesforce/lds-adapters-analytics-wave 1.439.0 → 1.441.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/analytics-wave.js +3266 -3056
- package/dist/es/es2018/types/src/generated/adapters/getWaveUnsupportedFeatures.d.ts +26 -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 +3 -1
- package/dist/es/es2018/types/src/generated/resources/getWaveUnsupportedFeatures.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/types/WaveUnsupportedFeaturesRepresentation.d.ts +29 -0
- package/package.json +4 -4
- package/sfdc/index.js +4376 -4154
- package/src/raml/api.raml +18 -0
- package/src/raml/luvio.raml +6 -0
package/src/raml/api.raml
CHANGED
|
@@ -5040,6 +5040,15 @@ types:
|
|
|
5040
5040
|
- MaxDailySizeLowOutputCon
|
|
5041
5041
|
- MaxDailySizeMedOutputCon
|
|
5042
5042
|
- OutputLocalConnectorVolume
|
|
5043
|
+
WaveUnsupportedFeaturesRepresentation:
|
|
5044
|
+
description: A collection of unsupported feature identifiers for the current environment.
|
|
5045
|
+
type: object
|
|
5046
|
+
properties:
|
|
5047
|
+
features:
|
|
5048
|
+
description: A list of unsupported feature identifiers.
|
|
5049
|
+
type: array
|
|
5050
|
+
items:
|
|
5051
|
+
type: string
|
|
5043
5052
|
WaveFileMetadataRepresentation:
|
|
5044
5053
|
description: Information about a file.
|
|
5045
5054
|
type: object
|
|
@@ -7300,6 +7309,15 @@ types:
|
|
|
7300
7309
|
- MaxDailySizeMedOutputCon
|
|
7301
7310
|
- OutputLocalConnectorVolume
|
|
7302
7311
|
(oas-collectionFormat): csv
|
|
7312
|
+
/unsupportedFeatures:
|
|
7313
|
+
get:
|
|
7314
|
+
description: Retrieves a list of unsupported features for the current environment.
|
|
7315
|
+
responses:
|
|
7316
|
+
'200':
|
|
7317
|
+
description: Success
|
|
7318
|
+
body:
|
|
7319
|
+
application/json:
|
|
7320
|
+
type: WaveUnsupportedFeaturesRepresentation
|
|
7303
7321
|
/query:
|
|
7304
7322
|
post:
|
|
7305
7323
|
description: Execute a query.
|
package/src/raml/luvio.raml
CHANGED
|
@@ -112,6 +112,8 @@ types:
|
|
|
112
112
|
(luvio.opaque): true
|
|
113
113
|
WaveAnalyticsLimitCollectionRepresentation:
|
|
114
114
|
(luvio.ttl): 300
|
|
115
|
+
WaveUnsupportedFeaturesRepresentation:
|
|
116
|
+
(luvio.ttl): 300
|
|
115
117
|
WaveFolderCollectionRepresentation:
|
|
116
118
|
(luvio.ttl): 5000
|
|
117
119
|
XmdRepresentation:
|
|
@@ -322,6 +324,10 @@ types:
|
|
|
322
324
|
get:
|
|
323
325
|
(luvio.adapter):
|
|
324
326
|
name: getAnalyticsLimits
|
|
327
|
+
/unsupportedFeatures:
|
|
328
|
+
get:
|
|
329
|
+
(luvio.adapter):
|
|
330
|
+
name: getWaveUnsupportedFeatures
|
|
325
331
|
/query:
|
|
326
332
|
post:
|
|
327
333
|
(luvio.adapter):
|