@salesforce/lds-adapters-analytics-wave 1.354.0-dev2 → 1.354.0-dev21
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
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "682d8becb69451b6b6baf26e889f3577";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ConnectionsStatsRepresentation, existing: ConnectionsStatsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ConnectionsStatsRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ConnectionsStatsRepresentationNormalized, incoming: ConnectionsStatsRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ConnectionsStatsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* A Connection Property Name and Value.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ConnectionsStatsRepresentationNormalized {
|
|
17
|
+
/** current amount of objects to opt in datasync to parquet */
|
|
18
|
+
currentParquetOptInObjects: number;
|
|
19
|
+
/** maximum amount of objects to opt in datasync to parquet */
|
|
20
|
+
maximumParquetOptInObjects: number;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A Connection Property Name and Value.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ConnectionsStatsRepresentation {
|
|
29
|
+
currentParquetOptInObjects: number;
|
|
30
|
+
maximumParquetOptInObjects: number;
|
|
31
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { ConnectionsStatsRepresentation as ConnectionsStatsRepresentation_ConnectionsStatsRepresentation } from './ConnectionsStatsRepresentation';
|
|
1
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
3
|
import { DataConnectorRepresentation as DataConnectorRepresentation_DataConnectorRepresentation } from './DataConnectorRepresentation';
|
|
3
4
|
export declare const TTL = 300;
|
|
4
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "d836e1e5ce20c839538430ec3bed691a";
|
|
5
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
7
|
export declare const RepresentationType: string;
|
|
7
8
|
export declare function normalize(input: DataConnectorCollectionRepresentation, existing: DataConnectorCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataConnectorCollectionRepresentationNormalized;
|
|
@@ -27,6 +28,8 @@ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$lu
|
|
|
27
28
|
export interface DataConnectorCollectionRepresentationNormalized {
|
|
28
29
|
/** A list of Data Connectors. */
|
|
29
30
|
dataConnectors: Array<$64$luvio_engine_StoreLink>;
|
|
31
|
+
/** limits and current stats of the connectors */
|
|
32
|
+
stats?: ConnectionsStatsRepresentation_ConnectionsStatsRepresentation;
|
|
30
33
|
/** The URL to get the collection. */
|
|
31
34
|
url: string;
|
|
32
35
|
}
|
|
@@ -38,5 +41,6 @@ export interface DataConnectorCollectionRepresentationNormalized {
|
|
|
38
41
|
*/
|
|
39
42
|
export interface DataConnectorCollectionRepresentation {
|
|
40
43
|
dataConnectors: Array<DataConnectorRepresentation_DataConnectorRepresentation>;
|
|
44
|
+
stats?: ConnectionsStatsRepresentation_ConnectionsStatsRepresentation;
|
|
41
45
|
url: string;
|
|
42
46
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-wave",
|
|
3
|
-
"version": "1.354.0-
|
|
3
|
+
"version": "1.354.0-dev21",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "The Einstein Analytics family of APIs",
|
|
6
6
|
"main": "dist/es/es2018/analytics-wave.js",
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@salesforce/lds-bindings": "^1.354.0-
|
|
69
|
+
"@salesforce/lds-bindings": "^1.354.0-dev21"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@salesforce/lds-compiler-plugins": "^1.354.0-
|
|
73
|
-
"@salesforce/lds-karma": "^1.354.0-
|
|
72
|
+
"@salesforce/lds-compiler-plugins": "^1.354.0-dev21",
|
|
73
|
+
"@salesforce/lds-karma": "^1.354.0-dev21"
|
|
74
74
|
},
|
|
75
75
|
"volta": {
|
|
76
76
|
"extends": "../../package.json"
|