@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,91 @@
|
|
|
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "d31c2d618b5ff6607036493cc0a3cca4";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
6
|
+
id: string;
|
|
7
|
+
}
|
|
8
|
+
export type FileBasedDataImportRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
9
|
+
export type PartialFileBasedDataImportRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): FileBasedDataImportRepresentationNormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: FileBasedDataImportRepresentation): string;
|
|
13
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: FileBasedDataImportRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function normalize(input: FileBasedDataImportRepresentation, existing: FileBasedDataImportRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FileBasedDataImportRepresentationNormalized;
|
|
15
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: FileBasedDataImportRepresentationNormalized, incoming: FileBasedDataImportRepresentationNormalized): 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: FileBasedDataImportRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
19
|
+
/**
|
|
20
|
+
* File based Data import Entity output representation
|
|
21
|
+
*
|
|
22
|
+
* Keys:
|
|
23
|
+
* id (string): id
|
|
24
|
+
*/
|
|
25
|
+
export interface FileBasedDataImportRepresentationNormalized {
|
|
26
|
+
/** createdBy */
|
|
27
|
+
createdBy?: string;
|
|
28
|
+
/** createdDate */
|
|
29
|
+
createdDate?: string;
|
|
30
|
+
/** FailedRecordsCount */
|
|
31
|
+
failedRecordsCount?: number;
|
|
32
|
+
/** FailedResults */
|
|
33
|
+
failedResults?: string | null;
|
|
34
|
+
/** FileBasedImportType */
|
|
35
|
+
fileBasedImportType: string;
|
|
36
|
+
/** ID */
|
|
37
|
+
id: string;
|
|
38
|
+
/** ImportOperationType */
|
|
39
|
+
importOperationType: string;
|
|
40
|
+
/** JobIdentifier */
|
|
41
|
+
jobIdentifier?: string | null;
|
|
42
|
+
/** lastModifiedDate */
|
|
43
|
+
lastModifiedDate?: string;
|
|
44
|
+
/** ParentJobId */
|
|
45
|
+
parentJobId?: string | null;
|
|
46
|
+
/** SourceContentDocument */
|
|
47
|
+
sourceContentDocument?: string | null;
|
|
48
|
+
/** SourceFileName */
|
|
49
|
+
sourceFileName: string;
|
|
50
|
+
/** Status */
|
|
51
|
+
status: string;
|
|
52
|
+
/** StatusReason */
|
|
53
|
+
statusReason?: string | null;
|
|
54
|
+
/** SuccessRecordsCount */
|
|
55
|
+
successRecordsCount?: number;
|
|
56
|
+
/** SuccessfulResults */
|
|
57
|
+
successfulResults?: string | null;
|
|
58
|
+
/** TargetContext */
|
|
59
|
+
targetContext?: string | null;
|
|
60
|
+
/** UnprocessedRecords */
|
|
61
|
+
unprocessedRecords?: string | null;
|
|
62
|
+
/** UnprocessedRecordsCount */
|
|
63
|
+
unprocessedRecordsCount?: number;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* File based Data import Entity output representation
|
|
67
|
+
*
|
|
68
|
+
* Keys:
|
|
69
|
+
* id (string): id
|
|
70
|
+
*/
|
|
71
|
+
export interface FileBasedDataImportRepresentation {
|
|
72
|
+
createdBy?: string;
|
|
73
|
+
createdDate?: string;
|
|
74
|
+
failedRecordsCount?: number;
|
|
75
|
+
failedResults?: string | null;
|
|
76
|
+
fileBasedImportType: string;
|
|
77
|
+
id: string;
|
|
78
|
+
importOperationType: string;
|
|
79
|
+
jobIdentifier?: string | null;
|
|
80
|
+
lastModifiedDate?: string;
|
|
81
|
+
parentJobId?: string | null;
|
|
82
|
+
sourceContentDocument?: string | null;
|
|
83
|
+
sourceFileName: string;
|
|
84
|
+
status: string;
|
|
85
|
+
statusReason?: string | null;
|
|
86
|
+
successRecordsCount?: number;
|
|
87
|
+
successfulResults?: string | null;
|
|
88
|
+
targetContext?: string | null;
|
|
89
|
+
unprocessedRecords?: string | null;
|
|
90
|
+
unprocessedRecordsCount?: number;
|
|
91
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
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 = "d8775d80be071a24794c2eae163c51ed";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FileBasedDataImportUpdateInputRep, existing: FileBasedDataImportUpdateInputRepNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FileBasedDataImportUpdateInputRepNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FileBasedDataImportUpdateInputRepNormalized, incoming: FileBasedDataImportUpdateInputRepNormalized): 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: FileBasedDataImportUpdateInputRep, 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 FileBasedDataImportUpdateInputRepNormalized {
|
|
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 importOperationType of the file based data import functionality entity */
|
|
22
|
+
importOperationType?: string;
|
|
23
|
+
/** The importType of the file based data import functionality entity */
|
|
24
|
+
importType?: string;
|
|
25
|
+
/** The job identifier of the file based data import functionality entity */
|
|
26
|
+
jobIdentifier?: string;
|
|
27
|
+
/** The sourceContentDocument of the file based data import functionality entity */
|
|
28
|
+
sourceContentDocument?: string;
|
|
29
|
+
/** The sourceFileName of the file based data import functionality entity */
|
|
30
|
+
sourceFileName?: string;
|
|
31
|
+
/** The status of the file based data import functionality entity */
|
|
32
|
+
status?: string;
|
|
33
|
+
/** The status reason of the file based data import functionality entity */
|
|
34
|
+
statusReason?: string;
|
|
35
|
+
/** The successful record content doc of the file based data import functionality entity */
|
|
36
|
+
successfulRecordContentDoc?: string;
|
|
37
|
+
/** The successful record count of the file based data import functionality entity */
|
|
38
|
+
successfulRecordCount?: number;
|
|
39
|
+
/** The targetContext of the file based data import functionality entity */
|
|
40
|
+
targetContext?: string;
|
|
41
|
+
/** The unprocessed record content doc of the file based data import functionality entity */
|
|
42
|
+
unprocessedRecordContentDoc?: string;
|
|
43
|
+
/** The unprocessed record count of the file based data import functionality entity */
|
|
44
|
+
unprocessedRecordCount?: number;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Input representation for File Based Data Import
|
|
48
|
+
*
|
|
49
|
+
* Keys:
|
|
50
|
+
* (none)
|
|
51
|
+
*/
|
|
52
|
+
export interface FileBasedDataImportUpdateInputRep {
|
|
53
|
+
failedRecordContentDoc?: string;
|
|
54
|
+
failedRecordCount?: number;
|
|
55
|
+
importOperationType?: string;
|
|
56
|
+
importType?: string;
|
|
57
|
+
jobIdentifier?: string;
|
|
58
|
+
sourceContentDocument?: string;
|
|
59
|
+
sourceFileName?: string;
|
|
60
|
+
status?: string;
|
|
61
|
+
statusReason?: string;
|
|
62
|
+
successfulRecordContentDoc?: string;
|
|
63
|
+
successfulRecordCount?: number;
|
|
64
|
+
targetContext?: string;
|
|
65
|
+
unprocessedRecordContentDoc?: string;
|
|
66
|
+
unprocessedRecordCount?: number;
|
|
67
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { ImportOptionsInputRepresentation as ImportOptionsInputRepresentation_ImportOptionsInputRepresentation } from './ImportOptionsInputRepresentation';
|
|
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 = "10bbd8a200f443b9c3e9bc90881ff72e";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FileImportInputRepresentation, existing: FileImportInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FileImportInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: FileImportInputRepresentationNormalized, incoming: FileImportInputRepresentationNormalized): 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: FileImportInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation of payload for File Based Data Import Use Case
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface FileImportInputRepresentationNormalized {
|
|
18
|
+
/** The id of the file based data import functionality entity */
|
|
19
|
+
importReferenceId: string;
|
|
20
|
+
options?: ImportOptionsInputRepresentation_ImportOptionsInputRepresentation;
|
|
21
|
+
/** The target context of import be it a object or a import template */
|
|
22
|
+
targetContext: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Input representation of payload for File Based Data Import Use Case
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface FileImportInputRepresentation {
|
|
31
|
+
importReferenceId: string;
|
|
32
|
+
options?: ImportOptionsInputRepresentation_ImportOptionsInputRepresentation;
|
|
33
|
+
targetContext: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "0f74d1482de21ff21d94491b9f9b869a";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
6
|
+
statusCode: string;
|
|
7
|
+
}
|
|
8
|
+
export type FileImportOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
9
|
+
export type PartialFileImportOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): FileImportOutputRepresentationNormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: FileImportOutputRepresentation): string;
|
|
13
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: FileImportOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function normalize(input: FileImportOutputRepresentation, existing: FileImportOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FileImportOutputRepresentationNormalized;
|
|
15
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
16
|
+
export declare function equals(existing: FileImportOutputRepresentationNormalized, incoming: FileImportOutputRepresentationNormalized): 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: FileImportOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
19
|
+
/**
|
|
20
|
+
* Output representation of a File Based Import Job
|
|
21
|
+
*
|
|
22
|
+
* Keys:
|
|
23
|
+
* statusCode (string): statusCode
|
|
24
|
+
*/
|
|
25
|
+
export interface FileImportOutputRepresentationNormalized {
|
|
26
|
+
/** The status code of the Start Import Job API */
|
|
27
|
+
statusCode: string;
|
|
28
|
+
/** The status message of the Start Import Job API */
|
|
29
|
+
statusMessage: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Output representation of a File Based Import Job
|
|
33
|
+
*
|
|
34
|
+
* Keys:
|
|
35
|
+
* statusCode (string): statusCode
|
|
36
|
+
*/
|
|
37
|
+
export interface FileImportOutputRepresentation {
|
|
38
|
+
statusCode: string;
|
|
39
|
+
statusMessage: string;
|
|
40
|
+
}
|
|
@@ -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 = "81dca5ace98d11cb047863a37c79101e";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ImportOperationInputRepresentation, existing: ImportOperationInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ImportOperationInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ImportOperationInputRepresentationNormalized, incoming: ImportOperationInputRepresentationNormalized): 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: ImportOperationInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation of operations for File Based Import Case
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ImportOperationInputRepresentationNormalized {
|
|
17
|
+
/** The operation type of the import job */
|
|
18
|
+
operationType?: string;
|
|
19
|
+
/** The unique fields of the object on which Update or upsert kind of operations are to be performed */
|
|
20
|
+
uniqueFields?: Array<string>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Input representation of operations for File Based Import Case
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ImportOperationInputRepresentation {
|
|
29
|
+
operationType?: string;
|
|
30
|
+
uniqueFields?: Array<string>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { FieldConfigurationInputRepresentation as FieldConfigurationInputRepresentation_FieldConfigurationInputRepresentation } from './FieldConfigurationInputRepresentation';
|
|
2
|
+
import { ImportOperationInputRepresentation as ImportOperationInputRepresentation_ImportOperationInputRepresentation } from './ImportOperationInputRepresentation';
|
|
3
|
+
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 = "334e0dcff64ce4432848106b6022576e";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ImportOptionsInputRepresentation, existing: ImportOptionsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ImportOptionsInputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: ImportOptionsInputRepresentationNormalized, incoming: ImportOptionsInputRepresentationNormalized): 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: ImportOptionsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Input representation of Options for File Based Import
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ImportOptionsInputRepresentationNormalized {
|
|
19
|
+
/** The delimiter of the source content document */
|
|
20
|
+
delimiter?: string;
|
|
21
|
+
/** The End of Line character for the file used for import */
|
|
22
|
+
eol?: string;
|
|
23
|
+
/** The list of field configurations */
|
|
24
|
+
fieldConfigurations?: Array<FieldConfigurationInputRepresentation_FieldConfigurationInputRepresentation>;
|
|
25
|
+
/** The operation type of the import job */
|
|
26
|
+
operation?: ImportOperationInputRepresentation_ImportOperationInputRepresentation;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Input representation of Options for File Based Import
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface ImportOptionsInputRepresentation {
|
|
35
|
+
delimiter?: string;
|
|
36
|
+
eol?: string;
|
|
37
|
+
fieldConfigurations?: Array<FieldConfigurationInputRepresentation_FieldConfigurationInputRepresentation>;
|
|
38
|
+
operation?: ImportOperationInputRepresentation_ImportOperationInputRepresentation;
|
|
39
|
+
}
|
|
@@ -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 = "2e822aab70fdf6622a60bb733aa9b5bc";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ObjectInfoDirectoryEntryRepresentation, existing: ObjectInfoDirectoryEntryRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ObjectInfoDirectoryEntryRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ObjectInfoDirectoryEntryRepresentationNormalized, incoming: ObjectInfoDirectoryEntryRepresentationNormalized): 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: ObjectInfoDirectoryEntryRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Entry for an object info within the directory of objects.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ObjectInfoDirectoryEntryRepresentationNormalized {
|
|
17
|
+
/** The API name of the object info corresponding to this entry. */
|
|
18
|
+
apiName: string;
|
|
19
|
+
/** The key prefix for IDs of this object. */
|
|
20
|
+
keyPrefix: string | null;
|
|
21
|
+
/** The label of the object info corresponding to this entry. */
|
|
22
|
+
label: string;
|
|
23
|
+
/** The plural label of the object info corresponding to this entry. */
|
|
24
|
+
labelPlural: string;
|
|
25
|
+
/** List of the API names of the fields used to identify the name field for standard and custom objects. Typically there is one name field per object, except where FirstName and LastName fields are used. */
|
|
26
|
+
nameFields: Array<string>;
|
|
27
|
+
/** The URL to retrieve the full object info corresponding to this entry. */
|
|
28
|
+
objectInfoUrl: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Entry for an object info within the directory of objects.
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface ObjectInfoDirectoryEntryRepresentation {
|
|
37
|
+
apiName: string;
|
|
38
|
+
keyPrefix: string | null;
|
|
39
|
+
label: string;
|
|
40
|
+
labelPlural: string;
|
|
41
|
+
nameFields: Array<string>;
|
|
42
|
+
objectInfoUrl: string;
|
|
43
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ObjectInfoDirectoryEntryRepresentation as ObjectInfoDirectoryEntryRepresentation_ObjectInfoDirectoryEntryRepresentation } from './ObjectInfoDirectoryEntryRepresentation';
|
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "c040e955efdc64a496f748f728dcbe5f";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ObjectInfoDirectoryRepresentation, existing: ObjectInfoDirectoryRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ObjectInfoDirectoryRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
8
|
+
export declare function equals(existing: ObjectInfoDirectoryRepresentationNormalized, incoming: ObjectInfoDirectoryRepresentationNormalized): 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: ObjectInfoDirectoryRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Directory of objects that can be used within UI API end-points.
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ObjectInfoDirectoryRepresentationNormalized {
|
|
18
|
+
/** The object info entries corresponding to the objects that can be used within UI API. */
|
|
19
|
+
objects: {
|
|
20
|
+
[key: string]: ObjectInfoDirectoryEntryRepresentation_ObjectInfoDirectoryEntryRepresentation;
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Directory of objects that can be used within UI API end-points.
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface ObjectInfoDirectoryRepresentation {
|
|
30
|
+
objects: {
|
|
31
|
+
[key: string]: ObjectInfoDirectoryEntryRepresentation_ObjectInfoDirectoryEntryRepresentation;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ReferenceFieldInfo as ReferenceFieldInfo_ReferenceFieldInfo } from './ReferenceFieldInfo';
|
|
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 = "b3d49ed32b6dfdd7e4f99ef7e3629860";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ReferenceEntityInfo, existing: ReferenceEntityInfoNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReferenceEntityInfoNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ReferenceEntityInfoNormalized, incoming: ReferenceEntityInfoNormalized): 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: ReferenceEntityInfo, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Referenced Entity info
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ReferenceEntityInfoNormalized {
|
|
18
|
+
/** entityLabel */
|
|
19
|
+
entityLabel: string;
|
|
20
|
+
/** entityName */
|
|
21
|
+
entityName: string;
|
|
22
|
+
/** Entity id look up fields */
|
|
23
|
+
fields: Array<ReferenceFieldInfo_ReferenceFieldInfo>;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Referenced Entity info
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface ReferenceEntityInfo {
|
|
32
|
+
entityLabel: string;
|
|
33
|
+
entityName: string;
|
|
34
|
+
fields: Array<ReferenceFieldInfo_ReferenceFieldInfo>;
|
|
35
|
+
}
|
|
@@ -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 = "79cbc962b5b6429d024e384c92f23cda";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ReferenceFieldInfo, existing: ReferenceFieldInfoNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReferenceFieldInfoNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ReferenceFieldInfoNormalized, incoming: ReferenceFieldInfoNormalized): 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: ReferenceFieldInfo, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Referenced Field info
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ReferenceFieldInfoNormalized {
|
|
17
|
+
/** fieldLabel */
|
|
18
|
+
fieldLabel: string;
|
|
19
|
+
/** fieldName */
|
|
20
|
+
fieldName: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Referenced Field info
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ReferenceFieldInfo {
|
|
29
|
+
fieldLabel: string;
|
|
30
|
+
fieldName: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectKeys: {
|
|
3
|
+
(o: object): string[];
|
|
4
|
+
(o: {}): string[];
|
|
5
|
+
}, ObjectCreate: {
|
|
6
|
+
(o: object | null): any;
|
|
7
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
8
|
+
}, ObjectAssign: {
|
|
9
|
+
<T extends {}, U>(target: T, source: U): T & U;
|
|
10
|
+
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
11
|
+
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
12
|
+
(target: object, ...sources: any[]): any;
|
|
13
|
+
};
|
|
14
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
15
|
+
export declare const JSONStringify: {
|
|
16
|
+
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
17
|
+
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
18
|
+
};
|
|
19
|
+
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
20
|
+
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
21
|
+
export type RecursivePartial<T> = null | {
|
|
22
|
+
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
23
|
+
};
|
|
24
|
+
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
25
|
+
export declare function equalsObject<U, V extends {
|
|
26
|
+
[key: string]: U;
|
|
27
|
+
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
28
|
+
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
29
|
+
__ref: string;
|
|
30
|
+
};
|
|
31
|
+
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
32
|
+
export {};
|
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@salesforce/lds-adapters-industries-filebased-dataimport",
|
|
3
|
+
"version": "0.1.0-dev1",
|
|
4
|
+
"description": "Resource Family for File Based Data Import Use cases",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
|
+
"main": "dist/es/es2018/industries-filebased-dataimport.js",
|
|
7
|
+
"module": "dist/es/es2018/industries-filebased-dataimport.js",
|
|
8
|
+
"types": "dist/es/es2018/types/src/generated/artifacts/main.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"sfdc",
|
|
12
|
+
"src/raml/*"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/es/es2018/types/src/generated/artifacts/main.d.ts",
|
|
17
|
+
"import": "./dist/es/es2018/industries-filebased-dataimport.js",
|
|
18
|
+
"require": "./dist/es/es2018/industries-filebased-dataimport.js"
|
|
19
|
+
},
|
|
20
|
+
"./sfdc": {
|
|
21
|
+
"types": "./sfdc/index.d.ts",
|
|
22
|
+
"import": "./sfdc/index.js",
|
|
23
|
+
"default": "./sfdc/index.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"sfdc": {
|
|
27
|
+
"namespace": "lightning",
|
|
28
|
+
"module": "industriesFilebasedDataimportApi"
|
|
29
|
+
},
|
|
30
|
+
"contributors": [
|
|
31
|
+
"mchaba@salesforce.com",
|
|
32
|
+
"vatsala.jadia@salesforce.com"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "yarn build:services",
|
|
36
|
+
"build:raml": "luvio generate src/raml/luvio.raml src/generated -p '../lds-compiler-plugins'",
|
|
37
|
+
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
38
|
+
"clean": "rm -rf dist sfdc src/generated",
|
|
39
|
+
"release:core": "yarn build && ../core-build/scripts/core.js --name=lds-adapters-industries-filebased-dataimport",
|
|
40
|
+
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-industries-filebased-dataimport",
|
|
41
|
+
"test:unit": "jest"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@salesforce/lds-bindings": "^0.1.0-dev1"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^0.1.0-dev1",
|
|
48
|
+
"@salesforce/lds-karma": "^0.1.0-dev1"
|
|
49
|
+
},
|
|
50
|
+
"nx": {
|
|
51
|
+
"targets": {
|
|
52
|
+
"build": {
|
|
53
|
+
"outputs": [
|
|
54
|
+
"{projectRoot}/dist",
|
|
55
|
+
"{projectRoot}/sfdc"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"build:raml": {
|
|
59
|
+
"outputs": [
|
|
60
|
+
"{projectRoot}/src/generated"
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"volta": {
|
|
66
|
+
"extends": "../../package.json"
|
|
67
|
+
}
|
|
68
|
+
}
|
package/sfdc/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';
|