@salesforce/lds-adapters-analytics-unifiedanalytics 1.332.0-dev1 → 1.332.0-dev10
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-unifiedanalytics.js +1778 -577
- package/dist/es/es2018/types/src/generated/adapters/createDataAssetRequest.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequestByIdOrApiName.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequests.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequestsCount.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDataAssetRequest.d.ts +25 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +6 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +12 -1
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequests.d.ts +25 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequestsByRequestIdOrApiName.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequestsCount.d.ts +21 -0
- package/dist/es/es2018/types/src/generated/resources/patchTableauDataAssetsRequestsByRequestIdOrApiName.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAssetsRequests.d.ts +21 -0
- package/dist/es/es2018/types/src/generated/types/AnalyticsLibraryDashboardTemplateRepresentation.d.ts +7 -4
- package/dist/es/es2018/types/src/generated/types/DataAssetDependentCollectionRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetDependentRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestCollectionRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestCountRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestInputRepresentation.d.ts +55 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +117 -0
- package/package.json +3 -3
- package/sfdc/index.js +2890 -1591
- package/src/raml/api.raml +352 -3
- package/src/raml/luvio.raml +50 -0
|
@@ -0,0 +1,24 @@
|
|
|
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_postTableauDataAssetsRequests_ResourceRequestConfig } from '../resources/postTableauDataAssetsRequests';
|
|
4
|
+
import { DataAssetRequestRepresentation as types_DataAssetRequestRepresentation_DataAssetRequestRepresentation } from '../types/DataAssetRequestRepresentation';
|
|
5
|
+
export declare const adapterName = "createDataAssetRequest";
|
|
6
|
+
export declare const createDataAssetRequest_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const createDataAssetRequest_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface CreateDataAssetRequestConfig {
|
|
9
|
+
assetId: string;
|
|
10
|
+
id: string;
|
|
11
|
+
label: string;
|
|
12
|
+
numberOfDependencies: number;
|
|
13
|
+
rejectionComment: string;
|
|
14
|
+
requestType: string;
|
|
15
|
+
requesterComment: string;
|
|
16
|
+
sourceRequestId: string;
|
|
17
|
+
status: string;
|
|
18
|
+
workspaceIdOrApiName: string;
|
|
19
|
+
}
|
|
20
|
+
export declare const createResourceParams: (config: CreateDataAssetRequestConfig) => resources_postTableauDataAssetsRequests_ResourceRequestConfig;
|
|
21
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateDataAssetRequestConfig>): adapter$45$utils_Untrusted<CreateDataAssetRequestConfig>;
|
|
22
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateDataAssetRequestConfig | null;
|
|
23
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateDataAssetRequestConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>>;
|
|
24
|
+
export declare const createDataAssetRequestAdapterFactory: $64$luvio_engine_AdapterFactory<CreateDataAssetRequestConfig, types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>;
|
|
@@ -0,0 +1,27 @@
|
|
|
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 } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getTableauDataAssetsDependenciesByAssetId_ResourceRequestConfig } from '../resources/getTableauDataAssetsDependenciesByAssetId';
|
|
4
|
+
import { DataAssetDependentCollectionRepresentation as types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation } from '../types/DataAssetDependentCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getDataAssetDependencies";
|
|
6
|
+
export declare const getDataAssetDependencies_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getDataAssetDependencies_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetDataAssetDependenciesConfig {
|
|
9
|
+
assetId: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetDataAssetDependenciesConfig) => resources_getTableauDataAssetsDependenciesByAssetId_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataAssetDependenciesConfig>): adapter$45$utils_Untrusted<GetDataAssetDependenciesConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataAssetDependenciesConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig): $64$luvio_engine_Snapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig, resourceParams: resources_getTableauDataAssetsDependenciesByAssetId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig, resourceParams: resources_getTableauDataAssetsDependenciesByAssetId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetDataAssetDependenciesConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation>): $64$luvio_engine_Snapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, any>;
|
|
27
|
+
export declare const getDataAssetDependenciesAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataAssetDependenciesConfig, types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation>;
|
|
@@ -0,0 +1,28 @@
|
|
|
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_getTableauDataAssetsRequestsByRequestIdOrApiName_ResourceRequestConfig } from '../resources/getTableauDataAssetsRequestsByRequestIdOrApiName';
|
|
4
|
+
import { DataAssetRequestRepresentation as types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, KeyParams as types_DataAssetRequestRepresentation_KeyParams } from '../types/DataAssetRequestRepresentation';
|
|
5
|
+
export declare const adapterName = "getDataAssetRequestByIdOrApiName";
|
|
6
|
+
export declare const getDataAssetRequestByIdOrApiName_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getDataAssetRequestByIdOrApiName_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetDataAssetRequestByIdOrApiNameConfig {
|
|
9
|
+
requestIdOrApiName: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetDataAssetRequestByIdOrApiNameConfig) => resources_getTableauDataAssetsRequestsByRequestIdOrApiName_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestByIdOrApiNameConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestByIdOrApiNameConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataAssetRequestByIdOrApiNameConfig>): adapter$45$utils_Untrusted<GetDataAssetRequestByIdOrApiNameConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataAssetRequestByIdOrApiNameConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestByIdOrApiNameConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestByIdOrApiNameConfig): $64$luvio_engine_Snapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestByIdOrApiNameConfig, resourceParams: resources_getTableauDataAssetsRequestsByRequestIdOrApiName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestByIdOrApiNameConfig, resourceParams: resources_getTableauDataAssetsRequestsByRequestIdOrApiName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestByIdOrApiNameConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetDataAssetRequestByIdOrApiNameConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>): $64$luvio_engine_Snapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>;
|
|
27
|
+
export declare const getDataAssetRequestByIdOrApiNameAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataAssetRequestByIdOrApiNameConfig, types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>;
|
|
28
|
+
export declare const notifyChangeFactory: (luvio: $64$luvio_engine_Luvio, options?: $64$luvio_engine_DispatchResourceRequestContext) => (configs: adapter$45$utils_UncoercedConfiguration<types_DataAssetRequestRepresentation_KeyParams, any>[]) => void;
|
|
@@ -0,0 +1,37 @@
|
|
|
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 } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getTableauDataAssetsRequests_ResourceRequestConfig } from '../resources/getTableauDataAssetsRequests';
|
|
4
|
+
import { DataAssetRequestCollectionRepresentation as types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation } from '../types/DataAssetRequestCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getDataAssetRequests";
|
|
6
|
+
export declare const getDataAssetRequests_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getDataAssetRequests_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetDataAssetRequestsConfig {
|
|
9
|
+
assetId?: string;
|
|
10
|
+
assetType?: string;
|
|
11
|
+
createdBy?: string;
|
|
12
|
+
limit?: number;
|
|
13
|
+
offset?: number;
|
|
14
|
+
orderBy?: string;
|
|
15
|
+
requestType?: string;
|
|
16
|
+
searchQueryTerm?: string;
|
|
17
|
+
sortBy?: string;
|
|
18
|
+
status?: string;
|
|
19
|
+
workspaceIdOrApiName?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare const createResourceParams: (config: GetDataAssetRequestsConfig) => resources_getTableauDataAssetsRequests_ResourceRequestConfig;
|
|
22
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsConfig): string;
|
|
23
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
24
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataAssetRequestsConfig>): adapter$45$utils_Untrusted<GetDataAssetRequestsConfig>;
|
|
25
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataAssetRequestsConfig | null;
|
|
26
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsConfig): $64$luvio_engine_Fragment;
|
|
27
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsConfig): $64$luvio_engine_Snapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, any>;
|
|
28
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsConfig, resourceParams: resources_getTableauDataAssetsRequests_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, any>>;
|
|
29
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsConfig, resourceParams: resources_getTableauDataAssetsRequests_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
30
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, any>>;
|
|
31
|
+
export type BuildSnapshotContext = {
|
|
32
|
+
luvio: $64$luvio_engine_Luvio;
|
|
33
|
+
config: GetDataAssetRequestsConfig;
|
|
34
|
+
};
|
|
35
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, any>>;
|
|
36
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation>): $64$luvio_engine_Snapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, any>;
|
|
37
|
+
export declare const getDataAssetRequestsAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataAssetRequestsConfig, types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation>;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getTableauDataAssetsRequestsCount_ResourceRequestConfig } from '../resources/getTableauDataAssetsRequestsCount';
|
|
4
|
+
import { DataAssetRequestCountRepresentation as types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation } from '../types/DataAssetRequestCountRepresentation';
|
|
5
|
+
export declare const adapterName = "getDataAssetRequestsCount";
|
|
6
|
+
export declare const getDataAssetRequestsCount_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getDataAssetRequestsCount_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetDataAssetRequestsCountConfig {
|
|
9
|
+
assetId?: string;
|
|
10
|
+
assetType?: string;
|
|
11
|
+
createdBy?: string;
|
|
12
|
+
searchQueryTerm?: string;
|
|
13
|
+
status?: string;
|
|
14
|
+
taskType?: string;
|
|
15
|
+
workspaceIdOrApiName?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare const createResourceParams: (config: GetDataAssetRequestsCountConfig) => resources_getTableauDataAssetsRequestsCount_ResourceRequestConfig;
|
|
18
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsCountConfig): string;
|
|
19
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsCountConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
20
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataAssetRequestsCountConfig>): adapter$45$utils_Untrusted<GetDataAssetRequestsCountConfig>;
|
|
21
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataAssetRequestsCountConfig | null;
|
|
22
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsCountConfig): $64$luvio_engine_Fragment;
|
|
23
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsCountConfig): $64$luvio_engine_Snapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, any>;
|
|
24
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsCountConfig, resourceParams: resources_getTableauDataAssetsRequestsCount_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, any>>;
|
|
25
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsCountConfig, resourceParams: resources_getTableauDataAssetsRequestsCount_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
26
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetRequestsCountConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, any>>;
|
|
27
|
+
export type BuildSnapshotContext = {
|
|
28
|
+
luvio: $64$luvio_engine_Luvio;
|
|
29
|
+
config: GetDataAssetRequestsCountConfig;
|
|
30
|
+
};
|
|
31
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, any>>;
|
|
32
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation>): $64$luvio_engine_Snapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, any>;
|
|
33
|
+
export declare const getDataAssetRequestsCountAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataAssetRequestsCountConfig, types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation>;
|
|
@@ -0,0 +1,25 @@
|
|
|
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_patchTableauDataAssetsRequestsByRequestIdOrApiName_ResourceRequestConfig } from '../resources/patchTableauDataAssetsRequestsByRequestIdOrApiName';
|
|
4
|
+
import { DataAssetRequestRepresentation as types_DataAssetRequestRepresentation_DataAssetRequestRepresentation } from '../types/DataAssetRequestRepresentation';
|
|
5
|
+
export declare const adapterName = "updateDataAssetRequest";
|
|
6
|
+
export declare const updateDataAssetRequest_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const updateDataAssetRequest_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface UpdateDataAssetRequestConfig {
|
|
9
|
+
requestIdOrApiName: string;
|
|
10
|
+
assetId: string;
|
|
11
|
+
id: string;
|
|
12
|
+
label: string;
|
|
13
|
+
numberOfDependencies: number;
|
|
14
|
+
rejectionComment: string;
|
|
15
|
+
requestType: string;
|
|
16
|
+
requesterComment: string;
|
|
17
|
+
sourceRequestId: string;
|
|
18
|
+
status: string;
|
|
19
|
+
workspaceIdOrApiName: string;
|
|
20
|
+
}
|
|
21
|
+
export declare const createResourceParams: (config: UpdateDataAssetRequestConfig) => resources_patchTableauDataAssetsRequestsByRequestIdOrApiName_ResourceRequestConfig;
|
|
22
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateDataAssetRequestConfig>): adapter$45$utils_Untrusted<UpdateDataAssetRequestConfig>;
|
|
23
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UpdateDataAssetRequestConfig | null;
|
|
24
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UpdateDataAssetRequestConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>>;
|
|
25
|
+
export declare const updateDataAssetRequestAdapterFactory: $64$luvio_engine_AdapterFactory<UpdateDataAssetRequestConfig, types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>;
|
|
@@ -8,6 +8,12 @@ export { createDashboardAdapterFactory } from '../adapters/createDashboard';
|
|
|
8
8
|
export { deleteDashboardAdapterFactory } from '../adapters/deleteDashboard';
|
|
9
9
|
export { getDashboardByNameAdapterFactory } from '../adapters/getDashboardByName';
|
|
10
10
|
export { updateDashboardAdapterFactory } from '../adapters/updateDashboard';
|
|
11
|
+
export { getDataAssetRequestsAdapterFactory } from '../adapters/getDataAssetRequests';
|
|
12
|
+
export { createDataAssetRequestAdapterFactory } from '../adapters/createDataAssetRequest';
|
|
13
|
+
export { getDataAssetRequestsCountAdapterFactory } from '../adapters/getDataAssetRequestsCount';
|
|
14
|
+
export { getDataAssetRequestByIdOrApiNameAdapterFactory } from '../adapters/getDataAssetRequestByIdOrApiName';
|
|
15
|
+
export { updateDataAssetRequestAdapterFactory } from '../adapters/updateDataAssetRequest';
|
|
16
|
+
export { getDataAssetDependenciesAdapterFactory } from '../adapters/getDataAssetDependencies';
|
|
11
17
|
export { followAdapterFactory } from '../adapters/follow';
|
|
12
18
|
export { unfollowAdapterFactory } from '../adapters/unfollow';
|
|
13
19
|
export { getFollowersAdapterFactory } from '../adapters/getFollowers';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare let createAnnotation: any;
|
|
2
2
|
declare let createAssetSlackChannel: any;
|
|
3
3
|
declare let createDashboard: any;
|
|
4
|
+
declare let createDataAssetRequest: any;
|
|
4
5
|
declare let createLoglines: any;
|
|
5
6
|
declare let createRecordShares: any;
|
|
6
7
|
declare let createVisualization: any;
|
|
@@ -19,6 +20,11 @@ declare let getAssetSlackChannels: any;
|
|
|
19
20
|
declare let getDashboardByName: any;
|
|
20
21
|
declare let getDashboardByNameNotifyChange: any;
|
|
21
22
|
declare let getDashboards: any;
|
|
23
|
+
declare let getDataAssetDependencies: any;
|
|
24
|
+
declare let getDataAssetRequestByIdOrApiName: any;
|
|
25
|
+
declare let getDataAssetRequestByIdOrApiNameNotifyChange: any;
|
|
26
|
+
declare let getDataAssetRequests: any;
|
|
27
|
+
declare let getDataAssetRequestsCount: any;
|
|
22
28
|
declare let getFlowByName: any;
|
|
23
29
|
declare let getFlows: any;
|
|
24
30
|
declare let getFollowedAssets: any;
|
|
@@ -46,6 +52,7 @@ declare let queryAssets: any;
|
|
|
46
52
|
declare let queryUsers: any;
|
|
47
53
|
declare let unfollow: any;
|
|
48
54
|
declare let updateDashboard: any;
|
|
55
|
+
declare let updateDataAssetRequest: any;
|
|
49
56
|
declare let updateRecordShares: any;
|
|
50
57
|
declare let updateSubscriptionDigestConfig: any;
|
|
51
58
|
declare let updateVisualization: any;
|
|
@@ -54,6 +61,10 @@ declare let getAnnotations_imperative: any;
|
|
|
54
61
|
declare let getAssetSlackChannels_imperative: any;
|
|
55
62
|
declare let getDashboardByName_imperative: any;
|
|
56
63
|
declare let getDashboards_imperative: any;
|
|
64
|
+
declare let getDataAssetDependencies_imperative: any;
|
|
65
|
+
declare let getDataAssetRequestByIdOrApiName_imperative: any;
|
|
66
|
+
declare let getDataAssetRequests_imperative: any;
|
|
67
|
+
declare let getDataAssetRequestsCount_imperative: any;
|
|
57
68
|
declare let getFlowByName_imperative: any;
|
|
58
69
|
declare let getFlows_imperative: any;
|
|
59
70
|
declare let getFollowedAssets_imperative: any;
|
|
@@ -70,4 +81,4 @@ declare let getVisualizations_imperative: any;
|
|
|
70
81
|
declare let getWorkspaceByIdOrName_imperative: any;
|
|
71
82
|
declare let getWorkspaces_imperative: any;
|
|
72
83
|
declare let initiateMarketplaceListingInstallation_imperative: any;
|
|
73
|
-
export { createAnnotation, createAssetSlackChannel, createDashboard, createLoglines, createRecordShares, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAssetSlackChannels, getDashboardByName, getDashboardByNameNotifyChange, getDashboards, getFlowByName, getFlows, getFollowedAssets, getFollowers, getMarketplaceListingInstallationProgress, getOrg, getShares, getSharesNotifyChange, getSlackAppInfo, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationNotifyChange, getVisualizations, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaces, initiateMarketplaceListingInstallation, publish, queryAssets, queryUsers, unfollow, updateDashboard, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace, getAnnotations_imperative, getAssetSlackChannels_imperative, getDashboardByName_imperative, getDashboards_imperative, getFlowByName_imperative, getFlows_imperative, getFollowedAssets_imperative, getFollowers_imperative, getMarketplaceListingInstallationProgress_imperative, getOrg_imperative, getShares_imperative, getSlackAppInfo_imperative, getSubscriptionDigestConfig_imperative, getUniqueFollowerCount_imperative, getVisualization_imperative, getVisualizationBundle_imperative, getVisualizations_imperative, getWorkspaceByIdOrName_imperative, getWorkspaces_imperative, initiateMarketplaceListingInstallation_imperative, };
|
|
84
|
+
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAssetRequest, createLoglines, createRecordShares, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAssetSlackChannels, getDashboardByName, getDashboardByNameNotifyChange, getDashboards, getDataAssetDependencies, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequests, getDataAssetRequestsCount, getFlowByName, getFlows, getFollowedAssets, getFollowers, getMarketplaceListingInstallationProgress, getOrg, getShares, getSharesNotifyChange, getSlackAppInfo, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationNotifyChange, getVisualizations, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaces, initiateMarketplaceListingInstallation, publish, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAssetRequest, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace, getAnnotations_imperative, getAssetSlackChannels_imperative, getDashboardByName_imperative, getDashboards_imperative, getDataAssetDependencies_imperative, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests_imperative, getDataAssetRequestsCount_imperative, getFlowByName_imperative, getFlows_imperative, getFollowedAssets_imperative, getFollowers_imperative, getMarketplaceListingInstallationProgress_imperative, getOrg_imperative, getShares_imperative, getSlackAppInfo_imperative, getSubscriptionDigestConfig_imperative, getUniqueFollowerCount_imperative, getVisualization_imperative, getVisualizationBundle_imperative, getVisualizations_imperative, getWorkspaceByIdOrName_imperative, getWorkspaces_imperative, initiateMarketplaceListingInstallation_imperative, };
|
package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
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 { DataAssetDependentCollectionRepresentation as types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation } from '../types/DataAssetDependentCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
assetId: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetDependentCollectionRepresentation_DataAssetDependentCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { DataAssetRequestCollectionRepresentation as types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation } from '../types/DataAssetRequestCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
assetId?: string;
|
|
6
|
+
assetType?: string;
|
|
7
|
+
createdBy?: string;
|
|
8
|
+
limit?: number;
|
|
9
|
+
offset?: number;
|
|
10
|
+
orderBy?: string;
|
|
11
|
+
requestType?: string;
|
|
12
|
+
searchQueryTerm?: string;
|
|
13
|
+
sortBy?: string;
|
|
14
|
+
status?: string;
|
|
15
|
+
workspaceIdOrApiName?: string;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
19
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
20
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
21
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation): void;
|
|
22
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation, any>;
|
|
23
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetRequestCollectionRepresentation_DataAssetRequestCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
24
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
25
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { DataAssetRequestRepresentation as types_DataAssetRequestRepresentation_DataAssetRequestRepresentation } from '../types/DataAssetRequestRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
requestIdOrApiName: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAssetRequestRepresentation_DataAssetRequestRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
16
|
+
export declare function createResourceRequestFromRepresentation(representation: types_DataAssetRequestRepresentation_DataAssetRequestRepresentation): $64$luvio_engine_ResourceRequest;
|
|
@@ -0,0 +1,21 @@
|
|
|
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 { DataAssetRequestCountRepresentation as types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation } from '../types/DataAssetRequestCountRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
assetId?: string;
|
|
6
|
+
assetType?: string;
|
|
7
|
+
createdBy?: string;
|
|
8
|
+
searchQueryTerm?: string;
|
|
9
|
+
status?: string;
|
|
10
|
+
taskType?: string;
|
|
11
|
+
workspaceIdOrApiName?: string;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
15
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
16
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation): void;
|
|
18
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation, any>;
|
|
19
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetRequestCountRepresentation_DataAssetRequestCountRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
20
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
21
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,24 @@
|
|
|
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 { DataAssetRequestRepresentation as types_DataAssetRequestRepresentation_DataAssetRequestRepresentation } from '../types/DataAssetRequestRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
requestIdOrApiName: string;
|
|
6
|
+
};
|
|
7
|
+
body: {
|
|
8
|
+
assetId: string;
|
|
9
|
+
id: string;
|
|
10
|
+
label: string;
|
|
11
|
+
numberOfDependencies: number;
|
|
12
|
+
rejectionComment: string;
|
|
13
|
+
requestType: string;
|
|
14
|
+
requesterComment: string;
|
|
15
|
+
sourceRequestId: string;
|
|
16
|
+
status: string;
|
|
17
|
+
workspaceIdOrApiName: string;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
21
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAssetRequestRepresentation_DataAssetRequestRepresentation): void;
|
|
22
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>;
|
|
23
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
24
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,21 @@
|
|
|
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 { DataAssetRequestRepresentation as types_DataAssetRequestRepresentation_DataAssetRequestRepresentation } from '../types/DataAssetRequestRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
assetId: string;
|
|
6
|
+
id: string;
|
|
7
|
+
label: string;
|
|
8
|
+
numberOfDependencies: number;
|
|
9
|
+
rejectionComment: string;
|
|
10
|
+
requestType: string;
|
|
11
|
+
requesterComment: string;
|
|
12
|
+
sourceRequestId: string;
|
|
13
|
+
status: string;
|
|
14
|
+
workspaceIdOrApiName: string;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAssetRequestRepresentation_DataAssetRequestRepresentation): void;
|
|
19
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataAssetRequestRepresentation_DataAssetRequestRepresentation, any>;
|
|
20
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
21
|
+
export default createResourceRequest;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { BaseAnalyticsLibraryAssetRepresentation as BaseAnalyticsLibraryAssetRepresentation_BaseAnalyticsLibraryAssetRepresentation } from './BaseAnalyticsLibraryAssetRepresentation';
|
|
2
|
-
import { AnalyticsLibraryImageRepresentation as AnalyticsLibraryImageRepresentation_AnalyticsLibraryImageRepresentation } from './AnalyticsLibraryImageRepresentation';
|
|
3
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';
|
|
4
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "289e8a9c84f4204d2fbcacdd87d5d659";
|
|
5
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
5
|
export declare const RepresentationType: string;
|
|
7
6
|
export declare function normalize(input: AnalyticsLibraryDashboardTemplateRepresentation, existing: AnalyticsLibraryDashboardTemplateRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AnalyticsLibraryDashboardTemplateRepresentationNormalized;
|
|
@@ -16,7 +15,10 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
16
15
|
* (none)
|
|
17
16
|
*/
|
|
18
17
|
export interface AnalyticsLibraryDashboardTemplateRepresentationNormalized extends BaseAnalyticsLibraryAssetRepresentation_BaseAnalyticsLibraryAssetRepresentation {
|
|
19
|
-
|
|
18
|
+
/** The badge icon configured for template */
|
|
19
|
+
templateBadge: string;
|
|
20
|
+
/** The preview images configured for the template */
|
|
21
|
+
templatePreviews: Array<string>;
|
|
20
22
|
}
|
|
21
23
|
/**
|
|
22
24
|
* Output representation of dashboard template preview in analytics library
|
|
@@ -25,5 +27,6 @@ export interface AnalyticsLibraryDashboardTemplateRepresentationNormalized exten
|
|
|
25
27
|
* (none)
|
|
26
28
|
*/
|
|
27
29
|
export interface AnalyticsLibraryDashboardTemplateRepresentation extends BaseAnalyticsLibraryAssetRepresentation_BaseAnalyticsLibraryAssetRepresentation {
|
|
28
|
-
|
|
30
|
+
templateBadge: string;
|
|
31
|
+
templatePreviews: Array<string>;
|
|
29
32
|
}
|
package/dist/es/es2018/types/src/generated/types/DataAssetDependentCollectionRepresentation.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DataAssetDependentRepresentation as DataAssetDependentRepresentation_DataAssetDependentRepresentation } from './DataAssetDependentRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 500;
|
|
4
|
+
export declare const VERSION = "bc1bcd1c96c7c70c3cde837dafdafaba";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: DataAssetDependentCollectionRepresentation, existing: DataAssetDependentCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetDependentCollectionRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: DataAssetDependentCollectionRepresentationNormalized, incoming: DataAssetDependentCollectionRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAssetDependentCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Represents a List of dependent assets for a given asset
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface DataAssetDependentCollectionRepresentationNormalized {
|
|
19
|
+
/** Array of Dependent Assets */
|
|
20
|
+
dependentDataAssets: Array<$64$luvio_engine_StoreLink>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Represents a List of dependent assets for a given asset
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface DataAssetDependentCollectionRepresentation {
|
|
29
|
+
dependentDataAssets: Array<DataAssetDependentRepresentation_DataAssetDependentRepresentation>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { DataAssetRepresentation as DataAssetRepresentation_DataAssetRepresentation } from './DataAssetRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 500;
|
|
4
|
+
export declare const VERSION = "986680f76a9f4e4befc8d9d22a19635d";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: DataAssetDependentRepresentation, existing: DataAssetDependentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetDependentRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: DataAssetDependentRepresentationNormalized, incoming: DataAssetDependentRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAssetDependentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Represents a Dependent asset
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface DataAssetDependentRepresentationNormalized {
|
|
19
|
+
dataAsset: $64$luvio_engine_StoreLink;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Represents a Dependent asset
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface DataAssetDependentRepresentation {
|
|
28
|
+
dataAsset: DataAssetRepresentation_DataAssetRepresentation;
|
|
29
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
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, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 500;
|
|
3
|
+
export declare const VERSION = "e199a4324db4bb8fd022035821c522d7";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
assetId: string;
|
|
8
|
+
}
|
|
9
|
+
export type DataAssetRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialDataAssetRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): DataAssetRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: DataAssetRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: DataAssetRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: DataAssetRepresentation, existing: DataAssetRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
17
|
+
export declare function equals(existing: DataAssetRepresentationNormalized, incoming: DataAssetRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAssetRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Represents a Data asset
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* assetId (string): assetId
|
|
25
|
+
*/
|
|
26
|
+
export interface DataAssetRepresentationNormalized {
|
|
27
|
+
/** Represents id of the Data asset */
|
|
28
|
+
assetId: string;
|
|
29
|
+
/** Type of the Data asset */
|
|
30
|
+
assetType: string;
|
|
31
|
+
/** Id of the workspace */
|
|
32
|
+
workspaceId: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Represents a Data asset
|
|
36
|
+
*
|
|
37
|
+
* Keys:
|
|
38
|
+
* assetId (string): assetId
|
|
39
|
+
*/
|
|
40
|
+
export interface DataAssetRepresentation {
|
|
41
|
+
assetId: string;
|
|
42
|
+
assetType: string;
|
|
43
|
+
workspaceId: string;
|
|
44
|
+
}
|
package/dist/es/es2018/types/src/generated/types/DataAssetRequestCollectionRepresentation.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DataAssetRequestRepresentation as DataAssetRequestRepresentation_DataAssetRequestRepresentation } from './DataAssetRequestRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 500;
|
|
4
|
+
export declare const VERSION = "b130e3ebdd5cd1a5007c21dad3bfa38a";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: DataAssetRequestCollectionRepresentation, existing: DataAssetRequestCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetRequestCollectionRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: DataAssetRequestCollectionRepresentationNormalized, incoming: DataAssetRequestCollectionRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAssetRequestCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Collection of Data Asset Requests
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface DataAssetRequestCollectionRepresentationNormalized {
|
|
19
|
+
/** List of data asset requests being returned */
|
|
20
|
+
dataAssetRequests: Array<$64$luvio_engine_StoreLink>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Collection of Data Asset Requests
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface DataAssetRequestCollectionRepresentation {
|
|
29
|
+
dataAssetRequests: Array<DataAssetRequestRepresentation_DataAssetRequestRepresentation>;
|
|
30
|
+
}
|