@salesforce/lds-adapters-analytics-wave 1.354.0-dev11 → 1.354.0-dev13
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 +288 -208
- package/dist/es/es2018/types/src/generated/types/ConnectionsStatsRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataConnectorCollectionRepresentation.d.ts +5 -1
- package/package.json +4 -4
- package/sfdc/index.js +1089 -1009
- package/src/raml/api.raml +14 -0
package/src/raml/api.raml
CHANGED
|
@@ -551,6 +551,16 @@ types:
|
|
|
551
551
|
value:
|
|
552
552
|
description: The value of the connection property
|
|
553
553
|
type: string | integer | boolean #TODO handrolled W-9203372
|
|
554
|
+
ConnectionsStatsRepresentation:
|
|
555
|
+
description: A Connection Property Name and Value.
|
|
556
|
+
type: object
|
|
557
|
+
properties:
|
|
558
|
+
maximumParquetOptInObjects:
|
|
559
|
+
description: maximum amount of objects to opt in datasync to parquet
|
|
560
|
+
type: integer
|
|
561
|
+
currentParquetOptInObjects:
|
|
562
|
+
description: current amount of objects to opt in datasync to parquet
|
|
563
|
+
type: integer
|
|
554
564
|
ConnectorTypeRepresentation:
|
|
555
565
|
description: Representation for connector variable types.
|
|
556
566
|
discriminatorValue: ConnectorType # TODO Hand-rolled W-8988532
|
|
@@ -609,6 +619,10 @@ types:
|
|
|
609
619
|
type: array
|
|
610
620
|
items:
|
|
611
621
|
type: DataConnectorRepresentation
|
|
622
|
+
stats:
|
|
623
|
+
description: limits and current stats of the connectors
|
|
624
|
+
type: ConnectionsStatsRepresentation
|
|
625
|
+
required: false
|
|
612
626
|
url:
|
|
613
627
|
description: The URL to get the collection.
|
|
614
628
|
type: string
|