@salesforce/lds-adapters-industries-filebased-dataimport 0.1.0-dev1
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/LICENSE.txt +82 -0
- package/dist/es/es2018/industries-filebased-dataimport.js +3827 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/createFileBasedDataImport.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/adapters/deleteFileBasedDataImport.d.ts +14 -0
- package/dist/es/es2018/types/src/generated/adapters/getAllFields.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/adapters/getAllSobjects.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/adapters/getCsvAutoMap.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/adapters/getCsvPreviewData.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/adapters/getDPEDefinitions.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/adapters/getFileBasedDataImportById.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getFileBasedDataImports.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/adapters/startAdvanceImport.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/adapters/startSimpleImport.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/adapters/updateFileBasedDataImport.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +21 -0
- package/dist/es/es2018/types/src/generated/resources/deleteConnectIndustriesFileBasedDataImportsByFileBasedImportId.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectIndustriesFileBasedDataImports.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectIndustriesFileBasedDataImportsAutomap.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectIndustriesFileBasedDataImportsByFileBasedImportId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectIndustriesFileBasedDataImportsDpeDefinitions.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectIndustriesFileBasedDataImportsEntities.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectIndustriesFileBasedDataImportsEntitiesFieldsByEntityApiName.d.ts +20 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectIndustriesFileBasedDataImportsPreviewByFileBasedImportId.d.ts +20 -0
- package/dist/es/es2018/types/src/generated/resources/patchConnectIndustriesFileBasedDataImportsByFileBasedImportId.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectIndustriesFileBasedDataImports.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectIndustriesFileBasedDataImportsAdvanceImport.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectIndustriesFileBasedDataImportsSimpleImport.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/types/CSVMappingsResultRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/CsvMappingRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/CsvPreviewOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DPEDefinitionOutputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/DPEDefinitionRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/FieldConfigurationInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/FieldInfoOutputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/FieldInfoRepresentation.d.ts +71 -0
- package/dist/es/es2018/types/src/generated/types/FileBasedDataImportByUserResultRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/FileBasedDataImportInputRep.d.ts +70 -0
- package/dist/es/es2018/types/src/generated/types/FileBasedDataImportRepresentation.d.ts +91 -0
- package/dist/es/es2018/types/src/generated/types/FileBasedDataImportUpdateInputRep.d.ts +67 -0
- package/dist/es/es2018/types/src/generated/types/FileImportInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/FileImportOutputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/ImportOperationInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/ImportOptionsInputRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/types/ObjectInfoDirectoryEntryRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/ObjectInfoDirectoryRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/ReferenceEntityInfo.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/ReferenceFieldInfo.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +68 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +3972 -0
- package/src/raml/api.raml +760 -0
- package/src/raml/luvio.raml +114 -0
|
@@ -0,0 +1,20 @@
|
|
|
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 { FieldInfoOutputRepresentation as types_FieldInfoOutputRepresentation_FieldInfoOutputRepresentation } from '../types/FieldInfoOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
entityApiName: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
batchSize?: number;
|
|
9
|
+
fieldName?: string;
|
|
10
|
+
startOffset?: number;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
15
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FieldInfoOutputRepresentation_FieldInfoOutputRepresentation): void;
|
|
17
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FieldInfoOutputRepresentation_FieldInfoOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FieldInfoOutputRepresentation_FieldInfoOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FieldInfoOutputRepresentation_FieldInfoOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FieldInfoOutputRepresentation_FieldInfoOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FieldInfoOutputRepresentation_FieldInfoOutputRepresentation, any>;
|
|
18
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FieldInfoOutputRepresentation_FieldInfoOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
19
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
20
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { CsvPreviewOutputRepresentation as types_CsvPreviewOutputRepresentation_CsvPreviewOutputRepresentation } from '../types/CsvPreviewOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
fileBasedImportId: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
delimiter?: string;
|
|
9
|
+
endOfLine?: string;
|
|
10
|
+
numberOfRows?: number;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
15
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CsvPreviewOutputRepresentation_CsvPreviewOutputRepresentation): void;
|
|
17
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CsvPreviewOutputRepresentation_CsvPreviewOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CsvPreviewOutputRepresentation_CsvPreviewOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CsvPreviewOutputRepresentation_CsvPreviewOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CsvPreviewOutputRepresentation_CsvPreviewOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CsvPreviewOutputRepresentation_CsvPreviewOutputRepresentation, any>;
|
|
18
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CsvPreviewOutputRepresentation_CsvPreviewOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
19
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
20
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,28 @@
|
|
|
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 { FileBasedDataImportRepresentation as types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation } from '../types/FileBasedDataImportRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
fileBasedImportId: string;
|
|
6
|
+
};
|
|
7
|
+
body: {
|
|
8
|
+
failedRecordContentDoc?: string;
|
|
9
|
+
failedRecordCount?: number;
|
|
10
|
+
importOperationType?: string;
|
|
11
|
+
importType?: string;
|
|
12
|
+
jobIdentifier?: string;
|
|
13
|
+
sourceContentDocument?: string;
|
|
14
|
+
sourceFileName?: string;
|
|
15
|
+
status?: string;
|
|
16
|
+
statusReason?: string;
|
|
17
|
+
successfulRecordContentDoc?: string;
|
|
18
|
+
successfulRecordCount?: number;
|
|
19
|
+
targetContext?: string;
|
|
20
|
+
unprocessedRecordContentDoc?: string;
|
|
21
|
+
unprocessedRecordCount?: number;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
25
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation): void;
|
|
26
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation, any>;
|
|
27
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
28
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/postConnectIndustriesFileBasedDataImports.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
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 { FileBasedDataImportRepresentation as types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation } from '../types/FileBasedDataImportRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
failedRecordContentDoc?: string;
|
|
6
|
+
failedRecordCount?: number;
|
|
7
|
+
id?: string;
|
|
8
|
+
importOperationType?: string;
|
|
9
|
+
importType?: string;
|
|
10
|
+
jobIdentifier?: string;
|
|
11
|
+
sourceContentDocument?: string;
|
|
12
|
+
sourceFileName: string;
|
|
13
|
+
status?: string;
|
|
14
|
+
statusReason?: string;
|
|
15
|
+
successfulRecordContentDoc?: string;
|
|
16
|
+
successfulRecordCount?: number;
|
|
17
|
+
targetContext?: string;
|
|
18
|
+
unprocessedRecordContentDoc?: string;
|
|
19
|
+
unprocessedRecordCount?: number;
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
23
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation): void;
|
|
24
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FileBasedDataImportRepresentation_FileBasedDataImportRepresentation, any>;
|
|
25
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
26
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ImportOptionsInputRepresentation as types_ImportOptionsInputRepresentation_ImportOptionsInputRepresentation } from '../types/ImportOptionsInputRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
import { FileImportOutputRepresentation as types_FileImportOutputRepresentation_FileImportOutputRepresentation } from '../types/FileImportOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
importReferenceId: string;
|
|
7
|
+
options?: types_ImportOptionsInputRepresentation_ImportOptionsInputRepresentation;
|
|
8
|
+
targetContext: string;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FileImportOutputRepresentation_FileImportOutputRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FileImportOutputRepresentation_FileImportOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FileImportOutputRepresentation_FileImportOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FileImportOutputRepresentation_FileImportOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FileImportOutputRepresentation_FileImportOutputRepresentation, any>;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ImportOptionsInputRepresentation as types_ImportOptionsInputRepresentation_ImportOptionsInputRepresentation } from '../types/ImportOptionsInputRepresentation';
|
|
2
|
+
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';
|
|
3
|
+
import { FileImportOutputRepresentation as types_FileImportOutputRepresentation_FileImportOutputRepresentation } from '../types/FileImportOutputRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
importReferenceId: string;
|
|
7
|
+
options?: types_ImportOptionsInputRepresentation_ImportOptionsInputRepresentation;
|
|
8
|
+
targetContext: string;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FileImportOutputRepresentation_FileImportOutputRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FileImportOutputRepresentation_FileImportOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FileImportOutputRepresentation_FileImportOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FileImportOutputRepresentation_FileImportOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FileImportOutputRepresentation_FileImportOutputRepresentation, any>;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { CsvMappingRepresentation as CsvMappingRepresentation_CsvMappingRepresentation } from './CsvMappingRepresentation';
|
|
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 = "c72fdfb750120999744a8774e34025e1";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: CSVMappingsResultRepresentation, existing: CSVMappingsResultRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CSVMappingsResultRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: CSVMappingsResultRepresentationNormalized, incoming: CSVMappingsResultRepresentationNormalized): 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: CSVMappingsResultRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation of auto map of csv headers with entity
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CSVMappingsResultRepresentationNormalized {
|
|
18
|
+
/** Auto Map Result list */
|
|
19
|
+
csvMappingRepresentations: Array<CsvMappingRepresentation_CsvMappingRepresentation>;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Output representation of auto map of csv headers with entity
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface CSVMappingsResultRepresentation {
|
|
28
|
+
csvMappingRepresentations: Array<CsvMappingRepresentation_CsvMappingRepresentation>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FieldInfoRepresentation as FieldInfoRepresentation_FieldInfoRepresentation } from './FieldInfoRepresentation';
|
|
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 = "71048d5cd1af46b5223f16a75389f1b1";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: CsvMappingRepresentation, existing: CsvMappingRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CsvMappingRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: CsvMappingRepresentationNormalized, incoming: CsvMappingRepresentationNormalized): 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: CsvMappingRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation of auto map of csv headers with entity
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CsvMappingRepresentationNormalized {
|
|
18
|
+
/** CSV Header */
|
|
19
|
+
csvHeader: string;
|
|
20
|
+
/** Has User Access to the entity column, based on the access level in the */
|
|
21
|
+
hasUserAccess?: boolean | null;
|
|
22
|
+
/** Mapped Entity Column Info Representation */
|
|
23
|
+
mappedEntityColumn?: FieldInfoRepresentation_FieldInfoRepresentation | null;
|
|
24
|
+
/** Sample Value for the CSV Header */
|
|
25
|
+
sampleValue?: string | null;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Output representation of auto map of csv headers with entity
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface CsvMappingRepresentation {
|
|
34
|
+
csvHeader: string;
|
|
35
|
+
hasUserAccess?: boolean | null;
|
|
36
|
+
mappedEntityColumn?: FieldInfoRepresentation_FieldInfoRepresentation | null;
|
|
37
|
+
sampleValue?: string | null;
|
|
38
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "3f89a0e0e670920259887253d71fcaf0";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CsvPreviewOutputRepresentation, existing: CsvPreviewOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CsvPreviewOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CsvPreviewOutputRepresentationNormalized, incoming: CsvPreviewOutputRepresentationNormalized): 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: CsvPreviewOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation of CSV Data Preview
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface CsvPreviewOutputRepresentationNormalized {
|
|
17
|
+
/** List of header */
|
|
18
|
+
headers: Array<string>;
|
|
19
|
+
/** List of rows data fetched */
|
|
20
|
+
rows?: Array<Array<string | null>>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Output representation of CSV Data Preview
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface CsvPreviewOutputRepresentation {
|
|
29
|
+
headers: Array<string>;
|
|
30
|
+
rows?: Array<Array<string | null>>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { DPEDefinitionRepresentation as DPEDefinitionRepresentation_DPEDefinitionRepresentation } from './DPEDefinitionRepresentation';
|
|
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 = "11962640986f27c1e05a2a2c80f391fb";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: DPEDefinitionOutputRepresentation, existing: DPEDefinitionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DPEDefinitionOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: DPEDefinitionOutputRepresentationNormalized, incoming: DPEDefinitionOutputRepresentationNormalized): 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: DPEDefinitionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation of DPE Definition
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface DPEDefinitionOutputRepresentationNormalized {
|
|
18
|
+
/** List of dpe definitions */
|
|
19
|
+
dpeDefinitions: Array<DPEDefinitionRepresentation_DPEDefinitionRepresentation>;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Output representation of DPE Definition
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface DPEDefinitionOutputRepresentation {
|
|
28
|
+
dpeDefinitions: Array<DPEDefinitionRepresentation_DPEDefinitionRepresentation>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 = "4ec3aa5aac6556898543c214a1630f30";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DPEDefinitionRepresentation, existing: DPEDefinitionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DPEDefinitionRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DPEDefinitionRepresentationNormalized, incoming: DPEDefinitionRepresentationNormalized): 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: DPEDefinitionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation of DPE Definition
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DPEDefinitionRepresentationNormalized {
|
|
17
|
+
/** Id of the target context */
|
|
18
|
+
id: string;
|
|
19
|
+
/** Name of the target context */
|
|
20
|
+
name: string;
|
|
21
|
+
/** Type of the target context */
|
|
22
|
+
type: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Output representation of DPE Definition
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface DPEDefinitionRepresentation {
|
|
31
|
+
id: string;
|
|
32
|
+
name: string;
|
|
33
|
+
type: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
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 = "5859371b9eff2ed3737accfe62db4420";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FieldConfigurationInputRepresentation, existing: FieldConfigurationInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FieldConfigurationInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FieldConfigurationInputRepresentationNormalized, incoming: FieldConfigurationInputRepresentationNormalized): 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: FieldConfigurationInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation of the field configurations from CSV columns to Salesforce Object Columns for the Data Import Job
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface FieldConfigurationInputRepresentationNormalized {
|
|
17
|
+
/** To identify wether it is a lookup relationship */
|
|
18
|
+
isLookupRelationship?: boolean;
|
|
19
|
+
/** The name of the field of the object of the lookup relationship. */
|
|
20
|
+
relatedFieldName?: string;
|
|
21
|
+
/** The name of the object where the lookup needs to be performed for this entity field */
|
|
22
|
+
relatedObjectName?: string;
|
|
23
|
+
/** The relationship name of the lookup definition */
|
|
24
|
+
relationshipName?: string;
|
|
25
|
+
/** The name of the column of the source content for this mapping definition */
|
|
26
|
+
sourceColumnName?: string;
|
|
27
|
+
/** The field name of the targeted import object for this mapping definition */
|
|
28
|
+
targetFieldName?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Input representation of the field configurations from CSV columns to Salesforce Object Columns for the Data Import Job
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface FieldConfigurationInputRepresentation {
|
|
37
|
+
isLookupRelationship?: boolean;
|
|
38
|
+
relatedFieldName?: string;
|
|
39
|
+
relatedObjectName?: string;
|
|
40
|
+
relationshipName?: string;
|
|
41
|
+
sourceColumnName?: string;
|
|
42
|
+
targetFieldName?: string;
|
|
43
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { FieldInfoRepresentation as FieldInfoRepresentation_FieldInfoRepresentation } from './FieldInfoRepresentation';
|
|
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 = "fb84569fbdb1214096f70e7d0a82aa88";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FieldInfoOutputRepresentation, existing: FieldInfoOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FieldInfoOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: FieldInfoOutputRepresentationNormalized, incoming: FieldInfoOutputRepresentationNormalized): 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: FieldInfoOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* List of Field info output representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface FieldInfoOutputRepresentationNormalized {
|
|
18
|
+
/** get list of fields */
|
|
19
|
+
fields?: Array<FieldInfoRepresentation_FieldInfoRepresentation>;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* List of Field info output representation
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface FieldInfoOutputRepresentation {
|
|
28
|
+
fields?: Array<FieldInfoRepresentation_FieldInfoRepresentation>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { ReferenceEntityInfo as ReferenceEntityInfo_ReferenceEntityInfo } from './ReferenceEntityInfo';
|
|
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 = "d025efb11c01b8dbb85eeae1ab377c2a";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FieldInfoRepresentation, existing: FieldInfoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FieldInfoRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: FieldInfoRepresentationNormalized, incoming: FieldInfoRepresentationNormalized): 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: FieldInfoRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Field info representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface FieldInfoRepresentationNormalized {
|
|
18
|
+
/** createable */
|
|
19
|
+
createable?: boolean;
|
|
20
|
+
/** isCustom */
|
|
21
|
+
custom?: boolean;
|
|
22
|
+
/** dataType of field */
|
|
23
|
+
dataType?: string;
|
|
24
|
+
/** isExternalId */
|
|
25
|
+
externalId?: boolean;
|
|
26
|
+
/** filterable */
|
|
27
|
+
filterable?: boolean;
|
|
28
|
+
/** idLookup */
|
|
29
|
+
idLookup?: boolean;
|
|
30
|
+
/** label */
|
|
31
|
+
label?: string;
|
|
32
|
+
/** isMandatory */
|
|
33
|
+
mandatory?: boolean;
|
|
34
|
+
/** name */
|
|
35
|
+
name?: string;
|
|
36
|
+
/** referenceTo */
|
|
37
|
+
referenceTo?: Array<ReferenceEntityInfo_ReferenceEntityInfo>;
|
|
38
|
+
/** relationshipName */
|
|
39
|
+
relationshipName?: string;
|
|
40
|
+
/** required */
|
|
41
|
+
required?: boolean;
|
|
42
|
+
/** sortable */
|
|
43
|
+
sortable?: boolean;
|
|
44
|
+
/** unique */
|
|
45
|
+
unique?: boolean;
|
|
46
|
+
/** updateable */
|
|
47
|
+
updateable?: boolean;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Field info representation
|
|
51
|
+
*
|
|
52
|
+
* Keys:
|
|
53
|
+
* (none)
|
|
54
|
+
*/
|
|
55
|
+
export interface FieldInfoRepresentation {
|
|
56
|
+
createable?: boolean;
|
|
57
|
+
custom?: boolean;
|
|
58
|
+
dataType?: string;
|
|
59
|
+
externalId?: boolean;
|
|
60
|
+
filterable?: boolean;
|
|
61
|
+
idLookup?: boolean;
|
|
62
|
+
label?: string;
|
|
63
|
+
mandatory?: boolean;
|
|
64
|
+
name?: string;
|
|
65
|
+
referenceTo?: Array<ReferenceEntityInfo_ReferenceEntityInfo>;
|
|
66
|
+
relationshipName?: string;
|
|
67
|
+
required?: boolean;
|
|
68
|
+
sortable?: boolean;
|
|
69
|
+
unique?: boolean;
|
|
70
|
+
updateable?: boolean;
|
|
71
|
+
}
|
package/dist/es/es2018/types/src/generated/types/FileBasedDataImportByUserResultRepresentation.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
import { FileBasedDataImportRepresentation as FileBasedDataImportRepresentation_FileBasedDataImportRepresentation } from './FileBasedDataImportRepresentation';
|
|
3
|
+
export declare const VERSION = "5ba99358bf109c24644c99238f9a172c";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FileBasedDataImportByUserResultRepresentation, existing: FileBasedDataImportByUserResultRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FileBasedDataImportByUserResultRepresentationNormalized;
|
|
7
|
+
export interface DynamicIngestParams {
|
|
8
|
+
fileBasedDataImportRepresentations: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
}
|
|
10
|
+
export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: FileBasedDataImportByUserResultRepresentation, existing: FileBasedDataImportByUserResultRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => FileBasedDataImportByUserResultRepresentationNormalized;
|
|
11
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
12
|
+
export interface DynamicSelectParams {
|
|
13
|
+
fileBasedDataImportRepresentations?: $64$luvio_engine_LinkSelection;
|
|
14
|
+
}
|
|
15
|
+
export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: FileBasedDataImportByUserResultRepresentationNormalized, incoming: FileBasedDataImportByUserResultRepresentationNormalized): boolean;
|
|
17
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
18
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FileBasedDataImportByUserResultRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
19
|
+
export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
|
|
20
|
+
/**
|
|
21
|
+
* Output representation file based data imports as per user context
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface FileBasedDataImportByUserResultRepresentationNormalized {
|
|
27
|
+
/** The file based data import response */
|
|
28
|
+
fileBasedDataImportRepresentations?: Array<$64$luvio_engine_StoreLink>;
|
|
29
|
+
/** True if user has admin role */
|
|
30
|
+
isAdminUser?: boolean;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Output representation file based data imports as per user context
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface FileBasedDataImportByUserResultRepresentation {
|
|
39
|
+
fileBasedDataImportRepresentations?: Array<FileBasedDataImportRepresentation_FileBasedDataImportRepresentation>;
|
|
40
|
+
isAdminUser?: boolean;
|
|
41
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
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 = "0626af989694f2bbbe5ea1516530e6cb";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FileBasedDataImportInputRep, existing: FileBasedDataImportInputRepNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FileBasedDataImportInputRepNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FileBasedDataImportInputRepNormalized, incoming: FileBasedDataImportInputRepNormalized): 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: FileBasedDataImportInputRep, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation for File Based Data Import
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface FileBasedDataImportInputRepNormalized {
|
|
17
|
+
/** The failed record content doc of the file based data import functionality entity */
|
|
18
|
+
failedRecordContentDoc?: string;
|
|
19
|
+
/** The failed record count of the file based data import functionality entity */
|
|
20
|
+
failedRecordCount?: number;
|
|
21
|
+
/** The sourceFileName of the file based data import functionality entity */
|
|
22
|
+
id?: string;
|
|
23
|
+
/** The importOperationType of the file based data import functionality entity */
|
|
24
|
+
importOperationType?: string;
|
|
25
|
+
/** The importType of the file based data import functionality entity */
|
|
26
|
+
importType?: string;
|
|
27
|
+
/** The job identifier of the file based data import functionality entity */
|
|
28
|
+
jobIdentifier?: string;
|
|
29
|
+
/** The sourceContentDocument of the file based data import functionality entity */
|
|
30
|
+
sourceContentDocument?: string;
|
|
31
|
+
/** The sourceFileName of the file based data import functionality entity */
|
|
32
|
+
sourceFileName: string;
|
|
33
|
+
/** The status of the file based data import functionality entity */
|
|
34
|
+
status?: string;
|
|
35
|
+
/** The status reason of the file based data import functionality entity */
|
|
36
|
+
statusReason?: string;
|
|
37
|
+
/** The successful record content doc of the file based data import functionality entity */
|
|
38
|
+
successfulRecordContentDoc?: string;
|
|
39
|
+
/** The successful record count of the file based data import functionality entity */
|
|
40
|
+
successfulRecordCount?: number;
|
|
41
|
+
/** The targetContext of the file based data import functionality entity */
|
|
42
|
+
targetContext?: string;
|
|
43
|
+
/** The unprocessed record content doc of the file based data import functionality entity */
|
|
44
|
+
unprocessedRecordContentDoc?: string;
|
|
45
|
+
/** The unprocessed record count of the file based data import functionality entity */
|
|
46
|
+
unprocessedRecordCount?: number;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Input representation for File Based Data Import
|
|
50
|
+
*
|
|
51
|
+
* Keys:
|
|
52
|
+
* (none)
|
|
53
|
+
*/
|
|
54
|
+
export interface FileBasedDataImportInputRep {
|
|
55
|
+
failedRecordContentDoc?: string;
|
|
56
|
+
failedRecordCount?: number;
|
|
57
|
+
id?: string;
|
|
58
|
+
importOperationType?: string;
|
|
59
|
+
importType?: string;
|
|
60
|
+
jobIdentifier?: string;
|
|
61
|
+
sourceContentDocument?: string;
|
|
62
|
+
sourceFileName: string;
|
|
63
|
+
status?: string;
|
|
64
|
+
statusReason?: string;
|
|
65
|
+
successfulRecordContentDoc?: string;
|
|
66
|
+
successfulRecordCount?: number;
|
|
67
|
+
targetContext?: string;
|
|
68
|
+
unprocessedRecordContentDoc?: string;
|
|
69
|
+
unprocessedRecordCount?: number;
|
|
70
|
+
}
|