@salesforce/lds-adapters-analytics-wave-private 1.280.0 → 1.282.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-private.js +820 -47
- package/dist/es/es2018/types/src/generated/adapters/executeTemplateSetupPlan.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/getTemplateSetupPlan.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/resources/getWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/postWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/types/TemplateSetupJobRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/TemplateSetupPlanRepresentation.d.ts +60 -0
- package/dist/es/es2018/types/src/generated/types/TemplateSetupTaskRepresentation.d.ts +49 -0
- package/package.json +7 -5
- package/sfdc/index.js +866 -30
- package/src/raml/api.raml +147 -0
- package/src/raml/luvio.raml +15 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_postWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName_ResourceRequestConfig } from '../resources/postWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName';
|
|
4
|
+
import { TemplateSetupPlanRepresentation as types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation } from '../types/TemplateSetupPlanRepresentation';
|
|
5
|
+
export declare const adapterName = "executeTemplateSetupPlan";
|
|
6
|
+
export declare const executeTemplateSetupPlan_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const executeTemplateSetupPlan_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface ExecuteTemplateSetupPlanConfig {
|
|
9
|
+
planName: string;
|
|
10
|
+
templateIdOrApiName: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: ExecuteTemplateSetupPlanConfig) => resources_postWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName_ResourceRequestConfig;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<ExecuteTemplateSetupPlanConfig>): adapter$45$utils_Untrusted<ExecuteTemplateSetupPlanConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): ExecuteTemplateSetupPlanConfig | null;
|
|
15
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: ExecuteTemplateSetupPlanConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, any>>;
|
|
16
|
+
export declare const executeTemplateSetupPlanAdapterFactory: $64$luvio_engine_AdapterFactory<ExecuteTemplateSetupPlanConfig, types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, UncoercedConfiguration as adapter$45$utils_UncoercedConfiguration } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName_ResourceRequestConfig } from '../resources/getWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName';
|
|
4
|
+
import { TemplateSetupPlanRepresentation as types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, KeyParams as types_TemplateSetupPlanRepresentation_KeyParams } from '../types/TemplateSetupPlanRepresentation';
|
|
5
|
+
export declare const adapterName = "getTemplateSetupPlan";
|
|
6
|
+
export declare const getTemplateSetupPlan_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getTemplateSetupPlan_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetTemplateSetupPlanConfig {
|
|
9
|
+
planName: string;
|
|
10
|
+
templateIdOrApiName: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetTemplateSetupPlanConfig) => resources_getWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetTemplateSetupPlanConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetTemplateSetupPlanConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetTemplateSetupPlanConfig>): adapter$45$utils_Untrusted<GetTemplateSetupPlanConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetTemplateSetupPlanConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetTemplateSetupPlanConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetTemplateSetupPlanConfig): $64$luvio_engine_Snapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetTemplateSetupPlanConfig, resourceParams: resources_getWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetTemplateSetupPlanConfig, resourceParams: resources_getWaveTemplatesPlansByPlanNameAndTemplateIdOrApiName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetTemplateSetupPlanConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetTemplateSetupPlanConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation>): $64$luvio_engine_Snapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, any>;
|
|
28
|
+
export declare const getTemplateSetupPlanAdapterFactory: $64$luvio_engine_AdapterFactory<GetTemplateSetupPlanConfig, types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation>;
|
|
29
|
+
export declare const notifyChangeFactory: (luvio: $64$luvio_engine_Luvio, options?: $64$luvio_engine_DispatchResourceRequestContext) => (configs: adapter$45$utils_UncoercedConfiguration<types_TemplateSetupPlanRepresentation_KeyParams, any>[]) => void;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
declare let executeSoqlQueryPost: any;
|
|
2
|
+
declare let executeTemplateSetupPlan: any;
|
|
3
|
+
declare let getTemplateSetupPlan: any;
|
|
4
|
+
declare let getTemplateSetupPlanNotifyChange: any;
|
|
2
5
|
declare let executeSoqlQueryPost_imperative: any;
|
|
3
|
-
|
|
6
|
+
declare let getTemplateSetupPlan_imperative: any;
|
|
7
|
+
export { executeSoqlQueryPost, executeTemplateSetupPlan, getTemplateSetupPlan, getTemplateSetupPlanNotifyChange, executeSoqlQueryPost_imperative, getTemplateSetupPlan_imperative, };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { TemplateSetupPlanRepresentation as types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation } from '../types/TemplateSetupPlanRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
planName: string;
|
|
6
|
+
templateIdOrApiName: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
17
|
+
export declare function createResourceRequestFromRepresentation(representation: types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation): $64$luvio_engine_ResourceRequest;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { TemplateSetupPlanRepresentation as types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation } from '../types/TemplateSetupPlanRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
planName: string;
|
|
6
|
+
templateIdOrApiName: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation): void;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_TemplateSetupPlanRepresentation_TemplateSetupPlanRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { TemplateSetupTaskRepresentation as TemplateSetupTaskRepresentation_TemplateSetupTaskRepresentation } from './TemplateSetupTaskRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
export declare const VERSION = "902a8640d811c60e0dd88853dfbfe319";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: TemplateSetupJobRepresentation, existing: TemplateSetupJobRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateSetupJobRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: TemplateSetupJobRepresentationNormalized, incoming: TemplateSetupJobRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TemplateSetupJobRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* The configuration and status of a template setup job.
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface TemplateSetupJobRepresentationNormalized {
|
|
18
|
+
/** The job description. */
|
|
19
|
+
description?: string;
|
|
20
|
+
/** The job's last execution time duration. */
|
|
21
|
+
duration?: number;
|
|
22
|
+
/** The job name. */
|
|
23
|
+
name: string;
|
|
24
|
+
/** The job's last execution status */
|
|
25
|
+
status: string;
|
|
26
|
+
/** The tasks in this job. */
|
|
27
|
+
tasks: Array<TemplateSetupTaskRepresentation_TemplateSetupTaskRepresentation>;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* The configuration and status of a template setup job.
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface TemplateSetupJobRepresentation {
|
|
36
|
+
description?: string;
|
|
37
|
+
duration?: number;
|
|
38
|
+
name: string;
|
|
39
|
+
status: string;
|
|
40
|
+
tasks: Array<TemplateSetupTaskRepresentation_TemplateSetupTaskRepresentation>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { TemplateSetupJobRepresentation as TemplateSetupJobRepresentation_TemplateSetupJobRepresentation } from './TemplateSetupJobRepresentation';
|
|
2
|
+
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 1000;
|
|
4
|
+
export declare const VERSION = "21fb8a334009879b4efd92014fb2c9b6";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
+
templateId: string;
|
|
9
|
+
planName: string;
|
|
10
|
+
}
|
|
11
|
+
export type TemplateSetupPlanRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export type PartialTemplateSetupPlanRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): TemplateSetupPlanRepresentationNormalizedKeyMetadata;
|
|
15
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: TemplateSetupPlanRepresentation): string;
|
|
16
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: TemplateSetupPlanRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
+
export declare function normalize(input: TemplateSetupPlanRepresentation, existing: TemplateSetupPlanRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateSetupPlanRepresentationNormalized;
|
|
18
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
19
|
+
export declare function equals(existing: TemplateSetupPlanRepresentationNormalized, incoming: TemplateSetupPlanRepresentationNormalized): boolean;
|
|
20
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TemplateSetupPlanRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
22
|
+
/**
|
|
23
|
+
* The configuration and current status of a template setup plan.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* templateId (string): templateId
|
|
27
|
+
* planName (string): name
|
|
28
|
+
*/
|
|
29
|
+
export interface TemplateSetupPlanRepresentationNormalized {
|
|
30
|
+
/** The setup plan description. */
|
|
31
|
+
description?: string;
|
|
32
|
+
/** The task detailed description. */
|
|
33
|
+
details?: string;
|
|
34
|
+
/** The setup plan's last execution duration. */
|
|
35
|
+
duration?: number;
|
|
36
|
+
/** The jobs in this plan. */
|
|
37
|
+
jobs: Array<TemplateSetupJobRepresentation_TemplateSetupJobRepresentation>;
|
|
38
|
+
/** The setup plan name. */
|
|
39
|
+
name: string;
|
|
40
|
+
/** The setup plan's last execution status. */
|
|
41
|
+
status: string;
|
|
42
|
+
/** The template id for this setup plan. */
|
|
43
|
+
templateId: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* The configuration and current status of a template setup plan.
|
|
47
|
+
*
|
|
48
|
+
* Keys:
|
|
49
|
+
* templateId (string): templateId
|
|
50
|
+
* planName (string): name
|
|
51
|
+
*/
|
|
52
|
+
export interface TemplateSetupPlanRepresentation {
|
|
53
|
+
description?: string;
|
|
54
|
+
details?: string;
|
|
55
|
+
duration?: number;
|
|
56
|
+
jobs: Array<TemplateSetupJobRepresentation_TemplateSetupJobRepresentation>;
|
|
57
|
+
name: string;
|
|
58
|
+
status: string;
|
|
59
|
+
templateId: string;
|
|
60
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
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 = "9e681ab82c528c8089c98c05156af0bc";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: TemplateSetupTaskRepresentation, existing: TemplateSetupTaskRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateSetupTaskRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: TemplateSetupTaskRepresentationNormalized, incoming: TemplateSetupTaskRepresentationNormalized): 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: TemplateSetupTaskRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* The configuration and status of a template setup task.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface TemplateSetupTaskRepresentationNormalized {
|
|
17
|
+
/** The task description. */
|
|
18
|
+
description?: string;
|
|
19
|
+
/** The task detailed description. */
|
|
20
|
+
details?: string;
|
|
21
|
+
/** The task's last execution time duration. */
|
|
22
|
+
duration?: number;
|
|
23
|
+
/** Is the resulting setup for this task enabled. */
|
|
24
|
+
enabled?: boolean;
|
|
25
|
+
/** Any error message if the task's last execution failed. */
|
|
26
|
+
error?: string;
|
|
27
|
+
/** The task name. */
|
|
28
|
+
name: string;
|
|
29
|
+
/** The url or url path to perform the task configuration manually. Typically only shown on error. */
|
|
30
|
+
setupUrl?: string;
|
|
31
|
+
/** The task's last execution status. */
|
|
32
|
+
status: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* The configuration and status of a template setup task.
|
|
36
|
+
*
|
|
37
|
+
* Keys:
|
|
38
|
+
* (none)
|
|
39
|
+
*/
|
|
40
|
+
export interface TemplateSetupTaskRepresentation {
|
|
41
|
+
description?: string;
|
|
42
|
+
details?: string;
|
|
43
|
+
duration?: number;
|
|
44
|
+
enabled?: boolean;
|
|
45
|
+
error?: string;
|
|
46
|
+
name: string;
|
|
47
|
+
setupUrl?: string;
|
|
48
|
+
status: string;
|
|
49
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-wave-private",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.282.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "The Einstein Analytics family of APIs that are not publically exposed",
|
|
6
6
|
"main": "dist/es/es2018/analytics-wave-private.js",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"contributors": [
|
|
27
|
-
"lindsey.burnett@salesforce.com"
|
|
27
|
+
"lindsey.burnett@salesforce.com",
|
|
28
|
+
"gregorysmith@salesforce.com"
|
|
28
29
|
],
|
|
29
30
|
"sfdc": {
|
|
30
31
|
"path": "forcelds/ldsAdaptersAnalyticsWavePrivate/"
|
|
@@ -37,6 +38,7 @@
|
|
|
37
38
|
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
38
39
|
"start": "nx build:karma && karma start",
|
|
39
40
|
"test": "nx build:karma && karma start --single-run",
|
|
41
|
+
"test:unit": "jest",
|
|
40
42
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-analytics-wave-private",
|
|
41
43
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-analytics-wave-private"
|
|
42
44
|
},
|
|
@@ -61,11 +63,11 @@
|
|
|
61
63
|
}
|
|
62
64
|
},
|
|
63
65
|
"dependencies": {
|
|
64
|
-
"@salesforce/lds-bindings": "^1.
|
|
66
|
+
"@salesforce/lds-bindings": "^1.282.0"
|
|
65
67
|
},
|
|
66
68
|
"devDependencies": {
|
|
67
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
68
|
-
"@salesforce/lds-karma": "^1.
|
|
69
|
+
"@salesforce/lds-compiler-plugins": "^1.282.0",
|
|
70
|
+
"@salesforce/lds-karma": "^1.282.0"
|
|
69
71
|
},
|
|
70
72
|
"volta": {
|
|
71
73
|
"extends": "../../package.json"
|